/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C8972B;
  --gold-light: #E8B84B;
  --gold-dark:  #9A6E10;
  --black:      #0A0A0F;
  --dark:       #111118;
  --dark2:      #1A1A26;
  --dark3:      #22222F;
  --card-bg:    #1E1E2B;
  --border:     #2E2E42;
  --text:       #E8E8F0;
  --muted:      #9090A8;
  --white:      #FFFFFF;
  --green:      #1DB954;
  --red:        #E0392B;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

img { display: block; max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--white);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: .6em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: .5em; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--text); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 60px 0; }
section + section { border-top: 1px solid var(--border); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 18px rgba(200,151,43,.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,151,43,.6);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
}

.btn-lg { padding: 16px 44px; font-size: 1.1rem; }
.btn-sm { padding: 9px 22px; font-size: .85rem; }

/* ===== LOGO / FAVICON ===== */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-wrap:hover { text-decoration: none; }

.logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.01em;
}
.logo-text span { color: var(--white); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.main-nav a:hover {
  color: var(--gold);
  background: rgba(200,151,43,.08);
  text-decoration: none;
}

.header-actions { display: flex; gap: 10px; align-items: center; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all .25s;
}

/* ===== PROMO BANNER TOP ===== */
.promo-strip {
  background: linear-gradient(90deg, #7A1C10 0%, #C0382B 35%, #9A1C10 70%, #6A0F08 100%);
  text-align: center;
  padding: 0;
}
.promo-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-strip .strip-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.promo-strip .strip-highlight {
  color: var(--gold-light);
  font-size: 1.3rem;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #12121E 0%, #0A0A0F 55%, #1A0A05 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(200,151,43,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(200,151,43,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,43,.15);
  border: 1px solid rgba(200,151,43,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: .4em; }
.hero h1 .accent { color: var(--gold); }

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.badge-icon { font-size: 1rem; }

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-notice { font-size: .78rem; color: var(--muted); }

/* Bonus Card */
.bonus-card {
  background: linear-gradient(145deg, var(--dark2), #1A1A30);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.bonus-card-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.bonus-amount {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-amount span { color: var(--gold); font-size: 1.8rem; }
.bonus-sub { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }

.bonus-features { list-style: none; margin-bottom: 24px; }
.bonus-features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}
.bonus-features li:last-child { border: none; }
.check { color: var(--green); font-weight: 700; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark2);
  padding: 28px 0;
  border-top: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: .4em; }
.section-header p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ===== RATING OVERVIEW ===== */
.rating-overview {
  background: var(--dark);
}
.rating-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.rating-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.big-score {
  font-size: 5rem;
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: var(--gold);
  line-height: 1;
}
.score-sub { color: var(--muted); font-size: .85rem; margin-bottom: 16px; }

.stars { font-size: 1.6rem; color: var(--gold); margin-bottom: 12px; letter-spacing: 4px; }

.rating-bars { margin-top: 24px; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .82rem;
}
.bar-label { width: 90px; color: var(--muted); text-align: right; flex-shrink: 0; }
.bar-track {
  flex: 1;
  height: 6px;
  background: var(--dark3);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
}
.bar-val { width: 34px; color: var(--gold); font-weight: 700; }

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.pros, .cons {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros h4, .cons h4 { margin-bottom: 12px; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul {
  list-style: none;
}
.pros ul li, .cons ul li {
  padding: 5px 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pros ul li:last-child, .cons ul li:last-child { border: none; }

/* ===== BONUSES SECTION ===== */
.bonuses-section { background: var(--black); }
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.bcard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,151,43,.2);
}
.bcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.bcard-num {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 8px;
}
.bcard h3 { font-size: 1rem; margin-bottom: 6px; }
.bcard-amount {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Georgia', serif;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.bcard p { font-size: .85rem; color: var(--muted); margin-bottom: 0; }

/* ===== PROMO BANNER MID ===== */
.promo-mid {
  background: linear-gradient(100deg, #1A0A05, #2A1208, #1A0A05);
  border: 1px solid rgba(200,151,43,.3);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 0 0 0 0;
}
.promo-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(200,151,43,.1) 0%, transparent 70%);
  pointer-events: none;
}
.promo-mid-text {}
.promo-mid-text .big { font-size: 1.6rem; font-weight: 700; color: var(--white); }
.promo-mid-text .sub { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.promo-mid-text .highlight { color: var(--gold); font-size: 2.2rem; font-weight: 900; }

/* ===== GAMES SECTION ===== */
.games-section { background: var(--dark); }
.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--dark3);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-3px); }
.game-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
}
.game-info {
  padding: 10px 12px;
}
.game-info .game-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.game-info .game-tag { font-size: .72rem; color: var(--gold); }

/* ===== CATEGORIES FEATURES ===== */
.features-section { background: var(--black); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .2s;
}
.feat-card:hover { border-color: var(--gold); }
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(200,151,43,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.feat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feat-card p { font-size: .86rem; color: var(--muted); margin-bottom: 0; }

/* ===== REVIEW ARTICLE ===== */
.review-section { background: var(--dark); }
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.article-body h2 { margin-top: 40px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 28px; color: var(--gold-light); }
.article-body ul, .article-body ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
.article-body li { margin-bottom: .4em; font-size: .95rem; }

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .88rem;
  overflow-x: auto;
  display: block;
}
.article-body table thead { background: var(--dark3); }
.article-body table th {
  padding: 12px 16px;
  text-align: left;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 2px solid var(--gold-dark);
  white-space: nowrap;
}
.article-body table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-body table tr:hover td { background: rgba(200,151,43,.04); }

.highlight-box {
  background: linear-gradient(135deg, rgba(200,151,43,.1), rgba(200,151,43,.05));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin: 24px 0;
}
.highlight-box p { margin-bottom: 0; font-size: .95rem; }

/* Sidebar */
.review-sidebar {}
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.quick-facts { list-style: none; }
.quick-facts li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.quick-facts li:last-child { border: none; }
.quick-facts .fact-key { color: var(--muted); }
.quick-facts .fact-val { color: var(--text); font-weight: 600; text-align: right; }

/* ===== PAYMENTS ===== */
.payments-section { background: var(--black); }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.pay-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: border-color .2s;
}
.pay-card:hover { border-color: var(--gold); }
.pay-icon { font-size: 1.8rem; margin-bottom: 8px; }
.pay-name { font-size: .78rem; font-weight: 600; color: var(--text); }
.pay-time { font-size: .7rem; color: var(--muted); margin-top: 2px; }

/* ===== PROVIDERS ===== */
.providers-section { background: var(--dark); }
.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-tag {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}
.provider-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HOW-TO STEPS ===== */
.steps-section { background: var(--black); }
.steps-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.step-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  padding-left: 76px;
}
.step-item::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; }
.step-item p { font-size: .86rem; color: var(--muted); margin-bottom: 0; }

/* ===== RESPONSIBLE GAMING ===== */
.rg-section { background: var(--dark); }
.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rg-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.rg-card .rg-icon { font-size: 1.8rem; margin-bottom: 10px; }
.rg-card h4 { margin-bottom: 8px; font-size: .95rem; }
.rg-card p { font-size: .84rem; color: var(--muted); margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-section { background: var(--black); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--card-bg);
  border: none;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: background .2s;
}
.faq-question:hover { background: var(--dark3); }
.faq-question.open { color: var(--gold); background: rgba(200,151,43,.08); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  transition: transform .25s;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--gold); color: var(--black); border-color: var(--gold); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--card-bg);
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: #07070D;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .85rem; color: var(--muted); margin-top: 16px; line-height: 1.7; }

.footer-col h4 {
  color: var(--gold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: var(--muted); margin: 0; }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  font-size: .82rem;
  border: 2px solid rgba(255,255,255,.2);
}

.license-logos { display: flex; align-items: center; gap: 16px; }
.license-badge {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ===== MOBILE NAV MENU ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 14px 20px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .bonus-card { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rating-grid { grid-template-columns: 1fr; }
  .rating-box { max-width: 320px; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  section { padding: 44px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-sidebar { grid-template-columns: 1fr; }
  .promo-mid { flex-direction: column; text-align: center; padding: 32px 24px; }
  .promo-strip-inner { flex-direction: column; gap: 12px; }
  .hero { padding: 48px 0; }
  .step-item { padding-left: 20px; padding-top: 68px; }
  .step-item::before { top: 18px; left: 50%; transform: translateX(-50%); }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 8px; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .license-logos { flex-wrap: wrap; justify-content: center; }
}
