/* =============================================
   SKY CASINO UK — style.css
   Brand palette: deep navy, sky blue, gold
   ============================================= */

:root {
  --navy:       #0a0e1a;
  --navy-mid:   #111827;
  --navy-light: #1a2540;
  --sky:        #1e90ff;
  --sky-light:  #5bb8ff;
  --sky-pale:   #0d2a4a;
  --gold:       #f0c040;
  --gold-light: #ffe085;
  --white:      #ffffff;
  --offwhite:   #e8eef7;
  --muted:      #8a9ab5;
  --border:     rgba(30,144,255,0.18);
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 32px rgba(0,0,0,0.45);
  --transition: 0.22s ease;
  --font-head:  'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body:  'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--offwhite);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; color: var(--sky-light); margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; color: var(--offwhite); }
ul, ol { padding-left: 1.4em; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7em 1.8em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #e0a800 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(240,192,64,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,192,64,0.55); background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: var(--navy); }
.btn-sky {
  background: linear-gradient(135deg, var(--sky) 0%, #0066cc 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(30,144,255,0.35);
}
.btn-sky:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,144,255,0.55); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--sky);
  color: var(--sky-light);
}
.btn-outline:hover { background: var(--sky); color: var(--white); }
.btn-lg { padding: 0.85em 2.4em; font-size: 1.05rem; }

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

/* Logo SVG text */
.logo-wrap { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-svg { height: 42px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  color: var(--offwhite);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4em 0.85em;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { background: var(--navy-light); color: var(--sky-light); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--offwhite); border-radius: 2px; transition: var(--transition); }

/* ── BONUS RIBBON (top banner) ────────────── */
.bonus-ribbon {
  background: linear-gradient(90deg, #0d2a4a 0%, #0a1a3a 40%, #0d2a4a 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0.6rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bonus-ribbon span { font-size: 0.9rem; font-weight: 600; color: var(--gold-light); }
.bonus-ribbon strong { color: var(--gold); font-size: 1rem; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0a1a3a 0%, var(--navy) 60%, #05101f 100%);
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(30,144,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .eyebrow {
  display: inline-block;
  background: var(--sky-pale);
  color: var(--sky-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.hero-text h1 { color: var(--white); }
.hero-text h1 span { color: var(--gold); }
.hero-text p { color: var(--muted); font-size: 1.05rem; max-width: 500px; }
.hero-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* Hero visual panel */
.hero-visual {
  background: linear-gradient(135deg, var(--navy-light), var(--sky-pale));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat-box .num { font-size: 1.7rem; font-weight: 800; color: var(--sky-light); line-height: 1; }
.stat-box .num.gold { color: var(--gold); }
.stat-box .label { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── TABLE OF CONTENTS ───────────────────── */
.toc-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
}
.toc-inner { max-width: 1200px; margin: 0 auto; }
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
.toc-grid a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--offwhite);
  font-size: 0.88rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--navy-light);
  transition: background var(--transition), color var(--transition);
}
.toc-grid a:hover { background: var(--sky-pale); color: var(--sky-light); }
.toc-grid a::before { content: '›'; color: var(--sky); font-size: 1rem; font-weight: 900; flex-shrink: 0; }

/* ── WINNERS TICKER ──────────────────────── */
.winners-section {
  background: var(--navy-mid);
  padding: 2rem 1.5rem;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--sky);
  border-radius: 2px;
}
.winners-ticker {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.winner-card {
  flex-shrink: 0;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-width: 130px;
  text-align: center;
}
.winner-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-pale), var(--navy-mid));
  border: 2px solid var(--sky);
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.winner-name { font-size: 0.78rem; font-weight: 600; color: var(--offwhite); }
.winner-amount { font-size: 0.9rem; font-weight: 800; color: var(--gold); margin-top: 0.2rem; }

/* ── CONTENT SECTIONS ────────────────────── */
.content-section {
  padding: 3.5rem 1.5rem;
}
.content-section:nth-child(odd) { background: var(--navy); }
.content-section:nth-child(even) { background: var(--navy-mid); }

.content-inner { max-width: 1200px; margin: 0 auto; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.two-col-3-2 { grid-template-columns: 3fr 2fr; }

/* ── CARD GRID ───────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--sky); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sky-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0; }

/* ── STEPS ───────────────────────────────── */
.steps-list { list-style: none; padding: 0; counter-reset: step-counter; margin-top: 1rem; }
.steps-list li {
  counter-increment: step-counter;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.steps-list li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--sky), #0066cc);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.steps-list li div { flex: 1; }
.steps-list li strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--white); }
.steps-list li p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ── INFO PANEL / SIDEBAR ─────────────────── */
.info-panel {
  background: var(--sky-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.info-panel h3 { color: var(--sky-light); margin-bottom: 1rem; }
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .key { color: var(--muted); }
.info-row .val { color: var(--offwhite); font-weight: 600; text-align: right; max-width: 60%; }

/* ── HIGHLIGHT BOX ───────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--sky-pale), rgba(30,144,255,0.06));
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; font-size: 0.95rem; }

/* ── BONUS STRIP (mid-page) ──────────────── */
.bonus-strip {
  background: linear-gradient(90deg, #051428 0%, #0d2a4a 50%, #051428 100%);
  border-top: 1px solid rgba(240,192,64,0.3);
  border-bottom: 1px solid rgba(240,192,64,0.3);
  padding: 2rem 1.5rem;
}
.bonus-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bonus-strip-text .tag {
  display: inline-block;
  background: rgba(240,192,64,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: 100px;
  border: 1px solid rgba(240,192,64,0.4);
  margin-bottom: 0.6rem;
}
.bonus-strip-text h3 { font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.25rem; }
.bonus-strip-text p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ── VIP TABLE ───────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
  border-radius: var(--radius);
}
table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.88rem;
}
thead { background: linear-gradient(90deg, #0d2a4a, #051428); }
thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  color: var(--sky-light);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--sky);
}
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background var(--transition); }
tbody tr:hover { background: rgba(30,144,255,0.06); }
tbody td { padding: 0.75rem 1rem; color: var(--offwhite); vertical-align: middle; }
.badge {
  display: inline-block;
  padding: 0.25em 0.65em;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-blue { background: rgba(30,144,255,0.15); color: var(--sky-light); border: 1px solid rgba(30,144,255,0.3); }
.badge-gold { background: rgba(240,192,64,0.15); color: var(--gold); border: 1px solid rgba(240,192,64,0.3); }
.badge-green { background: rgba(52,211,153,0.15); color: #6ee7b7; border: 1px solid rgba(52,211,153,0.3); }

/* ── GAMES GRID ──────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.game-tile {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  padding: 1rem 0.5rem;
  text-align: center;
}
.game-tile:hover { border-color: var(--sky); transform: translateY(-3px); }
.game-tile .game-icon { font-size: 2rem; }
.game-tile .game-name { font-size: 0.72rem; color: var(--muted); font-weight: 600; line-height: 1.3; }
.game-tile .game-rtp { font-size: 0.68rem; color: var(--gold); font-weight: 700; }

/* ── PAYMENTS GRID ───────────────────────── */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.payment-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.payment-icon { font-size: 1.8rem; }
.payment-name { font-size: 0.82rem; font-weight: 700; color: var(--offwhite); }
.payment-time { font-size: 0.72rem; color: var(--gold); font-weight: 600; }

/* ── RESPONSIBLE GAMING ──────────────────── */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.rg-card {
  background: var(--sky-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.rg-card .rg-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.rg-card h4 { font-size: 0.9rem; color: var(--sky-light); margin-bottom: 0.3rem; }
.rg-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ── FAQ ─────────────────────────────────── */
.faq-section { padding: 3.5rem 1.5rem; background: var(--navy-mid); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  text-align: left;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-head);
}
.faq-q:focus { outline: 2px solid var(--sky); outline-offset: 2px; }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sky-pale);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--sky-light);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sky); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding var(--transition);
  padding: 0;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1rem; }
.faq-a p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ── TRUST BAR ───────────────────────────── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.trust-item .t-icon { font-size: 1.2rem; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: #060911;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; max-width: 280px; }
.footer-col h4 { color: var(--offwhite); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--sky-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.footer-badge {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3em 0.7em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-badge.green { color: #6ee7b7; border-color: rgba(52,211,153,0.3); }
.age-notice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--muted);
}

/* ── SECTION DIVIDER ─────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 1.5rem;
}

/* ── MISC ─────────────────────────────────── */
.text-sky { color: var(--sky-light); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .two-col, .two-col-3-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .nav-cta .btn:not(.btn-gold) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .bonus-strip-inner { flex-direction: column; text-align: center; }
  .bonus-ribbon { gap: 0.5rem; }
  .bonus-ribbon .btn { font-size: 0.8rem; padding: 0.55em 1.2em; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .content-section { padding: 2.5rem 1rem; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
