/* =============================================
   JugadasExpertas.com — Main Stylesheet
   ============================================= */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:      #edece8;
  --bg-dark:      #f8f7f5;
  --bg-card:      #ffffff;
  --bg-card2:     #f2f1ef;
  --border:       rgba(0,0,0,0.07);
  --gold:         #e11d48;
  --gold-light:   #f43f6a;
  --gold-glow:    rgba(225,29,72,0.16);
  --text:         #1a1825;
  --text-muted:   #79798e;
  --green:        #059669;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 2px 14px rgba(0,0,0,0.055);
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(8,8,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
}
.site-logo svg {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.header-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-18 {
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.header-cta {
  background: linear-gradient(135deg, var(--gold), #e09818);
  color: #000 !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
  color: #000 !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.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(0.28) saturate(0.7);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,24,0.1) 0%, rgba(8,8,24,0.6) 60%, var(--bg-dark) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,180,41,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(232,232,240,0.8);
  max-width: 600px;
  margin: 0 auto 34px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e09818);
  color: #000 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,180,41,0.4);
  color: #000 !important;
}

/* ── Casino Card — прижата к герою, мало воздуха сверху ── */
.casinos-section {
  padding: 8px 0 36px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}

.card-top-bar {
  background: linear-gradient(90deg, rgba(240,180,41,0.12), rgba(240,180,41,0.03));
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-recommended {
  background: var(--gold);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-licensed {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ── Casino Card — 3-column horizontal layout ── */
.casino-card {
  max-width: 100%;
}

/* 3 columns: logo+meta | bonus | cta */
.card-body {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 0;
  min-height: 160px;
}

/* ── Col 1: Logo + name + rating + tags ── */
.card-col-left {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
}

.card-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.card-logo-wrap img { max-height: 36px; width: auto; }

/* Casino name + inline rating */
.card-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.card-rating-inline {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars-small {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 1px;
}
.rating-score-small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
}

/* Feature tags */
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.feature-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 20px;
  color: var(--text-muted);
}

/* ── Col 2: Full bonus block ── */
.card-col-bonus {
  padding: 28px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--border);
}

.bonus-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
}
.bonus-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
}
.bonus-desc {
  font-size: 0.87rem;
  color: rgba(232,232,240,0.7);
  line-height: 1.5;
  max-width: 380px;
}
.bonus-footnote {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Col 3: CTA ── */
.card-cta {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(240,180,41,0.04) 0%, transparent 100%);
}

.btn-play {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #e09818);
  color: #000 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: 10px;
  text-align: center;
  letter-spacing: 0.8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,180,41,0.45);
  color: #000 !important;
}

.btn-play-small {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.btn-play-small a { color: var(--text-muted); font-size: 0.72rem; }
.btn-play-small a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   SECTION TYPES — varied layouts
   ══════════════════════════════════════ */

/* ── Section tag (eyebrow label) ── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Section heading shared ── */
.sec-h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.sec-h2 em { font-style: normal; color: var(--gold); }

.sec-p {
  color: rgba(232,232,240,0.78);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ══ TYPE 1: Stats Strip — очень плотно, прямо под карточкой ══ */
.stats-strip {
  padding: 0 0 72px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: 22px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: var(--bg-card2); }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ══ TYPE 2: Numbered Criteria — большой воздух, главная секция ══ */
.criteria-section {
  padding: 0 0 96px;
}
.criteria-header {
  max-width: 600px;
  margin-bottom: 52px;
}
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.criteria-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: border-color var(--transition);
}
.criteria-item:hover { border-color: rgba(240,180,41,0.35); }
.criteria-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(240,180,41,0.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.criteria-text h4 {
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 6px;
}
.criteria-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ══ TYPE 3: Bonos — компактно, плотные карточки ══ */
.bonos-section {
  padding: 0 0 52px;
}
.bonos-header { margin-bottom: 20px; }

.bonos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.bono-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.bono-card-icon { font-size: 2rem; margin-bottom: 12px; }
.bono-card h4 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.bono-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0 0 12px; }
.bono-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bono-card ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.bono-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(240,180,41,0.5);
  font-size: 0.75rem;
}

.bono-callout {
  background: linear-gradient(90deg, rgba(240,180,41,0.1), rgba(240,180,41,0.04));
  border: 1px solid rgba(240,180,41,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bono-callout-text {
  flex: 1;
  font-size: 0.92rem;
  color: rgba(232,232,240,0.9);
  min-width: 220px;
}
.bono-callout-text strong { color: var(--gold); }
.bono-callout-cta {
  background: var(--gold);
  color: #000 !important;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.bono-callout-cta:hover { background: var(--gold-light); color: #000 !important; }

/* ══ TYPE 4: Trust — максимальный воздух, акцентная секция ══ */
.trust-section {
  padding: 0 0 100px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 88px;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.trust-left .section-tag { display: block; }
.trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.trust-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-bullet-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-bullet-body h5 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 3px;
}
.trust-bullet-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.trust-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.trust-right .sec-p { font-size: 0.93rem; line-height: 1.8; }
.trust-right .sec-p + .sec-p { margin-top: 4px; }
.trust-tip {
  background: rgba(240,180,41,0.06);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: rgba(232,232,240,0.8);
  font-style: italic;
  margin-top: 20px;
}
.trust-tip strong { color: var(--gold); font-style: normal; }

/* ══ TYPE 5: Tips — сжатый, примыкает к trust ══ */
.tips-section {
  padding: 0 0 40px;
}
.tips-header { max-width: 640px; margin-bottom: 18px; }
.tips-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 0;
}
.tips-cols .sec-p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; }
.tip-callout {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.tip-callout-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
}
.tip-callout ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tip-callout ul li {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(232,232,240,0.78);
  align-items: flex-start;
  line-height: 1.45;
}
.tip-callout ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* legacy — keep for any reuse */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.info-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.info-card h4 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.info-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Mobile */
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .bonos-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 32px; }
  .tips-cols { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.5rem; }
}

/* ── Disclaimer 18+ ── */
/* disclaimer — сжатый переход к футеру */
.disclaimer-section {
  background: rgba(240,180,41,0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  margin: 12px 0 0;
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.disclaimer-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-img {
  flex-shrink: 0;
  height: 52px;
  width: auto;
}

.disclaimer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.disclaimer-text strong { color: var(--text); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Logos — single line ── */
.footer-logos-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 22px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.footer-logos-row::-webkit-scrollbar { display: none; }

/* Thin dividers between logos */
.footer-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.footer-logo-item:last-child { border-right: none; }

.footer-logo-item img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition), filter var(--transition);
  filter: brightness(0.9);
  display: block;
}
.footer-logo-item img:hover {
  opacity: 1;
  filter: brightness(1.05);
}

/* phone strip below logos */
.footer-phone-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-phone-strip .phone-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.footer-phone-strip .phone-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-phone-strip .phone-dot {
  color: var(--border);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(136,136,170,0.6);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,28,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 1.6rem; flex-shrink: 0; }

.cookie-text {
  flex: 1;
  min-width: 220px;
}
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.cookie-text p strong { color: var(--text); }
.cookie-text a { color: var(--gold); font-size: 0.82rem; }

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

.btn-cookie-accept {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-cookie-accept:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-cookie-essential {
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-cookie-essential:hover { border-color: var(--gold); color: var(--gold); }

.btn-cookie-config {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}
.btn-cookie-config:hover { color: var(--gold); }

/* ── Policy Pages — base ── */
.policy-header {
  padding: 100px 0 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.policy-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.policy-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── ph-privacy: escudo/lock — icono flotante derecha ── */
.ph-privacy {
  background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, transparent 60%);
}
.ph-privacy::before {
  content: '🔒';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(5rem, 10vw, 9rem);
  opacity: 0.07;
  pointer-events: none;
  line-height: 1;
}
.ph-privacy .ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #818cf8;
  margin-bottom: 14px;
}
.ph-privacy h1 { color: #fff; }
.ph-privacy .ph-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ph-meta-tag {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  font-size: 0.74rem;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── ph-terms: minimalista, sólo título grande + línea ── */
.ph-terms {
  padding-top: 92px;
  padding-bottom: 40px;
  background: transparent;
}
.ph-terms .ph-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.ph-terms .ph-back:hover { color: var(--gold); }
.ph-terms h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  max-width: 640px;
}
.ph-terms h1 em {
  font-style: normal;
  color: var(--gold);
}
.ph-terms .ph-divider {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  margin: 20px 0 0;
}

/* ── ph-cookies: centrado, patrón decorativo con emojis ── */
.ph-cookies {
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(251,146,60,0.1) 0%, transparent 65%);
}
.ph-cookies .ph-icon-wrap {
  font-size: 3.5rem;
  margin-bottom: 18px;
  display: inline-block;
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ph-cookies h1 { text-align: center; }
.ph-cookies .ph-sub {
  color: rgba(232,232,240,0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.6;
}
.ph-cookies .ph-crumb {
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 6px;
}
.ph-cookies .ph-crumb a { color: var(--text-muted); }
.ph-cookies .ph-crumb a:hover { color: var(--gold); }

/* ── ph-responsible: barra de emergencia + split layout ── */
.ph-responsible {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.ph-responsible .ph-alert-bar {
  background: linear-gradient(90deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  border-top: 3px solid var(--green);
  padding: 14px 0;
  margin-top: 64px;
  border-bottom: 1px solid rgba(34,197,94,0.2);
}
.ph-responsible .ph-alert-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ph-responsible .ph-alert-inner span {
  font-size: 0.88rem;
  color: rgba(232,232,240,0.85);
}
.ph-responsible .ph-alert-inner strong { color: var(--green); }
.ph-responsible .ph-alert-inner a { color: var(--green); font-weight: 700; }
.ph-responsible .ph-main-content {
  padding: 52px 0 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.ph-responsible .ph-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ph-responsible .ph-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
}
.ph-responsible .ph-breadcrumb a { color: var(--text-muted); }
.ph-responsible .ph-breadcrumb a:hover { color: var(--gold); }
.ph-responsible h1 { margin-bottom: 12px; }
.ph-responsible .ph-tagline {
  font-size: 1rem;
  color: rgba(232,232,240,0.7);
  max-width: 460px;
  line-height: 1.6;
}
.ph-helpline-box {
  background: var(--bg-card);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  flex-shrink: 0;
}
.ph-helpline-box .ph-hl-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 6px;
}
.ph-helpline-box .ph-hl-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}
.ph-helpline-box .ph-hl-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 680px) {
  .ph-responsible .ph-split { grid-template-columns: 1fr; }
  .ph-helpline-box { display: none; }
  .ph-terms h1 { font-size: 2rem; }
}

.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.policy-body h2 {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-body h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 22px 0 10px;
}
.policy-body p {
  color: rgba(232,232,240,0.85);
  font-size: 0.93rem;
  margin-bottom: 14px;
}
.policy-body ul, .policy-body ol {
  color: rgba(232,232,240,0.85);
  font-size: 0.93rem;
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-body li { margin-bottom: 6px; }
.policy-body a { color: var(--gold); }
.policy-body .update-date {
  display: inline-block;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.25);
  color: var(--gold);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 28px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); opacity: 0.5; }

/* ── Responsible Gaming Page ── */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rg-card-icon { font-size: 2rem; }
.rg-card h3 { font-size: 1rem; color: #fff; }
.rg-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }
.rg-card a {
  margin-top: auto;
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 6px;
  align-self: flex-start;
}

/* ── Mobile Responsive ── */
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Card: collapse to 2 cols (left+bonus | cta) */
  .card-body {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .card-col-left {
    grid-column: 1;
    grid-row: 1;
  }
  .card-col-bonus {
    grid-column: 1;
    grid-row: 2;
    border-right: none;
    border-top: 1px solid var(--border);
  }
  .card-cta {
    grid-column: 2;
    grid-row: 1 / 3;
    border-left: 1px solid var(--border);
    padding: 24px 20px;
  }
  .bonus-headline { font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 14px; }
  .header-cta { display: none; }
  .hero { padding: 96px 0 60px; }
  .casinos-section { padding: 10px 0 40px; }
  /* Card: fully stacked on mobile */
  .card-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .card-col-left { border-right: none; border-bottom: 1px solid var(--border); }
  .card-col-bonus { border-top: none; border-bottom: 1px solid var(--border); }
  .card-cta {
    grid-column: 1;
    grid-row: auto;
    border-left: none;
    padding: 20px 24px;
  }
  .btn-play { max-width: 100%; }
  .footer-logos-row { padding: 16px 12px; justify-content: flex-start; }
  .footer-logo-item { padding: 0 12px; }
  .footer-logo-item img { height: 32px; }
  .cookie-inner { flex-direction: column; gap: 14px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-essential { flex: 1; text-align: center; }
  .disclaimer-inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   TEMA CLARO + ACENTO CRIMSON — overrides de bajo contraste
   ═══════════════════════════════════════════════════════════════ */

/* Hero badge: crimson en lugar de dorado */
.hero-badge {
  background: rgba(225,29,72,0.18);
  border-color: var(--gold);
}

/* Hero overlay: mantiene el fondo oscuro, no funde a blanco */
.hero-overlay {
  background: linear-gradient(180deg,
    rgba(8,8,24,0.06) 0%,
    rgba(8,8,24,0.55) 55%,
    rgba(8,8,24,0.82) 100%);
}

/* ── Header: fondo blanco translúcido ── */
.site-header {
  background: rgba(248,247,245,0.94);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: none;
}
/* 18+ pill y header CTA: texto blanco sobre crimson */
.pill-18 { color: #fff; }
.header-cta {
  background: linear-gradient(135deg, var(--gold), #c01338);
  color: #fff !important;
}
.header-cta:hover {
  box-shadow: 0 4px 16px var(--gold-glow);
  color: #fff !important;
}

/* ── Botones principales ── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #c01338);
  color: #fff !important;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(225,29,72,0.3);
  color: #fff !important;
}

/* ── Casino card ── */
.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(225,29,72,0.18);
  border-color: rgba(225,29,72,0.18);
}
.card-top-bar {
  background: linear-gradient(90deg, rgba(225,29,72,0.06), rgba(225,29,72,0.01));
}
.badge-recommended { color: #fff; }
.card-logo-wrap {
  background: var(--bg-card2);
  border: 1px solid rgba(0,0,0,0.08);
}
.card-name { color: var(--text); }
.bonus-headline { color: var(--text); }
.bonus-desc { color: var(--text-muted); }
.feature-tag {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: var(--text-muted);
}
.card-cta {
  background: linear-gradient(180deg, rgba(225,29,72,0.03) 0%, transparent 100%);
}
.btn-play {
  background: linear-gradient(135deg, var(--gold), #c01338);
  color: #fff !important;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-play:hover {
  box-shadow: 0 8px 26px rgba(225,29,72,0.3);
  color: #fff !important;
}

/* ── Secciones de contenido ── */
.sec-h2 { color: var(--text); }
.sec-h2 em { color: var(--gold); }
.sec-p { color: var(--text-muted); }

/* Stats */
.stats-inner { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.06); }

/* Criteria */
.criteria-num { color: rgba(225,29,72,0.13); }
.criteria-item:hover { border-color: rgba(225,29,72,0.18); }
.criteria-text h4 { color: var(--text); }

/* Bonos */
.bono-card h4 { color: var(--text); }
.bono-card ul li::before { color: rgba(225,29,72,0.45); }
.bono-callout {
  background: linear-gradient(90deg, rgba(225,29,72,0.05), rgba(225,29,72,0.015));
  border: 1px solid rgba(225,29,72,0.13);
  border-left: 4px solid var(--gold);
}
.bono-callout-text { color: var(--text); }
.bono-callout-cta { color: #fff !important; }
.bono-callout-cta:hover {
  background: var(--gold-light);
  color: #fff !important;
}

/* Trust */
.trust-bullet-icon {
  background: rgba(225,29,72,0.06);
  border-color: rgba(225,29,72,0.1);
}
.trust-bullet-body h5 { color: var(--text); }
.trust-tip {
  background: rgba(225,29,72,0.04);
  color: var(--text-muted);
}

/* Tips */
.tip-callout ul li { color: var(--text-muted); }

/* Legacy info-card */
.info-card h4 { color: var(--text); }

/* ── Disclaimer ── */
.disclaimer-section {
  background: rgba(225,29,72,0.03);
}
.disclaimer-icon { color: #fff; }

/* ── Footer ── */
.footer-bottom { color: rgba(50,50,70,0.42); }
.footer-logo-item img { filter: none; }

/* ── Cookie banner: fondo claro ── */
.cookie-banner {
  background: rgba(248,247,245,0.97);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cookie-text p { color: var(--text-muted); }
.cookie-text p strong { color: var(--text); }
.btn-cookie-accept {
  color: #fff;
}
.btn-cookie-accept:hover { color: #fff; }
.btn-cookie-essential {
  border-color: rgba(0,0,0,0.14);
  color: var(--text-muted);
}
.btn-cookie-essential:hover { border-color: var(--gold); color: var(--gold); }

/* ── Policy pages ── */
.policy-header h1 { color: var(--text); }
.policy-header p { color: var(--text-muted); }
.ph-privacy h1 { color: var(--text); }
.ph-terms h1 { color: var(--text); }
.ph-cookies h1 { color: var(--text); }
.ph-cookies .ph-sub { color: var(--text-muted); }
.ph-responsible .ph-tagline { color: var(--text-muted); }
.ph-responsible .ph-alert-inner span { color: rgba(26,24,37,0.78); }
.ph-helpline-box .ph-hl-number { color: var(--text); }
.policy-body h3 { color: var(--text); }
.policy-body p,
.policy-body ul,
.policy-body ol { color: var(--text-muted); }
.policy-body .update-date {
  background: rgba(225,29,72,0.06);
  border-color: rgba(225,29,72,0.18);
}
.rg-card h3 { color: var(--text); }
.rg-card a { color: #fff; }

/* ── Footer oscuro — contraste con la página clara ── */
.site-footer {
  background: #17151e;
  border-top: none;
}
.footer-col h4 {
  color: var(--gold);
}
.footer-col p {
  color: rgba(200,198,210,0.65);
}
.footer-col a {
  color: rgba(200,198,210,0.65);
}
.footer-logos-row {
  border-top-color: rgba(255,255,255,0.07);
  border-bottom-color: rgba(255,255,255,0.07);
}
.footer-logo-item {
  border-right-color: rgba(255,255,255,0.08);
}
.footer-logo-item img {
  filter: brightness(1.15) saturate(0.9);
  opacity: 0.75;
}
.footer-logo-item img:hover {
  filter: brightness(1.3) saturate(1);
  opacity: 1;
}
.footer-phone-strip .phone-label {
  color: rgba(200,198,210,0.55);
}
.footer-phone-strip .phone-dot {
  color: rgba(255,255,255,0.2);
}
.footer-links a {
  color: rgba(200,198,210,0.5);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  color: rgba(200,198,210,0.28);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}
