:root {
  --black: #050403;
  --brown: #1A0E06;
  --gold: #F5C542;
  --yellow: #FFD85A;
  --orange: #D98A22;
  --teal: #008C9E;
  --cream: #FFF3D1;
  --white: #FFFFFF;
  --muted: rgba(255, 243, 209, .72);
  --line: rgba(245, 197, 66, .28);
  --shadow: 0 20px 60px rgba(0, 0, 0, .42);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 138, 34, .18), transparent 30rem),
    linear-gradient(180deg, var(--black), #100802 45%, var(--black));
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.05) 87.5%, rgba(255,255,255,.05)),
    linear-gradient(150deg, rgba(255,255,255,.04) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.04) 87.5%, rgba(255,255,255,.04));
  background-size: 28px 28px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero-grid,
.section-head,
.game-grid,
.bonus-grid,
.promo-grid,
.review-grid,
.footer-grid,
.review-content,
.review-sidebar,
.promo-card > div,
.sticky-card {
  min-width: 0;
}
.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 4, 3, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.brand img { width: 174px; height: auto; }
.site-nav { display: flex; gap: 20px; justify-content: center; font-size: 14px; font-weight: 700; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.gold-btn, .outline-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gold-btn {
  color: #170a00;
  background: linear-gradient(135deg, var(--yellow), var(--gold) 48%, var(--orange));
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 12px 30px rgba(245, 197, 66, .28);
}
.gold-btn:hover, .outline-btn:hover, .ghost-btn:hover, .game-card:hover, .promo-card:hover { transform: translateY(-2px); }
.outline-btn { border: 1px solid var(--gold); color: var(--yellow); background: rgba(26, 14, 6, .58); }
.ghost-btn { border: 1px solid rgba(255,255,255,.18); color: var(--cream); min-height: 40px; padding: 0 14px; }
.small { min-height: 40px; padding: 0 14px; }
.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,4,3,.98) 0%, rgba(5,4,3,.9) 48%, rgba(5,4,3,.72) 100%),
    url("../assets/hero-banner/hero.avif") center right / cover no-repeat;
  filter: saturate(.95) contrast(.96);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, .34);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--black), transparent);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 0;
  align-items: center;
  min-height: 560px;
  padding: 56px 0 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, h4 { line-height: 1.12; margin: 0; letter-spacing: 0; }
h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
  text-shadow: 0 12px 30px rgba(0,0,0,.6);
}
h2 { font-size: clamp(28px, 3vw, 44px); color: var(--white); }
h3 { font-size: 22px; color: var(--white); }
.hero-offer {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--yellow);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 950;
  line-height: 1.25;
}
.hero-text { max-width: 580px; color: var(--cream); font-size: 18px; margin: 14px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-note span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245, 197, 66, .55);
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-row img, .footer-payments img {
  width: 76px;
  height: 38px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255,255,255,.92);
  border-radius: 6px;
}
.section { padding: 76px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head.centered { display: block; text-align: center; max-width: 760px; margin: 0 auto 32px; }
.section-head p { color: var(--muted); margin: 12px 0 0; }
.text-link { color: var(--yellow); font-weight: 900; white-space: nowrap; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.game-grid.expanded { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.game-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(245,197,66,.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26,14,6,.96), rgba(8,5,3,.96));
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.game-card:hover { border-color: var(--gold); box-shadow: 0 0 28px rgba(245,197,66,.25); }
.game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .25s ease; }
.game-card:hover img { transform: scale(1.04); }
.game-card span, .game-card small { display: block; padding: 0 10px; }
.game-card span { margin-top: 10px; color: var(--white); font-weight: 900; line-height: 1.2; min-height: 38px; }
.game-card small { color: var(--muted); padding-bottom: 12px; }

.bonus-section, .faq-section { background: rgba(26,14,6,.48); border-block: 1px solid rgba(245,197,66,.14); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bonus-card {
  padding: 24px;
  border: 1px solid rgba(245,197,66,.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(26,14,6,.94), rgba(5,4,3,.92));
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.bonus-card.primary { border-color: rgba(255,216,90,.72); box-shadow: 0 0 38px rgba(245,197,66,.18); }
.bonus-card i { color: var(--yellow); font-size: 28px; margin-bottom: 18px; }
.bonus-card p { color: var(--muted); }
.bonus-card .offer { color: var(--yellow); font-size: 24px; font-weight: 950; margin: 10px 0; }

.promo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.promo-card {
  position: relative;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid rgba(245,197,66,.24);
  border-radius: var(--radius);
  background: rgba(26,14,6,.78);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.promo-card:hover { box-shadow: 0 0 34px rgba(245,197,66,.22); }
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,4,3,.08) 0%, rgba(5,4,3,.46) 48%, rgba(5,4,3,.92) 100%),
    linear-gradient(90deg, rgba(5,4,3,.82), rgba(5,4,3,.18));
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.promo-card:hover img { transform: scale(1.04); }
.promo-card div {
  position: relative;
  z-index: 2;
  max-width: 310px;
}
.promo-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.promo-card h3 {
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
}
.promo-card p {
  color: rgba(255,243,209,.82);
  margin: 8px 0 0;
  line-height: 1.45;
}

.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(245,197,66,.28);
  color: var(--cream);
  background: rgba(26,14,6,.72);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.tab.active { color: var(--black); background: var(--gold); border-color: var(--gold); }

.review-section {
  overflow: visible;
}
.review-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: stretch; }
.review-content {
  padding: 30px;
  border: 1px solid rgba(245,197,66,.18);
  border-radius: var(--radius);
  background: rgba(5,4,3,.42);
}
.review-content p, .review-content li, .review-content td { color: rgba(255,243,209,.82); }
.review-content h3 { margin-top: 34px; }
.review-content h4 { color: var(--yellow); font-size: 18px; margin: 0 0 10px; }
.table-wrap { max-width: 100%; overflow-x: auto; margin: 24px 0; border: 1px solid rgba(245,197,66,.2); border-radius: var(--radius); }
table { width: 100%; min-width: 680px; border-collapse: collapse; background: rgba(26,14,6,.78); }
caption { padding: 14px; color: var(--yellow); font-weight: 950; text-align: left; }
th, td { padding: 13px 14px; border-top: 1px solid rgba(245,197,66,.16); text-align: left; vertical-align: top; }
th { color: var(--white); background: rgba(217,138,34,.16); }
.check-list { padding-left: 20px; }
.check-list li::marker { color: var(--gold); }
.check-list.columns { columns: 2; column-gap: 28px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.pros-cons > div, .sticky-card {
  padding: 22px;
  border: 1px solid rgba(245,197,66,.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(26,14,6,.9), rgba(5,4,3,.9));
}
.review-sidebar { position: relative; align-self: stretch; }
.sticky-card { position: sticky; top: 100px; box-shadow: var(--shadow); }
.sticky-card p, .sticky-card li { color: var(--muted); }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
details {
  border: 1px solid rgba(245,197,66,.22);
  border-radius: var(--radius);
  background: rgba(5,4,3,.52);
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--white);
  font-weight: 950;
}
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

.site-footer {
  padding: 54px 0 92px;
  background: #030201;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1.2fr 1fr; gap: 30px; }
.footer-logo { width: 164px; height: auto; margin-bottom: 14px; }
.site-footer h2 { font-size: 16px; margin-bottom: 12px; }
.site-footer p, .site-footer a { display: block; color: var(--muted); margin: 0 0 8px; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,197,66,.16);
  color: var(--muted);
}
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #170a00;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
  font-weight: 950;
}
.mobile-bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(245,197,66,.28);
  border-radius: 8px;
  background: rgba(5, 4, 3, .94);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  backdrop-filter: blur(16px);
}
.mobile-bottom-nav a {
  display: flex;
  min-width: 0;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  border-right: 1px solid rgba(245,197,66,.12);
}
.mobile-bottom-nav a:last-child {
  border-right: 0;
  color: #170a00;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}
.mobile-bottom-nav i { font-size: 17px; }

@media (max-width: 1020px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .site-nav { display: none; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 32px; }
  .game-grid, .game-grid.expanded { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bonus-grid, .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .header-inner {
    min-height: 68px;
    gap: 12px;
  }
  .brand img { width: 148px; }
  .header-actions { gap: 8px; }
  .header-actions .ghost-btn { display: none; }
  .header-actions .gold-btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5,4,3,.78), rgba(5,4,3,.96) 45%, rgba(5,4,3,1)),
      url("../assets/hero-banner/hero.avif") top center / cover no-repeat;
  }
  .hero-grid { gap: 0; padding: 24px 0 30px; }
  h1 { font-size: 38px; }
  .hero-offer { font-size: 21px; }
  .hero-text { font-size: 16px; }
  .hero-actions .gold-btn, .hero-actions .outline-btn { flex: 1 1 150px; }
  .trust-row img { width: 64px; }
  .hero-note { gap: 8px 12px; font-size: 13px; }
  .section { padding: 52px 0; }
  .section-head { display: block; }
  .text-link { display: inline-flex; margin-top: 12px; }
  .game-grid, .game-grid.expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .game-card span { font-size: 14px; min-height: 36px; }
  .bonus-grid, .promo-grid, .pros-cons, .footer-grid { grid-template-columns: 1fr; }
  .bonus-card, .review-content { padding: 20px; }
  .promo-card {
    min-height: 210px;
    padding: 18px;
  }
  .promo-card h3,
  .promo-card p,
  .game-card span,
  .game-card small,
  .bonus-card h3,
  .bonus-card p {
    overflow-wrap: anywhere;
  }
  .tabs {
    justify-content: stretch;
    overflow-x: visible;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .tab {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
  }
  table {
    min-width: 0;
    table-layout: fixed;
    font-size: 12px;
  }
  th, td {
    padding: 9px 7px;
    overflow-wrap: anywhere;
  }
  .check-list.columns { columns: 1; }
  .footer-bottom { display: block; }
  .floating-cta { display: none; }
  .mobile-bottom-nav { display: grid; }
  .site-footer { padding-bottom: 104px; }
}
