/* ============================================================
   BOHO CASINO — assets/style.css
   Brand: #F5A623 / #4A3ADB / #FF6B35
   ============================================================ */

:root {
  --brand-primary:     #F5A623;
  --brand-secondary:   #4A3ADB;
  --brand-accent:      #FF6B35;
  --brand-bg:          #F0F0F5;
  --brand-text:        #2D2D3C;
  --brand-header-bg:   #FFFFFF;
  --brand-btn-bg:      #F5A623;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --shadow-sm:         0 2px 8px rgba(0,0,0,.08);
  --shadow-md:         0 4px 20px rgba(0,0,0,.14);
  --shadow-lg:         0 8px 40px rgba(0,0,0,.18);
  --radius-card:       16px;
  --radius-btn:        24px;
  --transition:        all .2s ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::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);
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--brand-secondary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── CONTAINER ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  color: var(--brand-text);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { font-size: var(--brand-body-size); line-height: 1.7; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  background: #e0941a;
  border-color: #e0941a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-hero {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: #fff;
  font-size: 17px;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(245,166,35,.45);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245,166,35,.6);
}
.btn-cta {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-secondary);
}
.btn-cta:hover {
  background: #3b2ec0;
  border-color: #3b2ec0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 22px; font-size: 13px; }
.btn-lg { padding: 18px 48px; font-size: 18px; }

/* ── FLOATING CTA ───────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.floating-cta::before { content: '🎰'; font-size: 18px; }

/* ── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  background: var(--brand-header-bg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--brand-primary);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.site-logo-img { height: 44px; width: auto; display: block; max-width: 200px; }
.logo-fallback {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand-secondary);
  letter-spacing: -1px;
}
.logo-fallback span { color: var(--brand-primary); }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.main-nav ul li a {
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  display: block;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--brand-secondary);
  background: rgba(74,58,219,.08);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--brand-text);
  padding: 6px;
  line-height: 1;
  cursor: pointer;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #2a1fa8 40%, #1a0e7a 100%);
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(245,166,35,.18) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(255,107,53,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--brand-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '🇦🇺'; }
.hero-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title .highlight {
  color: var(--brand-primary);
  display: block;
}
.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-bonus-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(245,166,35,.4);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brand-primary);
  line-height: 1;
  display: block;
}
.hero-bonus-box .bonus-desc {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin-top: 4px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 14px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cards-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero-game-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
}
.hero-game-card .card-icon {
  font-size: 64px;
  margin-bottom: 12px;
  display: block;
}
.hero-game-card .card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.hero-game-card .card-stat {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 14px;
}
.hero-floating-chips {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 8px 32px rgba(245,166,35,.5);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}
.hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  flex: 1;
}
.hero-stat .stat-num {
  font-family: var(--brand-head-font);
  font-weight: 800;
  color: var(--brand-primary);
  font-size: 1.3rem;
  display: block;
}
.hero-stat .stat-label {
  color: rgba(255,255,255,.7);
  font-size: 11px;
  margin-top: 2px;
  display: block;
}

/* ── SECTION WRAPPER ────────────────────────────────────────── */
.section { padding: 70px 0; }
.section-alt { background: #fff; }
.section-dark {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #2a1fa8 100%);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.section-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}
.section-header { margin-bottom: 40px; }
.section-header.centered { text-align: center; }
.section-title-accent {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ── WELCOME SECTION ─────────────────────────────────────────── */
.welcome-section { padding: 70px 0; background: #fff; }
.welcome-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.welcome-content {}
.welcome-content h2 { margin-bottom: 20px; }
.welcome-content p { font-size: 15px; color: #555; line-height: 1.75; }
.welcome-sidebar {}
.welcome-sidebar .info-card {
  background: var(--brand-bg);
  border: 2px solid rgba(74,58,219,.12);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.info-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-secondary);
  font-size: 15px;
}
.info-card p { font-size: 13px; color: #666; margin: 0; }
.info-card .info-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

/* ── BONUS SECTION ──────────────────────────────────────────── */
.bonus-section { padding: 70px 0; background: var(--brand-bg); }
.bonus-strip {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bonus-strip::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.bonus-item { position: relative; z-index: 1; }
.bonus-item .bonus-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.bonus-item h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.bonus-item p { color: rgba(255,255,255,.8); font-size: 13px; margin: 0; }
.bonus-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.bonus-cta-col .bonus-total {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--brand-primary);
  line-height: 1;
}
.bonus-cta-col .bonus-label { color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; }

/* ── GAMES SECTION ──────────────────────────────────────────── */
.games-section { padding: 70px 0; background: #fff; }
.games-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.game-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid rgba(74,58,219,.2);
  font-family: var(--brand-head-font);
  font-weight: 600;
  font-size: 13px;
  color: var(--brand-secondary);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.game-tab.active, .game-tab:hover {
  background: var(--brand-secondary);
  color: #fff;
  border-color: var(--brand-secondary);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card {
  background: var(--brand-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}
.game-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.game-card-thumb.slots { background: linear-gradient(135deg, #667eea, #764ba2); }
.game-card-thumb.live  { background: linear-gradient(135deg, #f093fb, #f5576c); }
.game-card-thumb.table { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.game-card-thumb.sports{ background: linear-gradient(135deg, #43e97b, #38f9d7); }
.game-card-thumb.jackpot{ background: linear-gradient(135deg, #f7971e, #ffd200); }
.game-card-thumb.crash { background: linear-gradient(135deg, #ff0844, #ffb199); }
.game-card-thumb.new { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.game-card-thumb.poker { background: linear-gradient(135deg, #2af598, #009efd); }
.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--brand-head-font);
}
.game-badge.hot { background: #e74c3c; }
.game-badge.new-badge { background: var(--brand-secondary); }
.game-badge.live-badge { background: #27ae60; }
.game-card-body { padding: 14px 16px; }
.game-card-body h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.game-card-body p { font-size: 12px; color: #888; margin: 0; }
.game-rtp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.rtp-label { font-size: 11px; color: #aaa; font-weight: 600; }
.rtp-value { font-size: 12px; font-weight: 700; color: var(--brand-secondary); }

/* ── WHY BOHO SECTION ───────────────────────────────────────── */
.why-section { padding: 70px 0; background: var(--brand-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.why-card p { font-size: 13px; color: #666; line-height: 1.65; margin: 0; }

/* ── PAYMENTS SECTION ───────────────────────────────────────── */
.payments-section { padding: 70px 0; background: #fff; }
.payments-asymmetric {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.payments-left h2 { margin-bottom: 16px; }
.payments-left p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.payment-highlight {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  margin-top: 24px;
}
.payment-highlight h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
}
.payment-highlight p { color: rgba(255,255,255,.85); font-size: 13px; margin: 0; }
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.payment-method-card {
  background: var(--brand-bg);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.payment-method-card:hover {
  border-color: var(--brand-primary);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.payment-method-card .method-icon { font-size: 32px; margin-bottom: 8px; display: block; }
.payment-method-card h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}
.payment-method-card .method-time { font-size: 12px; color: #888; }
.payment-method-card .method-aud {
  font-size: 11px;
  color: var(--brand-secondary);
  font-weight: 600;
  margin-top: 4px;
}

/* ── PROVIDERS SECTION ──────────────────────────────────────── */
.providers-section {
  padding: 60px 0;
  background: var(--brand-bg);
  text-align: center;
}
.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.provider-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  transition: var(--transition);
}
.provider-pill:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
  background: rgba(74,58,219,.05);
}

/* ── RESPONSIBLE GAMING ─────────────────────────────────────── */
.rg-section {
  padding: 70px 0;
  background: #fff;
}
.rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rg-content h2 { margin-bottom: 16px; }
.rg-content p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 14px; }
.rg-tools { display: flex; flex-direction: column; gap: 12px; }
.rg-tool {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--brand-bg);
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid var(--brand-primary);
}
.rg-tool .tool-icon { font-size: 24px; flex-shrink: 0; }
.rg-tool h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.rg-tool p { font-size: 12px; color: #777; margin: 0; }

/* ── FAQ SECTION ────────────────────────────────────────────── */
.faq-section { padding: 70px 0; background: var(--brand-bg); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.faq-col {}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-text);
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
}
.faq-question:hover { color: var(--brand-secondary); }
.faq-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
  font-size: 12px;
  color: var(--brand-secondary);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 13px; color: #666; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-banner .btn-hero { position: relative; }
.cta-note {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 16px;
  position: relative;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-primary);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--brand-primary); }
.footer-middle {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.trust-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.trust-badge .badge-icon { font-size: 20px; }
.footer-payment-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.payment-logo-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--brand-head-font);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--brand-primary); }
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  max-width: 600px;
  line-height: 1.6;
}
.footer-rg-note {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  line-height: 1.6;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── LEGAL PAGE STYLES ──────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #2a1fa8 100%);
  padding: 60px 0;
  text-align: center;
}
.legal-hero h1 { color: #fff; }
.legal-hero p { color: rgba(255,255,255,.75); margin-top: 12px; }
.legal-content {
  padding: 60px 0;
  background: #fff;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  padding-top: 12px;
  color: var(--brand-secondary);
  border-top: 1px solid var(--brand-bg);
}
.legal-content h2:first-child { margin-top: 0; border-top: none; }
.legal-content p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 6px; }
.legal-last-updated {
  background: var(--brand-bg);
  border-left: 4px solid var(--brand-primary);
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}

/* ── UTILITY ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--brand-primary); }
.text-secondary { color: var(--brand-secondary); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.gap-8 { gap: 8px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }

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

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

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .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,.1);
    z-index: 999;
  }
  .mobile-nav-active ul li a { padding: 12px 16px; font-size: 15px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-section { min-height: auto; padding: 60px 0 100px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 30px; }
  .payments-asymmetric { grid-template-columns: 1fr; gap: 32px; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-layout { grid-template-columns: 1fr; gap: 0; }
  .bonus-strip { grid-template-columns: 1fr; gap: 24px; padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header { position: sticky; top: 0; }
  .main-nav { position: relative; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .games-section, .why-section, .payments-section, .bonus-section,
  .welcome-section, .rg-section, .faq-section { padding: 50px 0; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .floating-cta { bottom: 16px; right: 16px; font-size: 14px; padding: 12px 20px; }
  .hero-bonus-box .bonus-amount { font-size: 2rem; }
  .hero-title { font-size: 2rem; }
  .bonus-strip .bonus-cta-col { margin-top: 12px; }
  .header-actions .btn { display: none; }
  .providers-section { padding: 40px 0; }
  .cta-banner { padding: 50px 0; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-stats-row { gap: 10px; }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-trust-row { gap: 12px; }
  .container { padding: 0 14px; }
  .legal-content h2 { font-size: 1.2rem; }
}