/* ============================================================
   GRIDVANTARA — Main Stylesheet
   Theme: Casino Noir — Dark Gold Premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #080810;
  --bg-secondary:  #0f0f1a;
  --bg-card:       #12121f;
  --bg-card-hover: #181828;
  --gold:          #c9a84c;
  --gold-light:    #e8c96a;
  --gold-dim:      #8a6f2e;
  --red:           #c0392b;
  --red-light:     #e74c3c;
  --text-primary:  #f0ede6;
  --text-secondary:#a09880;
  --text-muted:    #5a5468;
  --border:        rgba(201,168,76,0.18);
  --border-strong: rgba(201,168,76,0.45);
  --white:         #ffffff;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'DM Mono', monospace;
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   AGE VERIFICATION OVERLAY
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  background: #050508;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 0 80px rgba(201,168,76,0.08);
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--red);
  background: rgba(192,57,43,0.12);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red-light);
  margin: 0 auto 28px;
  letter-spacing: -0.5px;
}

.age-gate__title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.age-gate__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 36px;
}

.age-gate__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn--yes, .btn--no {
  padding: 14px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  min-width: 120px;
  min-height: 48px;
}

.btn--yes {
  background: var(--gold);
  color: #080810;
}
.btn--yes:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn--no {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-muted);
}
.btn--no:hover { border-color: var(--text-secondary); color: var(--text-primary); }

.age-gate__legal {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

#age-gate-denied {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#age-gate-denied h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--red-light);
}
#age-gate-denied p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: center;
  max-width: 340px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  z-index: 9000;
  padding: 20px 24px;
  display: none;
}

.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-secondary);
  min-width: 260px;
}

.cookie-banner__text a { font-size: inherit; }

.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 40px;
  transition: all 0.2s;
}

.btn-cookie--accept {
  background: var(--gold);
  color: #080810;
}
.btn-cookie--accept:hover { background: var(--gold-light); }

.btn-cookie--decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-muted);
}
.btn-cookie--decline:hover { color: var(--text-primary); border-color: var(--text-secondary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav__logo span { color: var(--text-muted); font-weight: 400; font-size: 0.85rem; display: block; letter-spacing: 1px; font-family: var(--font-body); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }

.nav__badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(192,57,43,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #080810 0%, #0a0a18 50%, #080810 100%);
  z-index: 0;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080810;
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 52px;
}
.btn--primary:hover { background: var(--gold-light); color: #080810; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 15px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  transition: all 0.2s;
  min-height: 52px;
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero__stat-item {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-secondary);
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.section__header {
  margin-bottom: 56px;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0;
}

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Featured (888Casino) gets full width on first row */
.casino-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.casino-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.casino-card:hover::before { opacity: 1; }

.casino-card--featured {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,76,0.05) 100%);
}
.casino-card--featured::before { opacity: 1; background: linear-gradient(90deg, var(--gold), var(--gold-dim), var(--gold)); }

.card__featured-badge {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #080810;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 20px;
}
.casino-card--featured .card__featured-badge { display: flex; }

.card__featured-left {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__featured-right {
  padding: 36px;
  background: rgba(201,168,76,0.04);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card__logo-wrap img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
}

/* Placeholder shown when image is missing */
.card__logo-placeholder {
  display: none;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border: 1px dashed rgba(201,168,76,0.35);
  border-radius: 6px;
  background: rgba(201,168,76,0.05);
}

.card__logo-placeholder span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.card__logo-placeholder svg {
  flex-shrink: 0;
  opacity: 0.4;
}

.card__bonus {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.card__bonus--featured {
  font-size: 1.4rem;
}

.card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.card__tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid;
}

.card__tag--green { color: #4caf50; border-color: rgba(76,175,80,0.3); background: rgba(76,175,80,0.08); }
.card__tag--blue  { color: #64b5f6; border-color: rgba(100,181,246,0.3); background: rgba(100,181,246,0.08); }
.card__tag--gold  { color: var(--gold); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.08); }

.card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #080810;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 48px;
  text-align: center;
}
.card__cta:hover { background: var(--gold-light); color: #080810; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,168,76,0.2); }

.card__cta--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.card__cta--outline:hover { background: var(--gold); color: #080810; }

.card__tc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

.card__bullets {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.card__bullets li::before {
  content: '—';
  color: var(--gold-dim);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
}

/* ============================================================
   HOW TO CLAIM
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold-dim), transparent);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: all 0.2s;
}

.step-item:hover .step-number {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   BONUS EDUCATION
   ============================================================ */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.edu-text h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  margin-top: 32px;
}
.edu-text h3:first-child { margin-top: 0; }

.edu-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.edu-glossary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.edu-glossary h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.glossary-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.glossary-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.glossary-term {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.glossary-def {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   RESPONSIBLE GAMBLING
   ============================================================ */
#responsible-gambling {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.rg-warning-box {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.3);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}

.rg-warning-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.rg-rules {
  list-style: none;
  margin-bottom: 28px;
}

.rg-rules li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rg-rules li::before {
  content: '—';
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 2px;
}

.rg-orgs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rg-org-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s;
}
.rg-org-link:hover { border-color: var(--border-strong); background: var(--bg-card-hover); }

.rg-org-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.rg-org-icon--green { background: rgba(76,175,80,0.15); }
.rg-org-icon--blue  { background: rgba(100,181,246,0.15); }
.rg-org-icon--purple{ background: rgba(156,39,176,0.15); }

.rg-org-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.rg-org-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.rg-self-exclusion {
  margin-top: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.rg-self-exclusion h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.rg-self-exclusion p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.rg-self-exclusion a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #06060e;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 360px;
}

.footer__address {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: normal;
}

.footer__address a { color: var(--text-muted); }
.footer__address a:hover { color: var(--gold); }

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 720px;
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.badge-18-footer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: -0.3px;
}

/* ============================================================
   INNER PAGES (Policy pages)
   ============================================================ */
.inner-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.inner-page__header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.inner-page__header .section__label { display: block; margin-bottom: 12px; }

.inner-page__header h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.inner-page__header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 560px;
}

.policy-content {
  max-width: 760px;
}

.policy-content h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-content ul, .policy-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.policy-content a { font-size: inherit; }

.policy-content .highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 24px 0;
}

.policy-content .highlight-box p { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .casino-card--featured {
    grid-template-columns: 1fr;
  }
  .card__featured-right { border-left: none; border-top: 1px solid var(--border); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-glossary { position: static; }
  .rg-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 16px;
  }

  .casino-grid { grid-template-columns: 1fr; }
  .casino-card--featured { grid-column: auto; }
  .card__featured-left, .card__featured-right { padding: 24px; }

  .steps-grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }

  .hero__stats { gap: 24px; }
  .hero__cta-group { flex-direction: column; align-items: flex-start; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }

  .age-gate__box { padding: 36px 24px; }
  .age-gate__btns { flex-direction: column; }
  .btn--yes, .btn--no { width: 100%; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
