/* Mejores Opciones Online — tokens: theme-light + acentos/contraste al final del archivo */
:root {
  --color-bg-deep: #0c0618;
  --color-bg-mid: #151028;
  --color-surface: #1e1b2e;
  --color-surface-elevated: #252140;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text: #f1f5f9;
  --color-text-muted: #b8c0d4;
  --color-heading-cyan: #7dd3fc;
  --color-accent-yellow: #f5c518;
  --color-accent-yellow-hover: #fde047;
  --color-pill: #5b21b6;
  --color-danger: #ef4444;
  --gradient-hero-stop: #2d1b4e;
  --color-link-hover: #bae6fd;
  --color-on-accent: #0f0a1a;
  --footer-bg: #080412;
  --rail-accent-from: #fde047;
  --rail-accent-to: #ca8a04;
  --color-accent-rgb: 245, 197, 24;
  --color-stamp-rgb: 253, 224, 71;
  --strip-bg-rgb: 8, 4, 18;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-cookie: 0 -12px 40px rgba(0, 0, 0, 0.4);
  --header-h: 56px;
  --age-bar-h: 40px;
  --cookie-h: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: radial-gradient(
    120% 80% at 50% 0%,
    var(--gradient-hero-stop) 0%,
    var(--color-bg-mid) 45%,
    var(--color-bg-deep) 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
  padding-bottom: var(--cookie-h);
}

body.has-cookie-banner {
  --cookie-h: 120px;
  padding-bottom: var(--cookie-h);
}

@media (min-width: 640px) {
  body.has-cookie-banner {
    --cookie-h: 100px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-heading-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-link-hover);
}

:focus-visible {
  outline: 2px solid var(--color-accent-yellow);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--color-accent-yellow);
  color: var(--color-on-accent);
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.age-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--age-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(90deg, #3b0764, #5b21b6 50%, #3b0764);
  color: #e9d5ff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.age-bar strong {
  color: #fff;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: var(--age-bar-h);
  z-index: 90;
  min-height: var(--header-h);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.65rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(12, 6, 24, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.page-home .site-header--minimal {
  top: 0;
  max-width: none;
  border-bottom: 1px solid var(--color-border);
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo:focus-visible {
  outline: 2px solid var(--color-accent-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.logo__img {
  height: 2.35rem;
  width: auto;
  max-width: min(52vw, 220px);
  object-fit: contain;
  display: block;
}

@media (min-width: 640px) {
  .logo__img {
    height: 2.55rem;
    max-width: 260px;
  }
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  justify-content: flex-end;
  align-items: baseline;
  padding-bottom: 0.1rem;
}

.nav-main a {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-main a:hover {
  color: var(--color-text);
}

.nav-main a.nav-main__link--loud {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-heading-cyan);
}

.nav-main a.nav-main__link--loud:hover {
  color: var(--color-link-hover);
}

.nav-main a.nav-main__link--quiet {
  font-size: 0.75rem;
  opacity: 0.88;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 3rem;
}

.page-home main {
  max-width: none;
  margin: 0;
  padding: 0;
}

main.policy-page {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.25rem 4rem;
}

.content-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tipos de composición en home */
.composition__type-label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.85);
}

.composition--checklist .composition__type-label {
  margin-bottom: 0.3rem;
}

.composition--branching .composition__type-label {
  margin-bottom: 0.75rem;
}

.composition--linear {
  margin: 0;
}

.composition--checklist {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1.1rem 1rem;
  background: rgba(30, 27, 46, 0.55);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.checklist-composition__inner {
  max-width: 720px;
  margin: 0 auto;
}

.checklist-composition__intro {
  margin: 0 0 0.55rem;
  font-size: 0.875rem;
  line-height: 1.42;
  color: var(--color-text-muted);
}

.checklist-composition__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-composition__list li {
  position: relative;
  margin: 0 0 0.45rem;
  padding: 0.4rem 0.55rem 0.42rem 2.65rem;
  font-size: 0.9rem;
  line-height: 1.42;
  color: var(--color-text);
  background: rgba(12, 6, 24, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}

.checklist-composition__list li:last-child {
  margin-bottom: 0;
}

.checklist-composition__example {
  display: block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.45rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(226, 232, 240, 0.88);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.checklist-composition__box {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid rgba(var(--color-accent-rgb), 0.65);
  border-radius: 4px;
  background: rgba(var(--color-accent-rgb), 0.12);
}

.checklist-composition__box::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.35rem;
  border: solid rgba(var(--color-accent-rgb), 0.95);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.checklist-composition__box--empty::after {
  display: none;
}

.checklist-composition__list li.checklist-composition__item--text-only {
  padding-left: 0.85rem;
}

.checklist-composition__item--text-only .checklist-composition__box {
  display: none;
}

.composition--branching {
  margin: 0 0 2.85rem;
  padding: 0.35rem 1.25rem 0.15rem;
}

.branch-composition__inner {
  max-width: 720px;
  margin: 0 auto;
}

.branch-composition__hint {
  margin: 0 0 1.4rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.branch-composition__shell {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.branch-composition__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.branch-composition__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.branch-composition__tab {
  flex: 1 1 auto;
  min-width: 8.5rem;
  padding: 0.62rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-muted);
  background: rgba(30, 27, 46, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.branch-composition__tab-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.branch-composition__tab:hover {
  color: var(--color-text);
  border-color: rgba(125, 211, 252, 0.35);
}

.branch-composition__tab:focus-visible {
  outline: 2px solid var(--color-accent-yellow);
  outline-offset: 2px;
}

#home-branch-a:checked + #home-branch-b + .branch-composition__tabs .branch-composition__tab[for="home-branch-a"],
#home-branch-b:checked + .branch-composition__tabs .branch-composition__tab[for="home-branch-b"] {
  color: var(--color-on-accent);
  background: var(--color-accent-yellow);
  border-color: var(--color-accent-yellow);
}

.branch-composition__panel {
  display: none;
  margin-top: 1.35rem;
  padding: 1.25rem 1.35rem 1.3rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.branch-composition__panel p {
  margin: 0 0 0.65rem;
}

.branch-composition__panel p:last-child {
  margin-bottom: 0;
}

.branch-composition__list {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.branch-composition__list li {
  margin-bottom: 0.35rem;
}

.branch-composition__example {
  margin-top: 0.6rem;
  padding: 0.5rem 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.9);
  background: rgba(12, 6, 24, 0.35);
  border-radius: 4px;
}

#home-branch-a:checked ~ #home-panel-a {
  display: block;
}

#home-branch-b:checked ~ #home-panel-b {
  display: block;
}

.composition--editorial {
  margin: 0 auto 3.75rem;
  padding: 3rem 1.25rem 0;
  max-width: 42rem;
}

.editorial-composition__mast {
  margin-bottom: 2.35rem;
  padding: 0 0.15rem 1.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.editorial-composition__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.9);
}

.editorial-composition__headline {
  margin: 0 0 1.1rem;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
}

.editorial-composition__standfirst {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

.editorial-composition__micro {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.editorial-composition__body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

.editorial-composition__body > .editorial-composition__chunk:first-of-type > p:first-of-type::first-letter {
  float: left;
  margin: 0.12rem 0.45rem 0 0;
  font-size: 2.75rem;
  line-height: 0.85;
  font-weight: 800;
  color: var(--color-accent-yellow);
}

.editorial-composition__chunk {
  margin-bottom: 1.5rem;
}

.editorial-composition__chunk:first-of-type {
  margin-bottom: 2.4rem;
}

.editorial-composition__chunk--rule {
  margin-bottom: 1.1rem;
  padding-top: 2.15rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.editorial-composition__section-title {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading-cyan);
}

.editorial-composition__body p {
  margin: 0 0 1.05rem;
}

.editorial-composition__body p:last-child {
  margin-bottom: 0;
}

.editorial-composition__tight {
  margin: 0 0 0.45rem !important;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.95);
}

.editorial-composition__list {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.editorial-composition__list--numbered {
  list-style: decimal;
}

.editorial-composition__list li {
  margin-bottom: 0.28rem;
}

.editorial-composition__example {
  margin: 0.55rem 0 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.875rem;
  line-height: 1.52;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(37, 33, 64, 0.55);
  border-left: 2px solid rgba(125, 211, 252, 0.45);
  border-radius: 0 4px 4px 0;
}

.read-split--editorial {
  margin: 1rem 0 0.95rem;
}

.read-split--editorial .read-split__heading {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.read-split--editorial .read-split__sub {
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.read-split--editorial .read-split__grid {
  gap: 0.7rem 1rem;
}

@media (min-width: 640px) {
  .read-split--editorial .read-split__grid {
    gap: 0.75rem 1.35rem;
  }
}

.photo-credit--editorial {
  margin-top: 2.65rem;
  font-style: italic;
}

/* Dos columnas editoriales sin caja de tarjeta */
.read-split {
  margin: 1.75rem 0 1.5rem;
  padding: 0;
}

.read-split__heading {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #e9d5ff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.read-split__grid {
  display: grid;
  gap: 1.25rem 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .read-split__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.read-split__sub {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-heading-cyan);
}

.read-split__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.read-split__text--long {
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

.read-split__list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.read-split__list li {
  margin-bottom: 0.22rem;
}

.read-split__example {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-style: italic;
  color: rgba(203, 213, 225, 0.95);
}

/* Nota breve tipo editorial */
.editor-callout {
  margin: 0 0 1.75rem;
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 3px solid rgba(var(--color-accent-rgb), 0.65);
  background: rgba(30, 27, 46, 0.65);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.editor-callout p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.editor-callout p + p {
  margin-top: 0.7rem;
}

.editor-callout.editor-callout--editorial {
  margin: 2.15rem 0 1.35rem;
  padding: 1.2rem 1.15rem 1.25rem 1.25rem;
}

.editor-callout--editorial .editor-callout__example {
  margin-top: 0.65rem;
}

/* Hero — variante editorial (distinto al bloque operador debajo) */
.hero-mock {
  position: relative;
  min-height: min(56vw, 400px);
  max-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin: 0 0 2.85rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-mock--editorial {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

.hero-mock__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-mock__bg {
  position: absolute;
  inset: -12px;
  background: var(--color-surface) center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.08);
}

.hero-mock__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 6, 24, 0.55) 0%,
    rgba(12, 6, 24, 0.82) 100%
  );
}

.hero-mock__veil--editorial {
  background: linear-gradient(
    118deg,
    rgba(12, 6, 24, 0.2) 0%,
    rgba(12, 6, 24, 0.78) 42%,
    rgba(12, 6, 24, 0.92) 100%
  );
}

.hero-mock__inner {
  position: relative;
  padding: 2.5rem 1.5rem;
  max-width: 900px;
}

.hero-mock--editorial .hero-mock__inner {
  margin-left: 0;
  margin-right: auto;
  padding: 2.35rem clamp(1.25rem, 5vw, 3.5rem) 3.15rem;
  max-width: min(36rem, 92vw);
}

.hero-mock__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.95);
}

.hero-mock__title {
  margin: 0 0 0.15rem;
  font-size: clamp(1.65rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero-mock--editorial .hero-mock__title {
  font-size: clamp(1.85rem, 4.2vw, 2.45rem);
  line-height: 1.08;
  max-width: 14ch;
}

.hero-mock__lede {
  margin: 1rem 0 0;
  font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(226, 232, 240, 0.92);
  max-width: 38ch;
}

.hero-mock__lede--short {
  margin-top: 0.55rem;
  max-width: 30ch;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  line-height: 1.45;
  color: rgba(203, 213, 225, 0.95);
}

.hero-mock__text-cta {
  display: inline-block;
  margin-top: 1.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent-yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.hero-mock__text-cta:hover {
  color: var(--color-accent-yellow-hover);
}

.hero-mock__text-cta--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-mock__text-cta__icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 520px) {
  .hero-mock--editorial {
    align-items: center;
  }

  .hero-mock--editorial .hero-mock__inner {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
}

/* Bloque Betsson — posición sección + forma/tamaño/rating/bono en .offer-pick */
.offer-pick-section {
  width: 100%;
  margin: 0 0 1.65rem;
  padding: 0 1.25rem;
}

.offer-pick-section__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.offer-pick-section--center .offer-pick-section__inner {
  display: flex;
  justify-content: center;
}

.offer-pick-section--center .offer-pick {
  width: 100%;
  max-width: 38rem;
}

.offer-pick-section--left .offer-pick-section__inner {
  display: flex;
  justify-content: flex-start;
}

.offer-pick-section--left .offer-pick {
  width: 100%;
  max-width: 38rem;
}

.offer-pick-section--split .offer-pick.offer-pick--shape-card {
  width: 100%;
  max-width: none;
}

.offer-pick {
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(
    120deg,
    rgba(var(--color-accent-rgb), 0.07) 0%,
    rgba(37, 33, 64, 0.97) 38%,
    var(--color-surface-elevated) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* —— Forma: card (rejilla 2 cols con sección split) —— */
.offer-pick--shape-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border-radius: 2px var(--radius-md) var(--radius-md) 2px;
}

@media (min-width: 880px) {
  .offer-pick-section--split .offer-pick--shape-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .offer-pick-section--split .offer-pick--shape-card .offer-pick__brand-col {
    padding: 1.5rem 1.35rem 1.5rem 1.65rem;
    background: rgba(var(--strip-bg-rgb), 0.65);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
  }

  .offer-pick-section--split .offer-pick--shape-card .offer-pick__brand-col .offer-pick__tag {
    color: rgba(226, 232, 240, 0.82);
  }

  .offer-pick-section--split .offer-pick--shape-card .offer-pick__body-col {
    padding: 1.5rem 1.5rem 1.5rem 1.65rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    background: linear-gradient(
      165deg,
      rgba(var(--color-accent-rgb), 0.06) 0%,
      var(--color-surface-elevated) 55%
    );
  }

  .offer-pick-section--split .offer-pick--shape-card .offer-pick__aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.25rem;
    text-align: left;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* —— Forma: inline (fila compacta) —— */
.offer-pick--shape-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
  padding: 0.85rem 1.15rem 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.offer-pick--shape-inline .offer-pick__brand-col {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.offer-pick--shape-inline .offer-pick__body-col {
  flex: 1 1 220px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.offer-pick--shape-inline .offer-pick__stamp {
  margin-bottom: 0;
}

.offer-pick--shape-inline .offer-pick__tag {
  font-size: 0.6875rem;
  margin: 0;
}

/* —— Forma: banner (banda horizontal) —— */
.offer-pick--shape-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1.2rem 1.5rem;
  border-radius: var(--radius-md);
}

@media (min-width: 720px) {
  .offer-pick--shape-banner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    row-gap: 1.1rem;
  }

  .offer-pick--shape-banner .offer-pick__brand-col {
    flex: 0 1 auto;
    min-width: min(100%, 16rem);
    max-width: 24rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    gap: 0.65rem 1.1rem;
  }

  .offer-pick--shape-banner .offer-pick__meta {
    flex: 1 1 11rem;
    min-width: min(100%, 11rem);
    max-width: 16rem;
  }

  .offer-pick--shape-banner .offer-pick__logo {
    flex: 0 0 auto;
  }

  .offer-pick--shape-banner .offer-pick__body-col {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1.25rem;
  }

  .offer-pick--shape-banner .offer-pick__aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem 1rem;
  }

  .offer-pick--shape-banner .offer-pick__copy {
    flex: 1 1 12rem;
    min-width: min(100%, 12rem);
    max-width: 28rem;
  }
}

.offer-pick--shape-banner .offer-pick__aside {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.offer-pick--shape-banner .offer-pick__tag {
  margin-top: 0;
  line-height: 1.45;
}

.offer-pick--shape-banner .offer-pick__hook {
  margin-bottom: 0.35rem;
}

.offer-pick--shape-banner .betsson-wordmark {
  width: clamp(120px, 18vw, 152px);
  height: auto;
}

/* —— Forma: lista (viñetas; oculta párrafos de bono duplicados) —— */
.offer-pick--shape-list {
  display: block;
  padding: 1.2rem 1.25rem 1.35rem 1.5rem;
  border-radius: var(--radius-md);
}

.offer-pick--shape-list .offer-pick__brand-col {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.offer-pick--shape-list .offer-pick__body-col {
  display: block;
}

.offer-pick--shape-list .offer-pick__bonus-wrap {
  display: none;
}

.offer-pick--shape-list .offer-pick__pill-list {
  display: block;
}

.offer-pick--shape-list .offer-pick__aside {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-pick__pill-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.offer-pick__pill-list li {
  position: relative;
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
}

.offer-pick__pill-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
}

.offer-pick__pill-list li:last-child {
  margin-bottom: 0;
}

.offer-pick--no-bonus .offer-pick__pill-list--bonus-line {
  display: none !important;
}

.offer-pick--no-rating .offer-pick__rating {
  display: none;
}

.offer-pick--size-sm {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.offer-pick--size-sm .offer-pick__name {
  font-size: 1.2rem;
}

.offer-pick--size-sm .offer-pick__hook {
  font-size: 0.875rem;
}

.offer-pick--size-sm .betsson-wordmark {
  width: 128px;
  height: auto;
}

.offer-pick--size-md .offer-pick__name {
  font-size: 1.5rem;
}

.offer-pick--size-lg {
  padding: 1.5rem 1.5rem 1.6rem 1.65rem;
}

.offer-pick--size-lg .offer-pick__name {
  font-size: 1.85rem;
}

.offer-pick--size-lg .betsson-wordmark {
  width: 184px;
  height: auto;
}

.offer-pick__brand-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
  padding-left: 0.75rem;
}

.offer-pick__body-col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.offer-pick__rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(180deg, var(--rail-accent-from), var(--rail-accent-to));
}

.offer-pick__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.offer-pick__meta .offer-pick__stamp {
  margin-bottom: 0;
}

.offer-pick__meta .offer-pick__tag {
  margin-top: 0;
}

.offer-pick__stamp {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.4rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-accent);
  background: rgba(var(--color-stamp-rgb), 0.92);
  border-radius: 2px;
}

.offer-pick__name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  max-width: 100%;
  word-break: break-word;
}

.offer-pick__tag {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.offer-pick__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.betsson-wordmark {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.offer-pick__copy {
  min-width: 0;
}

.offer-pick__hook {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
}

.offer-pick__fine {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.offer-pick__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .offer-pick__aside {
    align-items: flex-end;
    text-align: right;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 1.25rem;
    margin-left: 0.25rem;
  }

  .offer-pick-section--split .offer-pick--shape-card .offer-pick__aside {
    align-items: flex-start;
    text-align: left;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .offer-pick--shape-inline .offer-pick__aside,
  .offer-pick--shape-banner .offer-pick__aside,
  .offer-pick--shape-list .offer-pick__aside {
    align-items: flex-start;
    text-align: left;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

.rating-block--compact .rating-stars {
  font-size: 0.95rem;
}

.rating-block--compact .rating-score {
  font-size: 1.2rem;
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.rating-score {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-accent-yellow);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-on-accent);
  background: var(--color-accent-yellow);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-yellow:hover {
  background: var(--color-accent-yellow-hover);
  color: var(--color-on-accent);
}

.btn-yellow:active {
  transform: scale(0.98);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--color-accent-yellow);
  background: transparent;
  border: 1px solid rgba(var(--color-accent-rgb), 0.55);
  border-radius: 4px;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.btn-cta-ghost--compact {
  padding: 0.42rem 0.72rem;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.btn-cta-ghost--wide {
  padding: 0.62rem 1.2rem;
  min-width: min(100%, 15.5rem);
}

.btn-cta-ghost__end-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  opacity: 0.92;
}

.btn-cta-ghost:hover {
  color: var(--color-on-accent);
  background: var(--color-accent-yellow);
  border-color: var(--color-accent-yellow);
}

/* Bloques SEO */
.seo-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.65rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.seo-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-heading-cyan);
  letter-spacing: -0.02em;
}

.seo-block p {
  margin: 0 0 0.85rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.seo-block p:last-child {
  margin-bottom: 0;
}

.seo-block strong {
  color: var(--color-text);
}

.photo-credit {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

.photo-credit a {
  color: inherit;
}

/* Franja legal fina */
.legal-strip {
  width: 100%;
  background: rgba(var(--strip-bg-rgb), 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.legal-strip__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f1f5f9;
  line-height: 1;
}

.legal-strip p {
  margin: 0;
  font-size: 0.775rem;
  line-height: 1.5;
  color: #94a3b8;
}

/* Footer columnas (home) */
.site-footer {
  margin-top: 0;
  padding: 3rem 1.25rem 2.25rem;
  background: var(--footer-bg);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer--columns .footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-bottom: 1.65rem;
}

@media (min-width: 768px) {
  .site-footer--columns .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.35rem;
  }
}

.footer-col h2 {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-heading-cyan);
}

.footer-col p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.footer-col a {
  font-weight: 600;
}

.footer-col__lead {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.footer-col__list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.footer-col__list li {
  margin-bottom: 0.35rem;
}

.footer-col__muted {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(184, 192, 212, 0.88);
}

.footer-col__tight {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* Bloque logos pie — texto + .footer-logos__track */
.footer-logos {
  padding: 2.1rem 0 1.85rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.footer-logos__intro {
  max-width: 40rem;
  margin: 0 auto 1.6rem;
  text-align: center;
  padding: 0 0.5rem;
}

.footer-logos__title {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-heading-cyan);
}

.footer-logos__lede {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.footer-logos__track > * {
  flex: 0 0 auto;
}

.footer-logos__track a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.92;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-logos__track a:hover {
  opacity: 1;
}

.footer-logos__track .footer-logos__logo-img {
  display: block;
  height: clamp(38px, 4.8vw, 52px);
  width: auto;
  max-width: min(100%, 220px);
  object-fit: contain;
}

.footer-logos__badge-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}

.footer-logos__track .footer-logos__badge-img {
  display: block;
  height: clamp(44px, 5vw, 58px);
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

/* Layout: línea (flex) */
.footer-logos--layout-line .footer-logos__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
}

/* Layout: grilla */
.footer-logos--layout-grid .footer-logos__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1.25rem 1.5rem;
  justify-items: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .footer-logos--layout-grid .footer-logos__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Layout: “caos” — misma fila envolvente, rotaciones y offsets leves */
.footer-logos--layout-chaos .footer-logos__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.35rem 2.25rem;
  padding: 0.5rem 0 0.35rem;
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(1) {
  transform: rotate(-3.5deg) translate(-4px, 5px);
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(2) {
  transform: rotate(2.5deg) translate(8px, -4px);
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(3) {
  transform: rotate(-1.5deg) translate(-6px, -3px);
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(4) {
  transform: rotate(3deg) translate(4px, 6px);
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(5) {
  transform: rotate(-2deg) translate(2px, -5px);
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(6) {
  transform: rotate(4deg) translate(-5px, 3px);
}

.footer-logos--layout-chaos .footer-logos__track > *:nth-child(7) {
  transform: rotate(-2.5deg) translate(4px, 4px);
}

.footer-logos--layout-chaos .footer-logos__track a:hover {
  z-index: 2;
}

/* Inline SVG logos (no <img> — evita rutas rotas y colapso flex + max-width) */
.footer-inline-svg--logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.05);
}

.footer-inline-svg--badge {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.footer-support {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  padding: 1.5rem 0 0.5rem;
  font-size: 0.9375rem;
}

.footer-support__tel {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-accent-yellow);
  text-decoration: none;
}

.footer-support__tel:hover {
  color: var(--color-accent-yellow-hover);
}

.footer-support__icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.footer-support--no-icon .footer-support__icon {
  display: none;
}

.footer-support__hint {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .footer-support__hint {
    width: auto;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-heading-cyan);
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
}

/* Footer clásico (páginas legales) */
.footer-responsible {
  margin-bottom: 2rem;
}

.footer-responsible h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.footer-logos a {
  display: block;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.footer-logos a:hover {
  opacity: 1;
}

.footer-logos img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(0.15);
}

.policy-page h1 {
  margin-top: 0;
  font-size: 1.75rem;
  color: var(--color-text);
}

.policy-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--color-heading-cyan);
}

.policy-page p,
.policy-page li {
  color: var(--color-text-muted);
}

.policy-page ul {
  padding-left: 1.25rem;
}

.policy-page code {
  font-size: 0.9em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(var(--color-accent-rgb), 0.12);
  color: var(--color-accent-yellow);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-on-accent);
  background: var(--color-accent-yellow);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--color-accent-yellow-hover);
  color: var(--color-on-accent);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary--wide {
  padding: 0.88rem 1.5rem;
  font-size: 0.9rem;
}

.btn-primary__leading-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.btn-ghost {
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.btn-ghost--tight {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
}

.btn-ghost:hover {
  border-color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.04);
}

.external-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin: 0;
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.trust-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.trust-block p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.trust-block a {
  font-weight: 600;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 1rem 1.25rem;
  background: var(--color-surface-elevated);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-cookie);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex: 1;
}

.cookie-banner a {
  color: var(--color-heading-cyan);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   Temas y acentos — clases en <html> (ej.: <html class="theme-light accent-emerald contrast-high">)
   - theme-light: modo claro
   - accent-coral | accent-emerald | accent-violet: acento (sin clase = ámbar por defecto en :root)
   - contrast-high | contrast-soft (omitir = contrast-standard del :root)
   ------------------------------------------------------------------------- */

html.theme-light {
  color-scheme: light;
  --strip-bg-rgb: 15, 23, 42;
  --color-bg-deep: #f8fafc;
  --color-bg-mid: #e2e8f0;
  --color-surface: #ffffff;
  --color-surface-elevated: #f1f5f9;
  --color-border: rgba(15, 23, 42, 0.1);
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-heading-cyan: #0369a1;
  --color-link-hover: #0284c7;
  --color-pill: #6d28d9;
  --gradient-hero-stop: #c4d4fc;
  --footer-bg: #0f172a;
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.1);
  --shadow-cookie: 0 -12px 36px rgba(15, 23, 42, 0.12);
  --color-on-accent: #0f172a;
}

html.accent-coral {
  --color-accent-yellow: #fb7185;
  --color-accent-yellow-hover: #fda4af;
  --color-accent-rgb: 251, 113, 133;
  --color-stamp-rgb: 254, 202, 202;
  --rail-accent-from: #fda4af;
  --rail-accent-to: #e11d48;
  --color-heading-cyan: #fca5a5;
  --color-link-hover: #fecdd3;
}

html.accent-emerald {
  --color-accent-yellow: #2dd4bf;
  --color-accent-yellow-hover: #5eead4;
  --color-accent-rgb: 45, 212, 191;
  --color-stamp-rgb: 153, 246, 228;
  --rail-accent-from: #5eead4;
  --rail-accent-to: #0f766e;
  --color-heading-cyan: #5eead4;
  --color-link-hover: #99f6e4;
}

html.accent-violet {
  --color-accent-yellow: #c4b5fd;
  --color-accent-yellow-hover: #e9d5ff;
  --color-accent-rgb: 196, 181, 253;
  --color-stamp-rgb: 221, 214, 254;
  --rail-accent-from: #ddd6fe;
  --rail-accent-to: #6d28d9;
  --color-heading-cyan: #c4b5fd;
  --color-link-hover: #e9d5ff;
}

html.theme-light.accent-coral {
  --color-heading-cyan: #be123c;
  --color-link-hover: #e11d48;
}

html.theme-light.accent-emerald {
  --color-heading-cyan: #0f766e;
  --color-link-hover: #0d9488;
}

html.theme-light.accent-violet {
  --color-heading-cyan: #5b21b6;
  --color-link-hover: #6d28d9;
}

html.contrast-high {
  --color-border: rgba(255, 255, 255, 0.18);
  --color-text-muted: #cbd5e1;
}

html.theme-light.contrast-high {
  --color-border: rgba(15, 23, 42, 0.16);
  --color-text-muted: #334155;
  --color-text: #020617;
}

html.contrast-soft {
  --color-border: rgba(255, 255, 255, 0.06);
  --color-text-muted: #94a3b8;
}

html.theme-light.contrast-soft {
  --color-border: rgba(15, 23, 42, 0.07);
  --color-text-muted: #64748b;
}
