/* ============================================================
   ApuestasSeguras AR — Main Stylesheet
   Dark luxury theme: navy + gold
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2a;
  --navy-light: #132236;
  --navy-mid:   #1a2f45;
  --navy-card:  #162030;
  --gold:       #f0a500;
  --gold-dark:  #c88800;
  --gold-light: #ffc233;
  --white:      #ffffff;
  --text:       #cbd5e1;
  --text-muted: #8a9ab5;
  --green:      #22c55e;
  --red:        #ef4444;
  --border:     rgba(240,165,0,.18);
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.45);
  --transition: .22s ease;
  --font:       'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { color: var(--white); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); font-size: .9rem; }

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span { color: var(--gold); }
.site-logo img,
.site-logo .site-logo-mark {
  height: 32px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.footer-brand .site-logo img,
.footer-brand .site-logo .site-logo-mark {
  height: 34px;
  max-width: 240px;
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--gold); }

.btn-header {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
}
.btn-header:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; border-radius: 2px; transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,165,0,.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-sm { padding: 9px 18px; font-size: .87rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.28);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 18px; }
.hero p { color: var(--text); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat span { font-size: .82rem; color: var(--text-muted); }

/* ---------- Casino Cards ---------- */
.casino-list { display: flex; flex-direction: column; gap: 20px; }

.casino-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px 0 0 4px;
}

.casino-card:hover {
  border-color: rgba(240,165,0,.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.casino-card.top-pick { border-color: rgba(240,165,0,.35); }

.card-rank {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .5;
  text-align: center;
}

.card-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-logo { height: 32px; width: auto; max-width: 120px; object-fit: contain; }

.card-bonus {
  font-size: .88rem;
  color: var(--text);
}
.card-bonus strong { color: var(--gold); font-size: 1rem; }

.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }

.tag {
  font-size: .73rem;
  padding: 3px 9px;
  border-radius: 99px;
  font-weight: 600;
}
.tag-green { background: rgba(34,197,94,.12); color: #4ade80; border: 1px solid rgba(34,197,94,.2); }
.tag-blue  { background: rgba(59,130,246,.12); color: #93c5fd; border: 1px solid rgba(59,130,246,.2); }
.tag-gold  { background: rgba(240,165,0,.12);  color: var(--gold); border: 1px solid rgba(240,165,0,.2); }

.card-rating {
  text-align: center;
  min-width: 64px;
}
.rating-number {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stars { color: var(--gold); font-size: .78rem; margin: 4px 0 2px; letter-spacing: 1px; }
.rating-label { font-size: .7rem; color: var(--text-muted); }

.card-action { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Evaluation Criteria ---------- */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.criteria-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.criteria-card:hover { border-color: rgba(240,165,0,.35); transform: translateY(-2px); }

.criteria-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.criteria-card h3 { margin-bottom: 8px; }
.criteria-card p { font-size: .88rem; color: var(--text-muted); }

/* ---------- How we rate section ---------- */
.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.rating-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.rating-item-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-bar-wrap { background: rgba(255,255,255,.06); border-radius: 99px; height: 8px; overflow: hidden; }
.rating-bar { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }

/* ---------- Payment Methods ---------- */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.payment-chip {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.payment-chip:hover { border-color: rgba(240,165,0,.4); color: var(--white); }
.payment-icon { font-size: 1.4rem; }

/* ---------- Info Sections ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }

.info-text h2 { margin-bottom: 16px; }
.info-text p { color: var(--text); margin-bottom: 16px; }
.info-text ul { display: flex; flex-direction: column; gap: 10px; }
.info-text ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .93rem;
}
.info-text ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.info-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(240,165,0,.35); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: .97rem;
  font-weight: 600;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 18px; }

/* ---------- Brand Page Hero ---------- */
.brand-hero {
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}

.brand-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-logo-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  flex-shrink: 0;
}
.brand-logo-wrap img { height: 48px; width: auto; }

.brand-meta { flex: 1; min-width: 280px; }
.brand-meta h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.brand-meta .brand-desc { color: var(--text); margin-bottom: 18px; font-size: 1rem; }

.brand-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.brand-badge {
  background: rgba(240,165,0,.1);
  border: 1px solid rgba(240,165,0,.25);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
}
.brand-badge.green {
  background: rgba(34,197,94,.1);
  border-color: rgba(34,197,94,.25);
  color: #4ade80;
}

.brand-rating-big {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.brand-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.brand-score-label { font-size: .8rem; color: var(--text-muted); }
.brand-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- Brand Content Sections ---------- */
.brand-content { padding: 48px 0; }

.brand-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.brand-main { display: flex; flex-direction: column; gap: 28px; }

.brand-section {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.brand-section h2 { font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* Bonus Table */
.bonus-table { width: 100%; border-collapse: collapse; }
.bonus-table td {
  padding: 10px 14px;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.bonus-table td:first-child { color: var(--text-muted); width: 40%; }
.bonus-table td:last-child { color: var(--white); font-weight: 600; }
.bonus-table tr:last-child td { border-bottom: none; }

/* Pros Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros h3, .cons h3 { font-size: .9rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.pros h3 { color: #4ade80; }
.cons h3 { color: #f87171; }
.pros ul li, .cons ul li {
  font-size: .88rem;
  color: var(--text);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pros ul li::before { content: '+'; color: #4ade80; font-weight: 700; flex-shrink: 0; }
.cons ul li::before { content: '–'; color: #f87171; font-weight: 700; flex-shrink: 0; }

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.game-chip {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
  font-size: .8rem;
  color: var(--text);
  transition: all var(--transition);
}
.game-chip:hover { border-color: rgba(240,165,0,.3); color: var(--white); }
.game-chip .game-icon { font-size: 1.6rem; margin-bottom: 4px; }

/* Brand Sidebar */
.brand-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-box h3 { font-size: 1rem; margin-bottom: 16px; color: var(--white); }

.cta-box {
  background: linear-gradient(135deg, rgba(240,165,0,.12), rgba(200,136,0,.08));
  border-color: rgba(240,165,0,.3);
  text-align: center;
}
.cta-box .btn { width: 100%; justify-content: center; margin-top: 12px; }
.cta-box .cta-bonus { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.cta-box .cta-sub { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

.license-list { display: flex; flex-direction: column; gap: 8px; }
.license-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
}
.license-item::before { content: '🛡'; font-size: .9rem; }

.method-list { display: flex; flex-direction: column; gap: 8px; }
.method-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.method-item:last-child { border-bottom: none; }
.method-name { color: var(--text); display: flex; align-items: center; gap: 6px; }
.method-detail { color: var(--text-muted); font-size: .78rem; }

/* ---------- Disclaimer Bar ---------- */
.disclaimer-bar {
  background: rgba(240,165,0,.06);
  border-top: 1px solid rgba(240,165,0,.15);
  border-bottom: 1px solid rgba(240,165,0,.15);
  padding: 14px 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
  font-size: .75rem;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #080f17;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: .85rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-responsible {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-bottom: 28px;
}
.footer-responsible h4 {
  color: var(--text-muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-align: center;
}
.responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.responsible-logos a {
  opacity: .8;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.responsible-logos a:hover { opacity: 1; }
.responsible-logos img { height: 44px; width: auto; object-fit: contain; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--text-muted); font-size: .8rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- Age Gate Modal ---------- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,15,23,.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate-overlay.hidden { display: none; }

.age-gate {
  background: var(--navy-card);
  border: 1px solid rgba(240,165,0,.35);
  border-radius: 18px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(240,165,0,.12);
}

.age-gate-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.age-gate h2 { margin-bottom: 10px; }
.age-gate p { color: var(--text-muted); font-size: .92rem; margin-bottom: 32px; line-height: 1.6; }

.age-gate-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 24px;
}

.age-gate-btns { display: flex; gap: 14px; justify-content: center; }
.age-gate-btns .btn { min-width: 140px; justify-content: center; }

.age-gate-disclaimer {
  margin-top: 24px;
  font-size: .73rem;
  color: var(--text-muted);
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22,32,48,.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  z-index: 8000;
  transform: translateY(0);
  transition: transform .35s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text { font-size: .85rem; color: var(--text); flex: 1; min-width: 220px; }
.cookie-text a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Policy Pages ---------- */
.policy-hero {
  background: var(--navy-light);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.policy-hero h1 { margin-bottom: 8px; }
.policy-hero p { color: var(--text-muted); }

.policy-body { padding: 56px 0 80px; }
.policy-content { max-width: 800px; }
.policy-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text); font-size: .94rem; line-height: 1.75; margin-bottom: 14px; }
.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.policy-content ul li { margin-bottom: 6px; }
.policy-content a { color: var(--gold); }
.policy-content strong { color: var(--white); }

/* ---------- Menores Page ---------- */
.menores-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at center, #132236 0%, #0d1b2a 70%);
}
.menores-icon { font-size: 4rem; margin-bottom: 20px; }
.menores-page h1 { margin-bottom: 14px; color: var(--white); }
.menores-page p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; font-size: .95rem; }
.menores-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto 32px;
}
.menores-link {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.menores-link:hover { border-color: rgba(240,165,0,.35); color: var(--white); }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.stat-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat-item span { font-size: .8rem; color: var(--text-muted); }

/* ---------- Ticker Banner ---------- */
.ticker-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  overflow: hidden;
  padding: 10px 0;
}
.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-text {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  padding: 0 40px;
  flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-muted);
  padding: 14px 0 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .4; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-box { flex: 1; min-width: 240px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  .info-grid { grid-template-columns: 1fr; }
  .info-grid.reverse { direction: ltr; }
}

@media (max-width: 720px) {
  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .casino-card::before { width: 100%; height: 3px; right: 0; bottom: auto; border-radius: 4px 4px 0 0; }
  .card-rank { font-size: 1rem; }
  .card-action { align-items: center; }
  .card-tags { justify-content: center; }

  .hero-stats { gap: 20px; }
  .pros-cons { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .site-nav { display: none; }
  .hamburger { display: block; }

  .age-gate { padding: 36px 24px; }
  .age-gate-btns { flex-direction: column; }
  .age-gate-btns .btn { width: 100%; }

  section { padding: 44px 0; }
  .brand-hero-inner { flex-direction: column; }
  .brand-logo-wrap { min-width: 0; width: 100%; }
}

/* Mobile nav open */
.site-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0; right: 0;
  background: rgba(13,27,42,.98);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 850;
  gap: 16px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.section-dark { background: var(--navy-light); }
.section-alt  { background: rgba(26,47,69,.4); }
