@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #004b3e;
}
body {
  font-family: "Roboto Condensed", sans-serif;
  background: #004b3e;
  color: #e8f5e9;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #c9a85c;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: #f0cb78;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
  text-transform: uppercase;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.btn:active {
  transform: translateY(0);
}
.btn--play {
  background: #ffffff;
  color: #004b3e;
}
.btn--play:hover {
  background: #e8f5e9;
  color: #004b3e;
}
.btn--bonus {
  background: #957d4b;
  color: #fff;
}
.btn--bonus:hover {
  background: #b09060;
  color: #fff;
}
.btn--gold {
  background: #957d4b;
  color: #fff;
}
.btn--gold:hover {
  background: #b09060;
}
.btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 18px;
}
.btn--outline {
  background: transparent;
  border: 2px solid #957d4b;
  color: #957d4b;
}
.btn--outline:hover {
  background: #957d4b;
  color: #fff;
}

.box {
  border-radius: 10px;
  overflow: hidden;
}

.header {
  background: #92000b;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 12px;
  flex-wrap: nowrap;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.header-nav li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  color: #fde8ea;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition:
    color 0.2s,
    background 0.2s;
  border-radius: 5px;
  white-space: nowrap;
}
.header-nav li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.header-nav li a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.85;
}
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-winner {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  white-space: nowrap;
  animation: fadeInWinner 0.5s ease;
}
.header-winner .hw-ico {
  font-size: 16px;
}
.hw-label {
  color: #fde8ea;
  opacity: 0.75;
}
.hw-nick {
  color: #f5c842;
  font-weight: 700;
}
.hw-amt {
  color: #90ee90;
  font-weight: 700;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.28s,
    opacity 0.28s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #92000b;
  z-index: 800;
  overflow-y: auto;
  padding: 16px 0;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  color: #fde8ea;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.mobile-nav ul li a svg {
  width: 20px;
  height: 20px;
}
.mobile-nav-btns {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/vegasban.jpg");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 75, 62, 0.82) 0%,
    rgba(146, 0, 11, 0.35) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 60px 0 50px;
  max-width: 620px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.hero-stars {
  display: flex;
  gap: 2px;
}
.hero-stars svg {
  width: 22px;
  height: 22px;
  fill: #f5c842;
}
.hero-rating-val {
  font-size: 20px;
  font-weight: 700;
  color: #f5c842;
}
.hero-rating-cnt {
  font-size: 14px;
  color: #cde8e0;
}
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
  line-height: 1.15;
  text-wrap: balance;
}
.hero-sub {
  font-size: 17px;
  color: #d4ede6;
  margin-bottom: 26px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(149, 125, 75, 0.5);
  border-radius: 8px;
  padding: 10px 16px;
  color: #f5c842;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 48px 0;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #f0e6c8;
  margin-bottom: 8px;
  text-wrap: balance;
}
.section-sub {
  color: #a8d5c4;
  font-size: 15px;
  margin-bottom: 28px;
}

.game-section {
  padding: 40px 0;
}
.game-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.game-frame-wrap {
  flex: 1 1 0;
  min-width: 0;
}
.game-iframe-box {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(149, 125, 75, 0.4);
}
.game-iframe-box iframe {
  width: 100%;
  height: 460px;
  display: block;
  border: none;
}
.game-frame-cta {
  display: flex;
  justify-content: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
}
.game-details {
  flex: 0 0 310px;
  min-width: 0;
}
.gd-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(149, 125, 75, 0.3);
}
.gd-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.gd-table tr:last-child {
  border-bottom: none;
}
.gd-table td {
  padding: 8px 12px;
  font-size: 13px;
  vertical-align: middle;
}
.gd-table td:first-child {
  color: #a8d5c4;
  font-weight: 600;
  width: 44%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gd-table td:last-child {
  color: #e8f5e9;
  font-weight: 700;
}
.gd-ico {
  font-size: 15px;
  flex-shrink: 0;
}
.gd-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.gd-rtp {
  color: #7eff99 !important;
}

.advantages {
  padding: 40px 0;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.adv-card {
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 75, 62, 0.5)
  );
  border: 1px solid rgba(149, 125, 75, 0.25);
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.adv-ico {
  width: 44px;
  height: 44px;
  background: rgba(149, 125, 75, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv-ico svg {
  width: 24px;
  height: 24px;
  fill: #c9a85c;
}
.adv-title {
  font-size: 15px;
  font-weight: 700;
  color: #f0e6c8;
}
.adv-text {
  font-size: 13px;
  color: #a8d5c4;
  line-height: 1.55;
}

.winners {
  padding: 40px 0;
}
.winners-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1.5px solid rgba(149, 125, 75, 0.3);
}
.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.winners-table thead {
  background: #92000b;
}
.winners-table thead th {
  padding: 12px 16px;
  text-align: left;
  color: #fde8ea;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.winners-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.18s;
}
.winners-table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.25);
}
.winners-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.12);
}
.winners-table tbody tr:hover {
  background: rgba(149, 125, 75, 0.12);
}
.winners-table td {
  padding: 10px 16px;
  font-size: 14px;
  color: #e8f5e9;
  vertical-align: middle;
}
.w-rank {
  font-weight: 700;
  color: #f5c842;
}
.w-rank.top3 {
  color: #fff;
  background: #92000b;
  border-radius: 4px;
  padding: 2px 7px;
  display: inline-block;
}
.w-nick {
  color: #f0e6c8;
  font-weight: 600;
}
.w-game {
  color: #a8d5c4;
  font-size: 13px;
}
.w-win {
  color: #7eff99;
  font-weight: 700;
}

.app-section {
  padding: 40px 0;
}
.app-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.phone-frame {
  flex: 0 0 220px;
  position: relative;
}
.phone-mockup {
  width: 220px;
  height: 430px;
  background: #1a1a1a;
  border-radius: 36px;
  border: 6px solid #333;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}
.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.app-info {
  flex: 1 1 0;
  min-width: 240px;
}
.app-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1.5px solid rgba(149, 125, 75, 0.3);
  margin-bottom: 20px;
}
.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}
.app-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.app-table tr:last-child {
  border-bottom: none;
}
.app-table td {
  padding: 9px 14px;
  font-size: 14px;
}
.app-table td:first-child {
  color: #a8d5c4;
  font-weight: 600;
  width: 46%;
}
.app-table td:last-child {
  color: #e8f5e9;
  font-weight: 700;
}
.app-table tr:hover {
  background: rgba(255, 255, 255, 0.04);
}
.app-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(149, 125, 75, 0.4);
  border-radius: 8px;
  color: #f0e6c8;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.app-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #c9a85c;
}
.app-btn:hover {
  background: rgba(149, 125, 75, 0.2);
  border-color: #957d4b;
  color: #fff;
}
.app-btn small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #a8d5c4;
  line-height: 1.2;
}

.screenshots {
  padding: 40px 0;
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ss-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(149, 125, 75, 0.25);
  cursor: pointer;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.ss-item:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.ss-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.screenshots-slider {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.ss-slides {
  display: flex;
  transition: transform 0.35s ease;
}
.ss-slide {
  flex: 0 0 100%;
}
.ss-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.ss-prev,
.ss-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  z-index: 2;
}
.ss-prev {
  left: 8px;
}
.ss-next {
  right: 8px;
}

.review-section {
  padding: 40px 0;
}
.review-content {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(149, 125, 75, 0.2);
  border-radius: 10px;
  padding: 28px 32px;
  line-height: 1.7;
  color: #d4ede6;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  color: #f0e6c8;
  margin: 20px 0 10px;
  font-weight: 700;
}
.review-content h2 {
  font-size: 22px;
}
.review-content h3 {
  font-size: 18px;
}
.review-content p {
  margin-bottom: 14px;
  font-size: 15px;
  color: #d4ede6;
}
.review-content ul,
.review-content ol {
  margin: 10px 0 16px 22px;
}
.review-content li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #d4ede6;
}
.review-content a {
  color: #c9a85c;
  text-decoration: underline;
}
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.review-content table th {
  background: #92000b;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.review-content table td {
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
.review-content strong {
  color: #f0e6c8;
}
.review-content blockquote {
  border-left: 3px solid #957d4b;
  padding-left: 16px;
  margin: 16px 0;
  color: #a8d5c4;
  font-style: italic;
}

.author-section {
  padding: 32px 0 48px;
}
.author-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 75, 62, 0.4));
  border: 1.5px solid rgba(149, 125, 75, 0.3);
  border-radius: 12px;
  padding: 28px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-photo {
  flex: 0 0 100px;
}
.author-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #957d4b;
}
.author-body {
  flex: 1 1 0;
  min-width: 200px;
}
.author-name {
  font-size: 20px;
  font-weight: 700;
  color: #f0e6c8;
  margin-bottom: 3px;
}
.author-title {
  font-size: 14px;
  color: #957d4b;
  font-weight: 600;
  margin-bottom: 8px;
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.author-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #a8d5c4;
}
.author-meta-item svg {
  width: 15px;
  height: 15px;
  fill: #957d4b;
  flex-shrink: 0;
}
.author-bio {
  font-size: 14px;
  color: #c8e0d8;
  line-height: 1.65;
  margin-bottom: 14px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(149, 125, 75, 0.15);
  border: 1px solid rgba(149, 125, 75, 0.3);
  border-radius: 20px;
  color: #c9a85c;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.author-link:hover {
  background: rgba(149, 125, 75, 0.3);
  color: #fff;
}
.author-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.author-dates {
  font-size: 12px;
  color: #7aa898;
  margin-top: 10px;
}

.faq-section {
  padding: 40px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(149, 125, 75, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: #f0e6c8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: "Roboto Condensed", sans-serif;
  gap: 10px;
  transition: background 0.2s;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-q svg {
  width: 18px;
  height: 18px;
  fill: #957d4b;
  flex-shrink: 0;
  transition: transform 0.28s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #a8d5c4;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
}

.footer {
  background: #92000b;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: start;
}
.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: #fde8ea;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-nav h4,
.footer-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fde8ea;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.footer-nav ul li a {
  color: #fde8ea;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-nav ul li a:hover {
  opacity: 1;
  color: #fff;
}
.footer-payments {
  margin: 18px 0 12px;
}
.footer-payments h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fde8ea;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.7;
}
.payment-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-logo {
  height: 26px;
  background: #fff;
  border-radius: 4px;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
}
.payment-logo svg,
.payment-logo img {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social:hover {
  background: rgba(255, 255, 255, 0.3);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  color: #fde8ea;
  opacity: 0.85;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-badge svg {
  width: 16px;
  height: 16px;
  fill: #c9a85c;
  flex-shrink: 0;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}
.footer-legal p {
  font-size: 12px;
  color: #fde8ea;
  opacity: 0.65;
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fde8ea;
  opacity: 0.7;
}
.footer-email {
  font-size: 13px;
  color: #fde8ea;
  opacity: 0.8;
}
.footer-email a {
  color: #c9a85c;
}
.footer-copyright {
  font-size: 12px;
  color: #fde8ea;
  opacity: 0.6;
  text-align: center;
  margin-top: 10px;
}

.widget {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  background: linear-gradient(135deg, #92000b, #6b0009);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(149, 125, 75, 0.35);
  max-width: 280px;
  animation: widgetPop 0.6s 1.2s both ease-out;
}
.widget-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
}
.widget-body {
  flex: 1 1 0;
  min-width: 0;
}
.widget-bonus {
  font-size: 13px;
  font-weight: 700;
  color: #f5c842;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.widget-close:hover {
  color: #fff;
}

@keyframes fadeInWinner {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes widgetPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(149, 125, 75, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(149, 125, 75, 0);
  }
}

.pulse {
  animation: pulse 2.2s infinite;
}

.breadcrumb {
  padding: 12px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: #7aa898;
}
.breadcrumb a {
  color: #c9a85c;
}
.breadcrumb span {
  opacity: 0.5;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(149, 125, 75, 0.35),
    transparent
  );
  margin: 8px 0;
}

.provider-logo img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  filter: brightness(1.3);
}

.wp-placeholder-4fx2a {
  display: none;
}
.elementor-widget-container-x7z {
  overflow: hidden;
}
.post-content-wr9k {
  position: relative;
}

@media (max-width: 1024px) {
  .game-layout {
    flex-direction: column;
  }
  .game-details {
    flex: 0 0 100%;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 60px;
  }
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-nav {
    top: 60px;
  }
  .header-winner {
    display: none;
  }
  .hero {
    min-height: 380px;
  }
  .hero-body {
    padding: 36px 0 32px;
  }
  .screenshots-grid {
    display: none;
  }
  .screenshots-slider {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .game-iframe-box iframe {
    height: 300px;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .widget {
    bottom: 14px;
    right: 12px;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .app-btns {
    flex-direction: column;
  }
  .widget {
    display: none;
  }
}

.wp-content-body-k3z7 {
  color: transparent;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
.entry-meta-t4r9 {
  display: none;
}
.site-branding-pq2j {
  display: none;
}

.info-hero {
  background: #92000b;
  padding: 32px 0 28px;
  border-bottom: 2px solid rgba(149, 125, 75, 0.3);
}
.info-h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  text-wrap: balance;
}

.info-content {
  padding: 36px 0 48px;
  max-width: 860px;
  color: #d4ede6;
  font-size: 15px;
  line-height: 1.75;
}
.info-content h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #f0e6c8;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(149, 125, 75, 0.25);
}
.info-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f0e6c8;
  margin: 22px 0 9px;
}
.info-content p {
  margin-bottom: 14px;
}
.info-content ul,
.info-content ol {
  margin: 10px 0 16px 22px;
}
.info-content li {
  margin-bottom: 7px;
}
.info-content strong {
  color: #f0e6c8;
}
.info-content a {
  color: #c9a85c;
  text-decoration: underline;
  transition: color 0.2s;
}
.info-content a:hover {
  color: #f0cb78;
}
.info-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(149, 125, 75, 0.3);
  display: block;
  overflow-x: auto;
}
.info-content table th {
  background: #92000b;
  color: #fde8ea;
  padding: 10px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.info-content table td {
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  color: #d4ede6;
  vertical-align: middle;
}
.info-content table tr:last-child td {
  border-bottom: none;
}
.info-content table tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}
.info-content blockquote {
  border-left: 3px solid #957d4b;
  padding-left: 16px;
  margin: 16px 0;
  color: #a8d5c4;
  font-style: italic;
}
