/* ============================================================
   PlataformaPlayNow.com — Hoja de estilos principal
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg: #0a0e1a;
  --surface: #0f1623;
  --card: #141e30;
  --card-hover: #1a2740;
  --accent: #00c896;
  --accent-dim: rgba(0, 200, 150, 0.1);
  --accent-border: rgba(0, 200, 150, 0.25);
  --accent-hover: #00b384;
  --accent-glow: rgba(0, 200, 150, 0.2);
  --text: #f0f4f8;
  --text-secondary: #cbd5e1;
  --muted: #64748b;
  --border: #1e293b;
  --border-light: #263347;
  --radius-card: 14px;
  --radius-btn: 7px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 64px;
  --max-w: 1140px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 4px 24px rgba(0, 200, 150, 0.25);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ---- 18+ Floating Badge ---- */
.badge-18plus {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 8000;
  background: #dc2626;
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(220, 38, 38, 0.4);
  line-height: 1;
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 14, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.88; color: inherit; }
.nav-logo-icon {
  display: block;
  flex-shrink: 0;
}
.nav-logo-word {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-pre {
  font-weight: 400;
  color: #64748b;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 14, 26, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

/* ---- Hero — Split Editorial ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 56fr 44fr;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0f1e35;
  background-image: url('../img/playnow-hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.22) saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 14, 26, 0.96) 0%,
    rgba(10, 14, 26, 0.78) 48%,
    rgba(10, 14, 26, 0.88) 100%
  );
}
.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vh, 100px) clamp(24px, 4vw, 56px) clamp(48px, 8vh, 100px) clamp(24px, 6vw, 80px);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-claim {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-claim-divider { color: var(--border-light); }

/* Hero right — stat panel */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 6vh, 80px) clamp(24px, 6vw, 80px) clamp(48px, 6vh, 80px) clamp(16px, 3vw, 32px);
}
.hero-stats {
  background: rgba(20, 30, 48, 0.75);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 36px 32px;
  width: 100%;
  max-width: 320px;
}
.hero-stats-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ---- Betsson Banner ---- */
.section-banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 52px clamp(20px, 4vw, 40px);
}
.section-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-eyebrow-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 40px;
}

/* Casino Banner card */
.casino-banner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.casino-banner:hover {
  box-shadow: 0 8px 48px rgba(0, 200, 150, 0.14);
  border-left-color: var(--accent-hover);
}
.casino-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.casino-logo-img {
  max-width: 110px;
  max-height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.casino-rating {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.casino-rating-score {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.casino-rating-max {
  font-size: 12px;
  color: var(--muted);
}
.casino-rating-stars {
  font-size: 13px;
  color: #fbbf24;
  letter-spacing: 1px;
}
.casino-info {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.casino-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.casino-bonus {
  color: var(--accent);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
}
.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.casino-tag {
  background: rgba(0, 200, 150, 0.07);
  border: 1px solid rgba(0, 200, 150, 0.18);
  color: var(--text-secondary);
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
}
.casino-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border-left: 1px solid var(--border);
  min-width: 168px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0a0e1a;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #0a0e1a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}
.casino-cta-note {
  font-size: 10.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

/* ---- Checklist Section ---- */
.checklist-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.checklist-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.checklist-intro {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 56px) clamp(48px, 6vw, 80px) clamp(24px, 6vw, 80px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 20px;
}
.checklist-intro-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  max-width: 400px;
}
.checklist-items {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 6vw, 80px) clamp(32px, 4vw, 56px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
}
.checklist-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  transition: transform 0.2s;
}
.checklist-item:hover .checklist-item-icon { transform: scale(1.05); }
.checklist-item-title {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 3px;
}
.checklist-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Editorial Section ---- */
.editorial-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.editorial-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(64px, 8vh, 104px) clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.editorial-body .section-label { margin-bottom: 12px; }
.editorial-body h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}
.editorial-body p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 22px;
}
.editorial-body p:last-child { margin-bottom: 0; }
.editorial-sidebar { padding-top: 60px; }
.editorial-pullquote {
  border-left: 3px solid var(--accent);
  background: var(--card);
  padding: 22px 24px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 28px;
}
.editorial-pullquote p {
  font-family: var(--font-head);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.editorial-sidebar-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
  padding: 18px;
  background: var(--card);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.editorial-sidebar-note strong { color: var(--text-secondary); }

/* ---- FAQ ---- */
.faq-section { background: var(--bg); }
.faq-container {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(72px, 10vh, 112px) clamp(20px, 4vw, 40px);
}
.faq-head {
  margin-bottom: 56px;
}
.faq-head .section-label { margin-bottom: 12px; }
.faq-head .section-title { margin: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  line-height: 1;
  transition: all 0.3s;
  font-style: normal;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.72;
}

/* ---- Footer ---- */
footer {
  background: #070b14;
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 40px) 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-brand .footer-logo-text:hover { opacity: 0.82; }
.footer-brand .footer-logo-text .nav-logo-word {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1;
}
.footer-brand .footer-logo-text .nav-logo-pre {
  font-weight: 400;
  color: #64748b;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
}
.footer-nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a {
  color: var(--text-secondary);
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--text); }

/* Responsible gambling logos */
.footer-responsible {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--border);
}
.footer-responsible-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.75;
  flex-shrink: 0;
}
.footer-logo-link:hover { opacity: 1; transform: translateY(-1px); }
.footer-logo-link img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-logo-sep {
  width: 1px;
  height: 28px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* Disclaimer */
.footer-disclaimer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--border);
}
.footer-disclaimer p {
  font-size: 11.5px;
  color: #3d4e65;
  line-height: 1.72;
}
.footer-disclaimer strong { color: #4b5f7a; }
.footer-disclaimer a { color: #4b5f7a; text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--muted); }

/* Copyright bar */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; color: var(--muted); opacity: 0.55; }
.footer-age-badge {
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ---- Cookie Consent Bar ---- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #141e30;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.5);
  padding: 14px clamp(16px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-icon { font-size: 20px; flex-shrink: 0; }
.cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 180px;
  line-height: 1.5;
}
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--accent);
  color: #0a0e1a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--accent-hover); }
.btn-cookie-decline {
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 5px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cookie-decline:hover { border-color: var(--muted); color: var(--text); }

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ---- Policy / Inner Pages ---- */
.inner-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 40px) clamp(40px, 5vh, 64px);
}
.inner-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.inner-header .page-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}
.inner-header h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.inner-header .inner-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.inner-content {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 40px);
}
.inner-content h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.inner-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.inner-content p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.76;
  margin-bottom: 18px;
}
.inner-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inner-content ul li {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.65;
}
.inner-content a { text-decoration: underline; text-underline-offset: 2px; }
.inner-content .highlight-box {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.inner-content .highlight-box p {
  margin: 0;
  font-size: 14.5px;
}

/* ---- Juego Responsable page extras ---- */
.help-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 24px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.help-card-icon { font-size: 32px; flex-shrink: 0; }
.help-card-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.help-card-body p {
  font-size: 14px;
  margin: 0;
  color: var(--muted);
}
.help-card-body a { font-size: 14px; }
.hotline-banner {
  background: linear-gradient(135deg, #0d2d1e, #0f3024);
  border: 1px solid rgba(0, 200, 150, 0.25);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  margin: 28px 0;
}
.hotline-banner .hotline-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hotline-banner p {
  font-size: 13px;
  margin: 6px 0 0;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: clamp(56px, 8vw, 80px) 24px 36px;
    order: 1;
  }
  .hero-right {
    padding: 0 24px 56px;
    order: 2;
  }
  .hero-stats { max-width: 100%; }

  .casino-banner {
    grid-template-columns: 1fr;
    border-left: 4px solid var(--accent);
  }
  .casino-brand {
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .casino-info { padding: 20px 24px; }
  .casino-cta-col {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: auto;
  }
  .btn-primary { width: auto; }

  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-intro {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 48px 24px 36px;
  }
  .checklist-items { padding: 32px 24px 48px; }

  .editorial-grid { grid-template-columns: 1fr; gap: 36px; }
  .editorial-sidebar { padding-top: 0; }

  .footer-top { flex-direction: column; gap: 28px; }
  .footer-nav-col ul { gap: 8px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-claim { flex-wrap: wrap; gap: 8px; }
  .casino-cta-col { flex-direction: column; align-items: stretch; }
  .btn-primary { width: 100%; }
}
@media (min-width: 641px) {
  .mobile-nav { display: none !important; }
}

/* ---- Focus Styles (Accessibility) ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
