/* ============================================================
   BigPirate Casino — assets/style.css
   Brand: Dark teal / emerald green / golden accent
   Fonts: Fredoka One (headings) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --brand-primary:     #0a4a3a;
  --brand-secondary:   #1a8a6a;
  --brand-accent:      #f5b830;
  --brand-bg:          #0c3830;
  --brand-text:        #ffffff;
  --brand-header-bg:   #0a3028;
  --brand-btn-bg:      #f5b830;
  --brand-btn-text:    #5a3800;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Fredoka One', sans-serif;
  --brand-body-font:   'Nunito', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
  --brand-card-bg:     #0d4535;
  --brand-card-border: rgba(245,184,48,0.18);
  --transition:        0.22s 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);
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #ffd166; }
ul { list-style: none; }

/* ── Skip to content ─────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 16px; }

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

/* ── Site Logo ───────────────────────────────────────────── */
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: 2px solid rgba(245,184,48,0.25);
  box-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(245,184,48,0.15);
  color: var(--brand-accent);
}
.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid rgba(245,184,48,0.5);
  border-radius: 8px;
  color: var(--brand-accent);
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  line-height: 1;
  transition: border-color var(--transition), background var(--transition);
}
.mobile-menu-btn:hover { background: rgba(245,184,48,0.1); border-color: var(--brand-accent); }
.mobile-menu-btn:focus { outline: 2px solid var(--brand-accent); outline-offset: 2px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:focus { outline: 2px solid var(--brand-accent); outline-offset: 3px; }
.btn-accent {
  background: linear-gradient(135deg, #f5b830 0%, #e8960a 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 16px rgba(245,184,48,0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,184,48,0.5);
  color: var(--brand-btn-text);
}
.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: 20px;
  background: linear-gradient(135deg, #f5b830 0%, #e8960a 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 6px 24px rgba(245,184,48,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,184,48,0.6);
  color: var(--brand-btn-text);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  padding: 9px 22px;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--brand-accent);
  color: var(--brand-btn-text);
}
.btn-cta {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #f5b830 0%, #e8960a 100%);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 20px rgba(245,184,48,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,184,48,0.55);
  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, #f5b830 0%, #e8960a 100%);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--brand-body-font);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,184,48,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,184,48,0.6);
  color: var(--brand-btn-text);
}
.floating-cta:focus { outline: 2px solid #fff; outline-offset: 3px; }

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background:
    radial-gradient(ellipse 80% 70% at 70% 50%, rgba(26,138,106,0.22) 0%, transparent 70%),
    linear-gradient(160deg, #0a3028 0%, #0c3830 50%, #061f18 100%);
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(245,184,48,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(26,138,106,0.15) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,184,48,0.18);
  border: 1px solid rgba(245,184,48,0.4);
  color: var(--brand-accent);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--brand-text);
}
.hero-title span { color: var(--brand-accent); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--brand-head-font);
  font-size: 1.8rem;
  color: var(--brand-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.hero-game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 18px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}
.hero-game-icon {
  font-size: 2.8rem;
  margin-bottom: 8px;
  display: block;
}
.hero-game-title {
  font-family: var(--brand-head-font);
  font-size: 14px;
  color: var(--brand-accent);
  margin-bottom: 4px;
}
.hero-game-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,184,48,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Section Shared ──────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: rgba(10,48,40,0.55); }
.section-dark { background: rgba(6,20,16,0.7); }
.section-title {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title span { color: var(--brand-accent); }
.section-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Welcome Section (Asymmetric 2/3 + 1/3) ─────────────── */
.welcome-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.welcome-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  line-height: 1.72;
}
.welcome-text h2 { margin-bottom: 18px; }
.welcome-sidebar {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 20px;
  padding: 28px 24px;
}
.welcome-sidebar h3 {
  font-family: var(--brand-head-font);
  font-size: 1.2rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245,184,48,0.1);
}
.bonus-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bonus-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }
.bonus-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 2px;
}
.bonus-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ── Games Grid (3 columns) ──────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.game-card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  border-color: rgba(245,184,48,0.45);
}
.game-card-icon { font-size: 3rem; margin-bottom: 14px; display: block; }
.game-card-title {
  font-family: var(--brand-head-font);
  font-size: 1.1rem;
  color: var(--brand-text);
  margin-bottom: 8px;
}
.game-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.game-card-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(245,184,48,0.12);
  color: var(--brand-accent);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ── Payments (2 column side-by-side) ────────────────────── */
.payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.payments-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  line-height: 1.7;
}
.payments-text h2 { margin-bottom: 16px; }
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.payment-method {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-method-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
}
.payment-method-speed {
  font-size: 12px;
  color: var(--brand-accent);
}
.payment-method-limit {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ── Bonuses Full Width ───────────────────────────────────── */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bonus-card {
  background: linear-gradient(160deg, #0d4a38 0%, #0a3a2c 100%);
  border: 1px solid rgba(245,184,48,0.2);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), #e8960a);
  border-radius: 18px 18px 0 0;
}
.bonus-card-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.bonus-card-title {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  color: var(--brand-accent);
  margin-bottom: 8px;
}
.bonus-card-amount {
  font-family: var(--brand-head-font);
  font-size: 1.5rem;
  color: var(--brand-text);
  margin-bottom: 8px;
}
.bonus-card-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ── Security (Asymmetric 1/3 + 2/3) ────────────────────── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.security-badge {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-card-border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.security-badge-icon { font-size: 2rem; flex-shrink: 0; }
.security-badge-text { font-size: 13px; color: rgba(255,255,255,0.8); }
.security-badge-text strong { display: block; color: var(--brand-text); font-size: 14px; margin-bottom: 2px; }
.security-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  line-height: 1.72;
}
.security-content h2 { margin-bottom: 16px; }

/* ── Support Section (Single column full-width) ──────────── */
.support-inner {
  background: linear-gradient(135deg, #0d4a38 0%, #0a3830 100%);
  border: 1px solid rgba(245,184,48,0.2);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.support-text h2 { margin-bottom: 16px; }
.support-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  line-height: 1.7;
}
.support-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.support-channel {
  background: rgba(10,48,40,0.65);
  border: 1px solid rgba(245,184,48,0.12);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.support-channel-icon { font-size: 1.6rem; flex-shrink: 0; }
.support-channel-label { font-weight: 700; font-size: 14px; color: var(--brand-text); }
.support-channel-detail { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── Mid-page CTA Banner ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d4a38 0%, #061f18 100%);
  border-top: 1px solid rgba(245,184,48,0.2);
  border-bottom: 1px solid rgba(245,184,48,0.2);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245,184,48,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--brand-text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner h2 span { color: var(--brand-accent); }
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

/* ── Responsible Gambling ────────────────────────────────── */
.rg-strip {
  background: rgba(6,20,16,0.8);
  border-top: 1px solid rgba(245,184,48,0.1);
  padding: 24px 0;
}
.rg-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rg-badge {
  background: rgba(245,184,48,0.12);
  border: 1px solid rgba(245,184,48,0.3);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-accent);
  white-space: nowrap;
}
.rg-text {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  flex: 1;
}
.rg-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.rg-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  transition: color var(--transition);
}
.rg-links a:hover { color: var(--brand-accent); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-header-bg);
  border-top: 2px solid rgba(245,184,48,0.2);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--brand-head-font);
  font-size: 1rem;
  color: var(--brand-accent);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand-accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--brand-accent); }
.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-logo-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Page Hero (Legal Pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #0a3028 0%, #0c3830 100%);
  padding: 120px 0 52px;
  border-bottom: 1px solid rgba(245,184,48,0.15);
}
.page-hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--brand-text);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}

/* ── Legal Content ───────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}
.legal-content h2 {
  font-family: var(--brand-head-font);
  font-size: 1.35rem;
  color: var(--brand-accent);
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-family: var(--brand-body-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-text);
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 7px;
  line-height: 1.65;
}

/* ── Utility ─────────────────────────────────────────────── */
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.accent { color: var(--brand-accent); }
.divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0;
  border: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bonus-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .main-nav { position: relative; }
  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -20px;
    width: 100vw;
    background: var(--brand-header-bg);
    padding: 16px 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    gap: 2px;
    z-index: 999;
  }
  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-section { min-height: auto; padding: 110px 0 52px; }
  .welcome-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .support-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-stats { gap: 18px; }
  .games-grid { grid-template-columns: 1fr; }
  .bonus-cards-grid { grid-template-columns: 1fr 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { flex-direction: column; gap: 10px; }
  .floating-cta { bottom: 18px; right: 14px; padding: 12px 20px; font-size: 13px; }
  .hero-title { font-size: 1.9rem; }
  .support-inner { padding: 28px 18px; gap: 28px; }
  .bonus-cards-grid { grid-template-columns: 1fr; }
  .rg-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  .hero-section { padding: 100px 0 40px; }
  .hero-card-stack { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
}