@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #0A0E1A;
  --navy-mid: #131929;
  --navy-card: #1A2035;
  --navy-border: #232B45;
  --gold: #FFB800;
  --gold-dark: #CC9200;
  --pink: #E91E8C;
  --pink-dark: #C0186F;
  --white: #FFFFFF;
  --grey-light: #CBD5E1;
  --grey-mid: #8A96B0;
  --green: #22C55E;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-width: 320px;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }

img { display: none; }

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

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  box-shadow: 0 4px 20px rgba(233,30,140,0.4);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,140,0.55); color: var(--white); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  margin-bottom: 8px;
  display: block;
}

.gold { color: var(--gold); }
.pink { color: var(--pink); }
.green { color: var(--green); }

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--pink), transparent);
  border: none;
  margin: 0;
}

/* ── TOP PROMO STRIP ── */
.promo-strip {
  background: linear-gradient(90deg, var(--pink-dark) 0%, #7B0F6A 50%, var(--navy-mid) 100%);
  padding: 10px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 16px);
}
.promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.promo-strip-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.promo-strip-text strong { color: var(--gold); font-size: 1.05rem; }
.promo-strip .btn { padding: 9px 24px; font-size: 0.85rem; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--white);
}
.logo-text span { color: var(--gold); }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--grey-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--gold); background: rgba(255,184,0,0.08); }

.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

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

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0A0E1A 0%, #1A0A2E 40%, #0A1520 100%);
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,184,0,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.4);
  color: var(--pink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 16px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-bonus-box {
  display: inline-block;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(255,184,0,0.15));
  border: 1px solid rgba(255,184,0,0.35);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 32px;
}
.hero-bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
}
.hero-bonus-detail {
  color: var(--grey-light);
  font-size: 1rem;
  margin-top: 4px;
}
.hero-bonus-detail strong { color: var(--white); }
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--navy-border);
  position: relative; z-index: 1;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--grey-mid); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── RATING BAR ── */
.rating-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 16px 20px;
}
.rating-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-light);
}
.rating-item svg { flex-shrink: 0; }
.rating-item strong { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

/* ── SECTIONS general ── */
.section { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { color: var(--grey-light); max-width: 620px; margin: 10px auto 0; }

/* ── BONUS CARDS ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.bonus-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(255,184,0,0.35); }
.bonus-card-icon {
  width: 54px; height: 54px;
  background: rgba(255,184,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.bonus-card h3 { font-size: 1rem; margin-bottom: 8px; }
.bonus-card-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 8px 0;
}
.bonus-card p { font-size: 0.85rem; color: var(--grey-mid); margin-bottom: 18px; }
.bonus-card .btn { width: 100%; font-size: 0.85rem; padding: 11px 20px; }

/* ── INLINE BONUS STRIP ── */
.bonus-strip {
  background: linear-gradient(90deg, #1A0A2E 0%, #1A2035 50%, #0A1520 100%);
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonus-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(233,30,140,0.03) 12px, rgba(233,30,140,0.03) 24px);
  pointer-events: none;
}
.bonus-strip-inner { position: relative; z-index: 1; }
.bonus-strip h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 6px; }
.bonus-strip p { color: var(--grey-light); margin-bottom: 18px; font-size: 0.95rem; }
.bonus-strip .btn { font-size: 1rem; padding: 15px 36px; }

/* ── GAME GRID (CSS icon cards) ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.game-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 10px;
}
.game-card-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--white); }
.game-card-provider { font-size: 0.7rem; color: var(--grey-mid); margin-top: 3px; }
.game-card-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ── REVIEW CONTENT ── */
.review-section { background: var(--navy-mid); }
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.review-text h2 { margin-bottom: 16px; }
.review-text p { color: var(--grey-light); margin-bottom: 16px; }
.review-text ul { list-style: none; padding: 0; margin-bottom: 20px; }
.review-text ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: var(--grey-light);
  border-bottom: 1px solid var(--navy-border);
  font-size: 0.9rem;
}
.review-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.review-aside { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card h3 { font-size: 0.95rem; margin-bottom: 12px; color: var(--gold); }
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--navy-border);
  font-size: 0.85rem;
}
.info-row:last-child { border-bottom: none; }
.info-row span:first-child { color: var(--grey-mid); }
.info-row span:last-child { color: var(--white); font-weight: 600; text-align: right; max-width: 55%; }

/* ── FEATURE CARDS 3-col ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,184,0,0.3); }
.feature-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(255,184,0,0.15));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.83rem; color: var(--grey-mid); line-height: 1.6; }

/* ── PAYMENTS TABLE ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--navy-border);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 520px;
}
.data-table th {
  background: var(--navy-card);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--navy-border);
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--navy-border);
  color: var(--grey-light);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.data-table .method-name { color: var(--white); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.method-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0;
}
.badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.badge-green { background: rgba(34,197,94,0.15); color: var(--green); }
.badge-gold { background: rgba(255,184,0,0.15); color: var(--gold); }

/* ── SCORE BOX ── */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.score-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.score-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 6px;
}
.score-bar-wrap { height: 6px; background: var(--navy-border); border-radius: 3px; overflow: hidden; margin: 10px 0 8px; }
.score-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--pink), var(--gold)); }
.score-label { font-size: 0.78rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── PROS / CONS ── */
.pro-con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pro-box, .con-box {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 24px;
}
.pro-box { border-top: 3px solid var(--green); }
.con-box { border-top: 3px solid #EF4444; }
.pro-box h3, .con-box h3 { font-size: 1rem; margin-bottom: 14px; }
.pro-box h3 { color: var(--green); }
.con-box h3 { color: #EF4444; }
.pro-box ul, .con-box ul { list-style: none; }
.pro-box ul li, .con-box ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.875rem;
  color: var(--grey-light);
  border-bottom: 1px solid var(--navy-border);
}
.pro-box ul li:last-child, .con-box ul li:last-child { border-bottom: none; }
.pro-box ul li::before { content: '＋'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.con-box ul li::before { content: '−'; position: absolute; left: 0; color: #EF4444; font-weight: 900; font-size: 1.1rem; line-height: 1.5; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--navy-card);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
}
.faq-answer-inner {
  font-size: 0.875rem;
  color: var(--grey-light);
  line-height: 1.75;
  padding-bottom: 18px;
}
.faq-answer-inner p { margin-bottom: 8px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ── LONG-READ TEXT SECTION ── */
.article-body {
  max-width: 860px;
  margin: 0 auto;
  color: var(--grey-light);
}
.article-body h2 { color: var(--white); margin: 36px 0 14px; }
.article-body h3 { color: var(--gold); margin: 24px 0 10px; font-size: 1.1rem; }
.article-body p { margin-bottom: 14px; }
.article-body ul { list-style: none; padding-left: 0; margin-bottom: 14px; }
.article-body ul li { padding: 5px 0 5px 24px; position: relative; }
.article-body ul li::before { content: '▸'; position: absolute; left: 0; color: var(--pink); }
.article-body strong { color: var(--white); }
.article-body .highlight {
  background: rgba(255,184,0,0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-style: italic;
}

/* ── FOOTER ── */
.site-footer {
  background: #060810;
  border-top: 1px solid var(--navy-border);
  padding: 50px 20px 24px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--navy-border);
}
.footer-about p { font-size: 0.85rem; color: var(--grey-mid); margin-top: 12px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--grey-mid); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.77rem; color: var(--grey-mid); line-height: 1.7; max-width: 740px; }
.footer-legal strong { color: var(--grey-light); }
.footer-badges { display: flex; gap: 10px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.badge-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-copy { font-size: 0.77rem; color: var(--grey-mid); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--navy-border); text-align: center; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
  padding: 16px 20px;
}
.mobile-menu a {
  display: block;
  color: var(--grey-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.is-open { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn-outline { display: none; }
  .review-grid { grid-template-columns: 1fr; }
  .pro-con-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 50px 16px 44px; }
  .hero-bonus-box { padding: 18px 22px; }
  .hero-stats { gap: 20px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-badges { display: none; }
  .promo-strip-inner { flex-direction: column; gap: 10px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
