/* =============================================
   ZONA DE JUEGO AR — Design System v2
   Theme: Dark Charcoal + Teal + Orange
   ============================================= */

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

/* ---- Variables ---- */
:root {
  --bg-primary:    #13141a;
  --bg-secondary:  #1b1c24;
  --bg-card:       #20212c;
  --bg-card-hover: #282936;
  --bg-elevated:   #2a2b38;

  --cyan:          #14b8a6;
  --cyan-dark:     #0d9488;
  --cyan-light:    #5eead4;
  --cyan-faint:    rgba(20, 184, 166, 0.08);
  --cyan-border:   rgba(20, 184, 166, 0.2);
  --cyan-border-hv:rgba(20, 184, 166, 0.5);

  --orange:        #f97316;
  --orange-dark:   #ea580c;
  --orange-faint:  rgba(249, 115, 22, 0.08);
  --orange-border: rgba(249, 115, 22, 0.25);

  --text-primary:  #eef0f6;
  --text-secondary:#9ba3bf;
  --text-muted:    #5c6480;

  --red:           #ef4444;
  --red-faint:     rgba(239, 68, 68, 0.08);
  --red-border:    rgba(239, 68, 68, 0.25);
  --white:         #ffffff;

  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 28px rgba(0, 0, 0, 0.45);
  --shadow-cyan: 0 0 24px rgba(20, 184, 166, 0.18);
  --shadow-lift: 0 8px 40px rgba(0, 0, 0, 0.5);
  --transition:  all 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', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--cyan-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-secondary); line-height: 1.75; }

.text-cyan   { color: var(--cyan); }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.section    { padding: 100px 0; }
.section-sm { padding: 40px 0; }
.section-alt { background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 600px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-faint);
  border: 1px solid var(--cyan-border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #000;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
  color: #000; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20,184,166,0.4);
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--cyan);
  border: 1.5px solid var(--cyan-border);
}
.btn-outline:hover {
  background: var(--cyan-faint); color: var(--cyan-light);
  border-color: var(--cyan);
}
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05); color: var(--text-primary);
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.83rem; }

/* ---- Age Gate ---- */
.age-gate-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 52px 42px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-cyan), 0 0 80px rgba(20,184,166,0.08);
  animation: scaleIn 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes scaleIn {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.age-gate-badge {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem; font-weight: 900; color: #000;
}
.age-gate-box h2 { margin-bottom: 10px; }
.age-gate-box > p { margin-bottom: 28px; font-size: 0.9rem; }
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; }
.age-gate-buttons .btn { min-width: 130px; justify-content: center; }
.age-gate-disclaimer { margin-top: 18px; font-size: 0.73rem; color: var(--text-muted); }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(19,20,26,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 28px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.site-logo img { display: block; height: 36px; width: auto; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #000;
}
.logo-text { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.logo-text span { color: var(--cyan); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
  padding: 7px 13px; border-radius: var(--radius-xs); transition: var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--text-primary); background: rgba(255,255,255,0.06);
}

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

/* ---- Info Pill Bar ---- */
.info-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 10px 0;
}
.info-bar-inner {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.info-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-secondary);
}
.info-pill .pill-icon { font-size: 0.85rem; }
.info-pill.pill-cyan { color: var(--cyan); background: var(--cyan-faint); border-color: var(--cyan-border); }

/* ---- Hero (Editorial Split) ---- */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--cyan); border-radius: 1px;
}
.hero-left h1 {
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
}
.hero-left h1 strong { color: var(--cyan); font-weight: 900; }
.hero-left > p {
  font-size: 1.05rem; margin-bottom: 32px;
  color: rgba(238,240,246,0.72);
  max-width: 500px;
}
.hero-actions {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
  margin-bottom: 36px;
}
.hero-actions .btn:first-child { min-width: 220px; justify-content: center; }
.hero-actions .btn:last-child  { min-width: 160px; }

.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.trust-chip {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: var(--text-muted);
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}

/* Hero right: preview card */
.hero-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-cyan);
  position: relative;
  overflow: hidden;
}
.hero-preview-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
}
.preview-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--cyan);
  background: var(--cyan-faint); border: 1px solid var(--cyan-border);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 18px;
}
.preview-logo-wrap {
  width: 120px; height: 54px;
  background: #fff; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  padding: 8px 12px; margin-bottom: 18px;
}
.preview-logo-wrap img { max-width: 100%; max-height: 38px; object-fit: contain; }
.preview-score {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px;
}
.preview-score-num { font-size: 2.8rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.preview-score-stars { color: var(--cyan); font-size: 0.85rem; }
.preview-bonus {
  font-size: 0.85rem; font-weight: 600; color: var(--orange);
  margin-bottom: 20px; line-height: 1.4;
}
.preview-card-cta { width: 100%; text-align: center; justify-content: center; }

/* ---- Casino Featured Card ---- */
.casino-featured {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
  position: relative; overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-cyan);
  transition: var(--transition);
}
.casino-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light), var(--orange));
}
.casino-featured::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(20,184,166,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.casino-featured:hover {
  border-color: var(--cyan-border-hv);
  box-shadow: var(--shadow-lift), var(--shadow-cyan);
  transform: translateY(-3px);
}

.featured-logo-wrap {
  width: 150px; height: 72px;
  background: #fff; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  padding: 10px 16px; flex-shrink: 0;
}
.featured-logo-wrap img { max-width: 100%; max-height: 52px; object-fit: contain; }

.featured-body {}
.featured-name {
  font-size: 1.3rem; font-weight: 800; color: var(--text-primary);
  margin-bottom: 4px;
}
.featured-bonus {
  font-size: 1rem; font-weight: 600; color: var(--orange);
  margin-bottom: 10px;
}
.featured-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.featured-right {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px; flex-shrink: 0;
}
.featured-score { text-align: center; }
.featured-score-num { font-size: 2.4rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.featured-score-stars { color: var(--cyan); font-size: 0.8rem; margin-top: 2px; }
.featured-ribbon {
  position: absolute; top: 16px; right: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #000; font-size: 0.65rem; font-weight: 800;
  padding: 3px 14px 3px 10px; border-radius: 3px 0 0 3px;
  letter-spacing: 0.5px; text-transform: uppercase;
}

/* ---- Casino Compact Grid ---- */
.casino-compact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.casino-compact {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--transition); position: relative;
}
.casino-compact:hover {
  border-color: var(--cyan-border);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.compact-header { display: flex; align-items: center; gap: 14px; }
.compact-logo-wrap {
  width: 90px; height: 44px;
  background: #fff; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  padding: 6px 10px; flex-shrink: 0;
}
.compact-logo-wrap img { max-width: 100%; max-height: 32px; object-fit: contain; }
.compact-name { font-size: 1rem; font-weight: 700; }
.compact-stars { color: var(--cyan); font-size: 0.72rem; }
.compact-bonus {
  font-size: 0.85rem; font-weight: 600; color: var(--orange);
  padding: 6px 10px;
  background: var(--orange-faint); border: 1px solid var(--orange-border);
  border-radius: var(--radius-xs);
}
.compact-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.compact-tag {
  font-size: 0.7rem; color: var(--text-muted); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 3px 9px;
}
.compact-rank {
  position: absolute; top: 10px; right: 12px;
  font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ---- Tags ---- */
.tag {
  font-size: 0.7rem; padding: 3px 9px; border-radius: 20px; font-weight: 500;
  background: rgba(255,255,255,0.05); color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.07);
}
.tag-cyan   { background: var(--cyan-faint); color: var(--cyan); border-color: var(--cyan-border); }
.tag-orange { background: var(--orange-faint); color: var(--orange); border-color: var(--orange-border); }
/* legacy green/gold aliases */
.tag-green  { background: var(--cyan-faint); color: var(--cyan); border-color: var(--cyan-border); }
.tag-gold   { background: var(--orange-faint); color: var(--orange); border-color: var(--orange-border); }

/* ---- Trust Checklist ---- */
.trust-list { display: flex; flex-direction: column; gap: 0; }
.trust-item-editorial {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-item-editorial:last-child { border-bottom: none; }
.trust-check {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #000; font-weight: 900;
  flex-shrink: 0; margin-top: 2px;
}
.trust-content h4 { margin-bottom: 6px; font-size: 1.05rem; }
.trust-content p  { font-size: 0.9rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; cursor: pointer;
  font-size: 0.95rem; font-weight: 500; color: var(--text-primary);
  transition: var(--transition); user-select: none;
}
.faq-question:hover { color: var(--cyan); }
.faq-toggle {
  width: 26px; height: 26px;
  background: var(--cyan-faint); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 1.2rem; flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 18px; font-size: 0.88rem; color: var(--text-secondary); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- Payment Methods (slim) ---- */
.payment-slim {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.payment-label {
  font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
  margin-right: 4px; flex-shrink: 0;
}
.payment-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition);
}
.payment-chip:hover { border-color: var(--cyan-border); color: var(--text-primary); }
.payment-chip .p-icon { font-size: 1rem; }

/* ---- Criteria (3 cards) ---- */
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.criteria-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); padding: 28px 22px; transition: var(--transition);
}
.criteria-card:hover { border-color: var(--cyan-border); box-shadow: var(--shadow-cyan); }
.criteria-num {
  font-size: 2.5rem; font-weight: 900; color: var(--cyan);
  opacity: 0.25; line-height: 1; margin-bottom: 12px;
}
.criteria-card h4 { margin-bottom: 8px; }
.criteria-card p  { font-size: 0.87rem; }

/* ---- Disclaimer Bar ---- */
.disclaimer-bar {
  background: rgba(249,115,22,0.05);
  border-top: 1px solid var(--orange-border);
  border-bottom: 1px solid var(--orange-border);
  padding: 16px 0;
}
.disclaimer-inner { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-muted); }
.badge-18 {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; color: #fff;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 70px;
}
.footer-grid-v2 {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand .site-logo img { height: 40px; }
.footer-brand p { font-size: 0.85rem; max-width: 270px; margin-bottom: 18px; }
.footer-col h5 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 14px; font-weight: 600;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-secondary); }
.footer-col ul li a:hover { color: var(--cyan); }

.hotline-badge {
  background: rgba(20,184,166,0.08);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--cyan); font-weight: 600;
}

/* Responsible logos — 2×3 grid */
.footer-resp-section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-resp-label {
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px;
  font-weight: 500; letter-spacing: 0.3px;
}
.resp-logo-grid {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 10px; width: fit-content;
}
.resp-logo {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); padding: 9px 14px;
  display: flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 600; color: var(--text-secondary);
  text-decoration: none; transition: var(--transition);
}
.resp-logo:hover { border-color: var(--cyan-border); color: var(--text-primary); }
.resp-logo-icon { font-size: 1rem; }
.badge-18-footer {
  background: var(--red); color: #fff;
  font-size: 0.8rem; font-weight: 900;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--cyan); }
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--cyan-border);
  padding: 18px 22px; z-index: 5000;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; gap: 18px;
  max-width: 1180px; margin: 0 auto; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text p { font-size: 0.83rem; margin: 0; }
.cookie-text a { color: var(--cyan); font-weight: 500; }
.cookie-buttons { display: flex; gap: 9px; flex-shrink: 0; }

/* ---- Review Pages ---- */
.review-hero {
  position: relative; padding: 80px 0 56px; overflow: hidden;
}
.review-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.18) saturate(0.6);
}
.review-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,20,26,0.4) 0%, var(--bg-primary) 100%);
}
.review-hero-content { position: relative; z-index: 2; }
.review-header { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 24px; }
.review-logo-box {
  width: 140px; height: 72px;
  background: #fff; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 10px 14px; flex-shrink: 0;
}
.review-logo-box img { max-width: 100%; max-height: 52px; object-fit: contain; }
.review-title-area h1 { margin-bottom: 5px; }
.review-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 9px; }
.review-score-box {
  background: var(--bg-card); border: 2px solid var(--cyan);
  border-radius: var(--radius-sm); padding: 18px 24px; text-align: center; flex-shrink: 0;
}
.review-score-number { font-size: 2.8rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.review-score-stars  { color: var(--cyan); font-size: 0.85rem; margin-top: 3px; }
.review-score-label  { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

.review-cta-box {
  background: linear-gradient(135deg, var(--cyan-faint), rgba(249,115,22,0.04));
  border: 1px solid var(--cyan-border); border-radius: var(--radius-md);
  padding: 28px; text-align: center; margin: 28px 0;
}
.review-cta-box .bonus-amount { font-size: 1.6rem; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.review-cta-box p { font-size: 0.83rem; margin-bottom: 16px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 26px 0; }
.info-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xs); padding: 14px 16px; }
.info-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.info-value { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.pros-box, .cons-box { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 22px; }
.pros-box { border-left: 3px solid var(--cyan); }
.cons-box { border-left: 3px solid var(--red); }
.pros-box h4 { color: var(--cyan); margin-bottom: 12px; }
.cons-box h4 { color: var(--red); margin-bottom: 12px; }
.pros-box li, .cons-box li { font-size: 0.86rem; color: var(--text-secondary); padding: 5px 0 5px 18px; position: relative; }
.pros-box li::before { content: '✓'; color: var(--cyan); position: absolute; left: 0; }
.cons-box li::before { content: '✗'; color: var(--red); position: absolute; left: 0; }

/* Review layout variants */
.review-layout         { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.review-layout-left    { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.review-layout-single  { display: grid; grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; }
.review-sidebar { position: sticky; top: 88px; }

.sidebar-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 22px; margin-bottom: 18px; }
.sidebar-card h4 { margin-bottom: 12px; font-size: 0.92rem; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-score-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.83rem; }
.sidebar-score-row:last-child { border-bottom: none; }
.score-bar-wrap { display: flex; align-items: center; gap: 7px; }
.score-bar { width: 70px; height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--orange)); border-radius: 3px; }
.score-val { font-size: 0.78rem; color: var(--cyan); font-weight: 600; width: 26px; text-align: right; }

.content-section { margin-bottom: 38px; }
.content-section h3 { margin-bottom: 12px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,0.06); }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.data-table th, .data-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
.data-table th { background: rgba(20,184,166,0.06); color: var(--cyan); font-weight: 600; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.5px; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.highlight-box {
  background: var(--cyan-faint); border: 1px solid var(--cyan-border);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 18px 0;
}

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-muted); padding: 12px 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: var(--text-muted); }

/* ---- Policy Pages ---- */
.policy-page { max-width: 800px; margin: 0 auto; padding: 60px 22px; }
.policy-page h1 { margin-bottom: 6px; }
.policy-page .last-updated { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 38px; }
.policy-page h2 { font-size: 1.25rem; margin: 34px 0 10px; color: var(--cyan); }
.policy-page h3 { font-size: 1rem; margin: 22px 0 7px; }
.policy-page p  { margin-bottom: 12px; font-size: 0.92rem; }
.policy-page ul { margin: 10px 0 12px 20px; list-style: disc; }
.policy-page ul li { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 5px; }

/* ---- Juego Responsable ---- */
.responsible-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; margin: 26px 0; }
.responsible-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 26px 22px; }
.responsible-card h4 { margin-bottom: 9px; }
.responsible-card p { font-size: 0.87rem; }
.self-test { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius-md); padding: 26px; margin: 26px 0; }
.self-test h3 { margin-bottom: 14px; }
.self-test li { font-size: 0.88rem; color: var(--text-secondary); padding: 7px 0 7px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); position: relative; }
.self-test li::before { content: '?'; color: var(--cyan); position: absolute; left: 0; font-weight: 700; }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 22px; z-index: 999;
  flex-direction: column; gap: 3px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-secondary); font-size: 0.93rem; padding: 11px 14px; border-radius: var(--radius-xs); font-weight: 500; }
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }

/* ---- Minor (acceso-restringido) page ---- */
.minor-full {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 40px 20px;
  background: radial-gradient(ellipse at center top, rgba(239,68,68,0.07) 0%, var(--bg-primary) 60%);
}
.minor-content {
  max-width: 540px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--red-border);
  border-radius: var(--radius-lg); padding: 50px 38px;
}
.minor-badge {
  background: var(--red); color: #fff;
  font-size: 1.4rem; font-weight: 900;
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.minor-content h1 { font-size: 1.7rem; margin-bottom: 12px; }
.minor-content > p { margin-bottom: 14px; font-size: 0.92rem; }
.resource-links { display: flex; flex-direction: column; gap: 9px; margin-top: 24px; }
.resource-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-primary); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xs); padding: 12px 16px;
  color: var(--text-secondary); font-size: 0.86rem; text-align: left;
  text-decoration: none; transition: var(--transition);
}
.resource-link:hover { border-color: var(--cyan-border); color: var(--text-primary); }
.resource-link .rl-icon { font-size: 1.4rem; flex-shrink: 0; }
.resource-link .rl-text strong { display: block; color: var(--text-primary); margin-bottom: 1px; font-size: 0.86rem; }

/* ---- Misc ---- */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(20,184,166,0.3), transparent); margin: 18px 0; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.83rem; color: var(--text-muted); margin-bottom: 18px; }
.back-link:hover { color: var(--cyan); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; }
  .footer-grid-v2 .footer-brand { grid-column: 1 / -1; }
  .review-layout, .review-layout-left { grid-template-columns: 1fr; }
  .review-layout-left .review-sidebar { order: -1; }
  .review-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-preview-card { max-width: 400px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .casino-featured { grid-template-columns: 1fr; gap: 18px; }
  .featured-right { flex-direction: row; justify-content: space-between; }
  .casino-compact-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid-v2 { grid-template-columns: 1fr; gap: 28px; }
  .resp-logo-grid { grid-template-columns: repeat(2, auto); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .age-gate-buttons { flex-direction: column; }
  .age-gate-buttons .btn { width: 100%; }
  .cookie-inner { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons .btn { flex: 1; justify-content: center; }
  .review-sidebar { display: flex; flex-direction: column; }
  .review-header { flex-direction: column; align-items: flex-start; }
  .info-bar-inner { gap: 6px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .casino-featured { padding: 24px 18px; }
  .policy-page { padding: 40px 14px; }
  .minor-content { padding: 36px 20px; }
  .resp-logo-grid { grid-template-columns: repeat(2, auto); }
}
