/* =============================================
   EligeJugar.com — Main Stylesheet
   Diseño basado en template de referencia
   ============================================= */

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

/* --- Variables --- */
:root {
  --navy:         #0d1120;
  --navy-mid:     #141929;
  --navy-light:   #1a2035;
  --navy-card:    #1f2640;
  --navy-border:  #2a3352;
  --gold:         #d4a853;
  --gold-bright:  #f0c055;
  --gold-light:   #f7d98a;
  --gold-muted:   rgba(212,168,83,0.15);
  --green:        #22c55e;
  --text-white:   #f1f5ff;
  --text-light:   #c8d2e8;
  --text-muted:   #7d8fad;
  --text-dim:     #4d5e7a;
  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:    0 6px 32px rgba(0,0,0,0.45);
  --shadow-lg:    0 12px 56px rgba(0,0,0,0.6);
  --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: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Containers --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Section spacing --- */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* --- Typography helpers --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* --- Utility --- */
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* --- Badge 18+ --- */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: -0.3px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,168,83,0.25);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,83,0.40);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy-border);
  color: var(--text-muted);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 32, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.55); }

.header-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  /* Invert for dark background — logo has transparent bg, text is gold so fine as-is */
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover { color: var(--text-white); background: var(--navy-light); }
.site-nav a.active { color: var(--gold); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO — Split layout (template style)
   Left: content | Right: image
   ============================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  max-height: 780px;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 0;
  background: var(--navy);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-muted);
  border: 1px solid rgba(212,168,83,0.28);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-border);
}
.hero-stat { }
.hero-stat .num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 3px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--navy-border);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,17,32,0.35) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid rgba(212,168,83,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   CASINO CARD SECTION
   Split layout: intro text left | card right
   ============================================= */
.casino-section {
  padding: 88px 0;
}
.casino-section-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.casino-section-intro .section-subtitle {
  margin-bottom: 32px;
}

.intro-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.intro-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}

/* ── Casino Card ── */
.casino-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.casino-card::before {
  /* Gold top accent bar */
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 60%, transparent 100%);
}
.casino-card:hover {
  border-color: rgba(212,168,83,0.45);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212,168,83,0.14);
}

/* Header */
.casino-card-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  background: var(--navy-light);
}
.casino-card-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 220px;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(212,168,83,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.casino-logo-box {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 54px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.20);
}
.casino-logo-box img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

.casino-card-title-area {
  flex: 1;
  min-width: 0;
}
.casino-card-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.casino-card-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}
.casino-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-muted);
  border: 1px solid rgba(212,168,83,0.35);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.casino-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.casino-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars img {
  width: 15px;
  height: 15px;
}
.rating-score {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.rating-count {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Body */
.casino-card-body {
  padding: 24px 28px 20px;
}

.bonus-highlight {
  background: linear-gradient(135deg, rgba(212,168,83,0.12) 0%, rgba(212,168,83,0.04) 100%);
  border: 1px solid rgba(212,168,83,0.28);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bonus-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.bonus-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 4px;
}
.bonus-value {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.3px;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.feat-badge:hover {
  border-color: rgba(212,168,83,0.25);
  color: var(--text-light);
}
.feat-badge.green {
  background: rgba(34,197,94,0.09);
  border-color: rgba(34,197,94,0.25);
  color: #4ade80;
}

.btn-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212,168,83,0.28);
  margin-bottom: 10px;
  text-decoration: none;
}
.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,168,83,0.45);
  filter: brightness(1.06);
}
.btn-visit svg { flex-shrink: 0; }

.btn-visit-note {
  font-size: 0.69rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}
.btn-visit-note a {
  color: var(--text-dim);
  text-decoration: underline;
}
.btn-visit-note a:hover { color: var(--gold); }

/* Footer disclaimer */
.casino-card-footer {
  background: rgba(0,0,0,0.20);
  border-top: 1px solid var(--navy-border);
  padding: 11px 24px;
  font-size: 0.68rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.55;
}
.casino-card-footer svg { flex-shrink: 0; margin-top: 1px; }

/* =============================================
   FULL-WIDTH CTA BANNER (like template's terra band)
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, #1e2a10 0%, #2a3d16 50%, #1a2a0e 100%);
  border-top: 1px solid rgba(212,168,83,0.15);
  border-bottom: 1px solid rgba(212,168,83,0.15);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-band-text h2 em { font-style: normal; color: var(--gold); }
.cta-band-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cta-band-action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* =============================================
   HOW WE RATE — 3 column cards (template style)
   ============================================= */
.how-rate-section {
  padding: 88px 0;
  background: var(--navy-light);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.criteria-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: border-color var(--transition), transform var(--transition);
}
.criteria-card:hover {
  border-color: rgba(212,168,83,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.criteria-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-muted);
  border: 1px solid rgba(212,168,83,0.20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.criteria-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.criteria-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.criteria-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* =============================================
   FEATURE SECTION — Two column (template style)
   Left: big text + checklist | Right: image
   ============================================= */
.feature-section {
  padding: 88px 0;
}
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }

.feature-text .section-title { margin-bottom: 18px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}
.feature-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  border: 1px solid rgba(212,168,83,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}
.feature-list-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.feature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(13,17,32,0.92);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   STATS / TRUST SECTION — Dark background
   (like template's dark testimonial band)
   ============================================= */
.stats-section {
  padding: 80px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.stats-header {
  text-align: center;
  margin-bottom: 56px;
}
.stats-header .section-subtitle { margin: 0 auto; text-align: center; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-box {
  background: var(--navy-card);
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-box:hover { background: var(--navy-light); }
.stat-box .big-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .big-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   FAQ SECTION — Two column (like template)
   ============================================= */
.faq-section {
  padding: 88px 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-intro .section-title { margin-bottom: 16px; }
.faq-intro .section-subtitle { margin-bottom: 32px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:not(:last-child) { margin-bottom: 8px; }
.faq-item.open { border-color: rgba(212,168,83,0.30); }

.faq-question {
  width: 100%;
  background: var(--navy-card);
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--navy-light); }
.faq-item.open .faq-question { background: var(--navy-light); }

.faq-q-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  background: var(--navy-card);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 4px;
}
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* =============================================
   18+ DISCLAIMER
   ============================================= */
.disclaimer-section { padding: 40px 0; }
.disclaimer-box {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.disclaimer-box .badge-18 { flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.disclaimer-box a { color: var(--gold); text-decoration: underline; }
.disclaimer-box strong { color: var(--text-muted); font-weight: 600; }

/* =============================================
   FOOTER — Multi-column (like template)
   ============================================= */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding-top: 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-brand .logo { margin-bottom: 18px; line-height: 0; }
.footer-brand .logo img { height: 48px; }
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

/* Responsible Logos */
.responsible-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--navy-border);
}
.responsible-section h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.responsible-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.responsible-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
  border-radius: var(--radius-sm);
}
.responsible-logo-link:hover { opacity: 1; transform: translateY(-2px); }
.responsible-logo-link img { height: 40px; width: auto; object-fit: contain; }
.responsible-logo-link.tall img { height: 48px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.77rem;
  color: var(--text-dim);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.77rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* =============================================
   COOKIE BAR
   ============================================= */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-card);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.65);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  padding: 20px 0;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-emoji { font-size: 1.8rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.cookie-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-ok {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-ok:hover { background: var(--gold-bright); }
.btn-cookie-no {
  padding: 10px 18px;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-no:hover { border-color: var(--text-muted); color: var(--text-white); }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--navy-border);
}
.policy-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 10px;
}
.policy-page-hero .updated { font-size: 0.8rem; color: var(--text-dim); }

.policy-content {
  padding: 56px 0 80px;
  max-width: 800px;
}
.policy-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 40px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-border);
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul, .policy-content ol { margin: 0 0 16px 20px; }
.policy-content li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy-content a { color: var(--gold); }
.policy-content strong { color: var(--text-light); font-weight: 600; }

.policy-toc {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.policy-toc h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.policy-toc ol { margin-left: 18px; }
.policy-toc li { font-size: 0.875rem; margin-bottom: 6px; }
.policy-toc a { color: var(--text-muted); transition: color var(--transition); }
.policy-toc a:hover { color: var(--gold); }

/* =============================================
   RESPONSIBLE GAMBLING PAGE
   ============================================= */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.rg-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: border-color var(--transition);
}
.rg-card:hover { border-color: rgba(212,168,83,0.30); }
.rg-card-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.rg-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}
.rg-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.rg-card .phone-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-left { padding: 64px 0 40px; }
  .hero-right { height: 380px; }

  .casino-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .casino-section-intro { max-width: 100%; }

  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-inner.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    padding: 24px 32px;
    gap: 4px;
    z-index: 999;
    border-top: 1px solid var(--navy-border);
    overflow-y: auto;
  }
  .site-nav.open a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--navy-border);
  }

  .criteria-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 40px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-band-action { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-band-action .btn { width: 100%; justify-content: center; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: flex-start; }
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-left { padding: 48px 0 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 0; }
  .header-actions .btn { display: none; }
  .cta-band { padding: 32px 0; }
  .cta-band-text h2 { font-size: 1.35rem; }
  .cta-band-text p { font-size: 0.85rem; }
}
