@import url('https://fonts.googleapis.com/css2?family=Pirata+One&display=swap');

:root {
  --brand-primary:     #0a4a3a;
  --brand-secondary:   #1a8a6a;
  --brand-accent:      #f5b820;
  --brand-bg:          #0c3a2e;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0a3528;
  --brand-btn-bg:      #f5b820;
  --brand-btn-text:    #5a3000;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Pirata One', sans-serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  background-color: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--brand-accent); text-decoration: none; transition: color .2s; }
a:hover { color: #ffd060; }
a:focus { outline: 2px solid var(--brand-accent); outline-offset: 2px; }

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

.skip-to-content {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  font-weight: 700;
  z-index: 99999;
  transition: top .2s;
}
.skip-to-content:focus { top: 0; }

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

/* ─── HEADER / NAV ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.site-logo-img { height: 44px; width: auto; display: block; max-width: 200px; }

.main-nav { display: flex; align-items: center; }
.main-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { background: rgba(245,184,32,.15); color: var(--brand-accent); }

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, filter .2s;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f5b820 0%, #e8950a 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 14px rgba(245,184,32,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,184,32,.55);
  color: var(--brand-btn-text);
  filter: brightness(1.05);
}

.btn-hero {
  display: inline-block;
  padding: 16px 44px;
  border-radius: var(--brand-btn-radius);
  background: linear-gradient(135deg, #f5b820 0%, #e8950a 100%);
  color: var(--brand-btn-text);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .5px;
  box-shadow: 0 6px 24px rgba(245,184,32,.5);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,184,32,.65);
  color: var(--brand-btn-text);
}

.btn-cta {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--brand-btn-radius);
  background: linear-gradient(135deg, #f5b820 0%, #c97d00 100%);
  color: var(--brand-btn-text);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(245,184,32,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,184,32,.55);
  color: var(--brand-btn-text);
}

.btn-outline {
  display: inline-block;
  padding: 9px 22px;
  border-radius: var(--brand-btn-radius);
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 13px;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--brand-accent); color: var(--brand-btn-text); }

/* ─── FLOATING CTA ──────────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f5b820 0%, #e8950a 100%);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  font-family: var(--brand-body-font);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
  color: var(--brand-btn-text);
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #061e16 0%, #0a4a3a 45%, #1a8a6a 100%);
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,138,106,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245,184,32,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-coins {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background:
    radial-gradient(circle 120px at 75% 40%, rgba(245,184,32,.18) 0%, transparent 70%),
    radial-gradient(circle 80px at 85% 70%, rgba(245,184,32,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(245,184,32,.2);
  border: 1px solid rgba(245,184,32,.4);
  color: var(--brand-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--brand-text);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-title span { color: var(--brand-accent); }

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}
.hero-badge .badge-icon { font-size: 18px; }

/* ─── SECTION BASE ──────────────────────────────────────────────── */
section { padding: 64px 0; }

.section-label {
  display: inline-block;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(24px, 3vw, 38px);
  color: var(--brand-text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title span { color: var(--brand-accent); }

.section-lead {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ─── WELCOME BONUS STRIP ───────────────────────────────────────── */
.bonus-strip {
  background: linear-gradient(90deg, #0a3528 0%, #0e5040 50%, #0a3528 100%);
  border-top: 2px solid rgba(245,184,32,.3);
  border-bottom: 2px solid rgba(245,184,32,.3);
  padding: 32px 0;
}

.bonus-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
}

.bonus-stat {
  text-align: center;
  padding: 16px 20px;
  position: relative;
}
.bonus-stat + .bonus-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(245,184,32,.2);
}

.bonus-stat-value {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--brand-accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ─── ABOUT / TWO-COLUMN ────────────────────────────────────────── */
.about-section { background: var(--brand-primary); }

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { margin-bottom: 16px; }
.about-text p { color: rgba(255,255,255,.78); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.about-text p:last-of-type { margin-bottom: 24px; }

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 14px 18px;
}

.about-feature-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-body { flex: 1; }
.about-feature-body strong { font-size: 14px; color: var(--brand-accent); display: block; margin-bottom: 3px; }
.about-feature-body span { font-size: 13px; color: rgba(255,255,255,.65); }

/* ─── GAMES SECTION ─────────────────────────────────────────────── */
.games-section { background: var(--brand-bg); }

.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.game-tab {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s;
}
.game-tab.active,
.game-tab:hover { background: var(--brand-accent); color: var(--brand-btn-text); border-color: var(--brand-accent); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card {
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }

.game-card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}

.game-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
}

.game-card-info {
  padding: 10px 14px 14px;
}
.game-card-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; color: var(--brand-text); }
.game-card-info span { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

.games-cta-row {
  text-align: center;
  margin-top: 36px;
}

/* ─── BONUSES SECTION ───────────────────────────────────────────── */
.bonuses-section {
  background: linear-gradient(180deg, #0a3528 0%, #061e16 100%);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.bonus-card {
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.3); }

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), #e8950a);
}

.bonus-card-icon { font-size: 36px; margin-bottom: 14px; }
.bonus-card h3 { font-family: var(--brand-head-font); font-size: 20px; margin-bottom: 8px; color: var(--brand-accent); }
.bonus-card-value { font-size: 28px; font-weight: 700; color: var(--brand-text); margin-bottom: 10px; line-height: 1; }
.bonus-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 18px; }
.bonus-card .bonus-terms { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 8px; }

/* ─── PAYMENTS SECTION ──────────────────────────────────────────── */
.payments-section { background: var(--brand-primary); }

.payments-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.payments-text p { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }

.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.payment-method {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 18px 14px;
  text-align: center;
  transition: background .2s;
}
.payment-method:hover { background: rgba(245,184,32,.12); }

.payment-method-icon { font-size: 28px; margin-bottom: 8px; }
.payment-method h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.payment-method span { font-size: 11px; color: rgba(255,255,255,.5); }

/* ─── MID-PAGE CTA ──────────────────────────────────────────────── */
.mid-cta-section {
  background: linear-gradient(135deg, #0a4a3a 0%, #1a8a6a 100%);
  padding: 60px 0;
  text-align: center;
}

.mid-cta-section h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--brand-text);
  margin-bottom: 14px;
}
.mid-cta-section p { color: rgba(255,255,255,.78); margin-bottom: 30px; font-size: 16px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ─── SECURITY / LICENSING ──────────────────────────────────────── */
.security-section { background: var(--brand-bg); }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.security-card {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.security-card-icon { font-size: 32px; margin-bottom: 12px; }
.security-card h4 { font-size: 14px; font-weight: 700; color: var(--brand-accent); margin-bottom: 6px; }
.security-card p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-section {
  background: linear-gradient(180deg, #061e16 0%, var(--brand-primary) 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-intro p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.faq-question:hover { color: var(--brand-accent); }
.faq-question .faq-arrow { font-size: 16px; transition: transform .3s; flex-shrink: 0; color: var(--brand-accent); }
.faq-question.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ─── RESPONSIBLE GAMING ────────────────────────────────────────── */
.rg-section {
  background: var(--brand-primary);
  padding: 40px 0;
}

.rg-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rg-icon { font-size: 36px; flex-shrink: 0; }
.rg-text { flex: 1; min-width: 240px; }
.rg-text h3 { font-size: 15px; font-weight: 700; color: var(--brand-accent); margin-bottom: 5px; }
.rg-text p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: #061510;
  border-top: 1px solid rgba(245,184,32,.15);
  padding: 56px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-accent);
  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: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--brand-accent); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 24px 0; }

.footer-logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-logo-badge {
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-logo-badge .badge-emoji { font-size: 16px; }

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  flex-shrink: 0;
}

.footer-rg-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-rg-links a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-rg-links a:hover { color: var(--brand-accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--brand-accent); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

.footer-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
}

/* ─── LEGAL PAGES ────────────────────────────────────────────────── */
.legal-page-wrap {
  padding: 60px 0 80px;
  max-width: 860px;
  margin: 0 auto;
}

.legal-page-wrap h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brand-text);
  margin-bottom: 8px;
}

.legal-last-updated {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 36px;
  display: block;
}

.legal-page-wrap h2 {
  font-family: var(--brand-head-font);
  font-size: 20px;
  color: var(--brand-accent);
  margin: 32px 0 10px;
}

.legal-page-wrap h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  margin: 22px 0 8px;
}

.legal-page-wrap p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page-wrap ul {
  margin: 10px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-page-wrap ul li {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ─── UTILITY ────────────────────────────────────────────────────── */
.text-accent { color: var(--brand-accent); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

.divider-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 48px 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
.mobile-menu-btn { display: none; }

@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,.4);
    z-index: 999;
  }
  .header-cta .btn-outline { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .payments-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .bonus-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .bonus-stat + .bonus-stat::before { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 48px 0; }
  .hero-section { min-height: 60vh; }
  .hero-content { padding: 40px 0; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 22px; font-size: 14px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }
  .bonus-strip-inner { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; }
  .payments-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 320px) {
  .games-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
}