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

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-dark: #C47D0E;
  --green: #1A8C4E;
  --green-light: #22A85F;
  --green-dark: #0F5C33;
  --bg-dark: #0D1117;
  --bg-card: #161C27;
  --bg-card2: #1E2738;
  --text-main: #E8EAF0;
  --text-muted: #8A94A8;
  --text-light: #C8CDD8;
  --border: #2A3347;
  --red: #E53935;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.65;
  min-width: 320px;
}

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

img { display: none !important; }

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-light); }
.text-muted { color: var(--text-muted); }
.badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-gold {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: filter .18s, transform .12s;
  text-align: center;
  letter-spacing: .3px;
}
.btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  padding: 14px 32px;
  font-size: 16px;
}
.btn-primary-lg {
  padding: 17px 44px;
  font-size: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.btn-green {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(26,140,78,.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 15px;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ===== TOP PROMO BANNER ===== */
.top-promo-bar {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
  padding: 10px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.top-promo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px);
}
.top-promo-bar .promo-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-promo-bar .promo-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.top-promo-bar .promo-highlight {
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 800;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: #111720;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(245,166,35,.4);
}
.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); background: rgba(245,166,35,.08); text-decoration: none; }

.header-cta { display: flex; gap: 8px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #111720;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-light);
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); text-decoration: none; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0a1020 0%, #0f1e30 40%, #0a1820 100%);
  padding: 72px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-bonus-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(245,166,35,.12) 0%, rgba(26,140,78,.1) 100%);
  border: 2px solid rgba(245,166,35,.3);
  border-radius: var(--radius);
  padding: 28px 44px;
  margin-bottom: 32px;
  position: relative;
}
.hero-bonus-box::after {
  content: 'EXCLUSIVE OFFER';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.hero-bonus-amount {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(245,166,35,.4);
}
.hero-bonus-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 6px;
}
.hero-fs {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-light);
  margin-top: 8px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION GENERAL ===== */
.section { padding: 64px 0; }
.section-alt { background: #0f1620; }
.section-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -.3px;
}
.section-title span { color: var(--gold); }
.section-lead {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 680px;
}
.section-header { margin-bottom: 40px; }

/* ===== SCORE BAR ===== */
.score-section { padding: 48px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.score-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.score-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.score-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 6px;
  display: block;
}
.score-stars {
  color: var(--gold);
  font-size: 18px;
  margin-top: 4px;
}

/* ===== INFO CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(245,166,35,.35); transform: translateY(-3px); }
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ===== BONUS SECTION ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(245,166,35,.4); }
.bonus-card-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 20px 24px 16px;
  position: relative;
}
.bonus-card-header.gold-header {
  background: linear-gradient(135deg, #7a4e0a 0%, var(--gold-dark) 100%);
}
.bonus-card-type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.bonus-card-amount {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.bonus-card-body { padding: 20px 24px; }
.bonus-card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.wager-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(90deg, var(--green-dark) 0%, #0c3d20 50%, var(--green-dark) 100%);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent, transparent 20px, rgba(255,255,255,.02) 20px, rgba(255,255,255,.02) 40px);
}
.mid-banner .container { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mid-banner-text { font-size: 20px; font-weight: 700; color: #fff; }
.mid-banner-text span { color: var(--gold-light); }
.mid-banner-sub { font-size: 14px; color: rgba(255,255,255,.7); margin-top: -8px; }

/* ===== GAMES SECTION ===== */
.games-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: .15s;
}
.cat-pill.active, .cat-pill:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}
.games-text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.game-text-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.game-text-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
}
.game-text-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--gold); }
.game-text-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.game-count { font-size: 24px; font-weight: 900; color: var(--gold); display: block; margin-bottom: 4px; }

/* ===== PAYMENTS TABLE ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.data-table th {
  background: var(--bg-card2);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(245,166,35,.04); }
.method-name { font-weight: 600; color: #fff; }
.time-fast { color: var(--green-light); font-weight: 600; }
.time-mid { color: var(--gold); font-weight: 600; }

/* ===== PROS/CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-block, .cons-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.pros-block { border-top: 3px solid var(--green-light); }
.cons-block { border-top: 3px solid var(--red); }
.pros-block h3, .cons-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-block h3 { color: var(--green-light); }
.cons-block h3 { color: var(--red); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 1px;
}
.pros-block .check-list li::before {
  background: var(--green-light);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-4-4a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") center/cover;
}
.cons-block .check-list li::before {
  background: var(--red);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M6.7 6.7a1 1 0 0 1 1.4 0L10 8.6l1.9-1.9a1 1 0 1 1 1.4 1.4L11.4 10l1.9 1.9a1 1 0 0 1-1.4 1.4L10 11.4l-1.9 1.9a1 1 0 0 1-1.4-1.4L8.6 10 6.7 8.1a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E") center/cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M6.7 6.7a1 1 0 0 1 1.4 0L10 8.6l1.9-1.9a1 1 0 1 1 1.4 1.4L11.4 10l1.9 1.9a1 1 0 0 1-1.4 1.4L10 11.4l-1.9 1.9a1 1 0 0 1-1.4-1.4L8.6 10 6.7 8.1a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E") center/cover;
}

/* ===== STEPS ===== */
.steps-list { display: flex; flex-direction: column; gap: 20px; max-width: 760px; }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s;
}
.step-item:hover { border-color: rgba(245,166,35,.3); }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--bg-dark);
}
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.step-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== REVIEW TEXT ===== */
.review-article {
  max-width: 860px;
}
.review-article h2 { font-size: 26px; font-weight: 800; color: #fff; margin: 36px 0 14px; }
.review-article h3 { font-size: 20px; font-weight: 700; color: var(--gold); margin: 28px 0 12px; }
.review-article p { color: var(--text-light); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.review-article ul { margin: 0 0 16px 20px; }
.review-article ul li { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 6px; }
.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(26,140,78,.06));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: var(--text-light); font-size: 15px; font-style: italic; }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(245,166,35,.25); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: color .15s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, background .2s;
  color: var(--gold);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--bg-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ===== RATING TABLE ===== */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.rating-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.rating-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 8px; }
.rating-bar-wrap { background: rgba(255,255,255,.06); border-radius: 4px; height: 6px; margin-bottom: 8px; overflow: hidden; }
.rating-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--green-light)); }
.rating-score { font-size: 15px; font-weight: 700; color: var(--gold); }

/* ===== TRUST BADGES ===== */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.trust-badge svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #090d14;
  border-top: 2px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-about p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .15s; }
.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;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-legal { font-size: 12px; color: var(--text-muted); line-height: 1.6; max-width: 700px; }
.footer-copy { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .header-cta .btn:first-child { display: inline-block; }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 20px 56px; }
  .hero-bonus-box { padding: 24px 28px; }
  .hero-stats { gap: 20px; }

  .bonus-cards { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .games-text-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rating-grid { grid-template-columns: 1fr 1fr; }

  .step-item { flex-direction: column; gap: 12px; }

  .section-title { font-size: 22px; }
  .review-article h2 { font-size: 20px; }

  .top-promo-bar .promo-inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  .games-text-grid { grid-template-columns: 1fr; }
  .rating-grid { grid-template-columns: 1fr; }
  .logo-name { font-size: 18px; }
  .btn-primary-lg { padding: 14px 28px; font-size: 16px; }
}
