/* Vegas overrides now use site variables; palette removed for theme switching */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.secondary {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
}
/* TOP WARNING */
.top-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 6px 12px;
  color: var(--muted);
  font-size: 13px;
}
.top-warning .inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* Header spacing override */
.topbar {
  padding: 16px 20px;
}
/* NAV */
.nav {
  position: fixed;
  inset: 34px 0 auto 0;
  height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(6, 10, 20, 0.6);
  border-bottom: 1px solid var(--line);
  z-index: 60;
}
.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* HERO */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
}
.hero .wrap {
  max-width: 880px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 10px;
}
.hero p {
  font-size: 18px;
  color: #fff;
  margin: 0 0 18px;
}
.hero h1 {
  color: #fff;
}
.hero .pill {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
/* TRUST STRIP */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.trust .strip {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0;
}
.trust .item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}
.trust .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}
/* BONUS */
.banner {
  padding: 28px 0;
  background: linear-gradient(90deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.banner .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.banner h3 {
  margin: 0;
  font-size: 22px;
}
.terms-line {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
/* SPLIT */
.split {
  padding: 60px 0;
}
.split .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: 1fr;
  padding: 18px;
}
.bullets {
  display: grid;
  gap: 12px;
}
.bullet {
  display: flex;
  gap: 10px;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--ok);
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* MOSAIC */
.mosaic {
  padding: 0;
}
.mosaic .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tile {
  aspect-ratio: 16/9;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
}
/* LIVE */
.tile > * {
  position: relative;
  z-index: 2;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}
.live {
  padding: 18px 0;
  text-align: center;
  color: var(--muted);
}
.live strong {
  color: var(--ink);
}
/* STEPS */
.steps {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.steps .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.step h4 {
  margin: 6px 0 8px;
}
/* PROMO */
.promo {
  padding: 70px 0;
}
.promo .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.promo .shot {
  border-radius: 18px;
  border: 1px solid var(--line);
  min-height: 520px;
}
/* CTA */
.cta {
  min-height: 70svh;
  display: grid;
  place-items: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
}
.cta .panel {
  position: relative;
  z-index: 2;
}
.cta .panel {
  max-width: 820px;
  text-align: center;
}
.cta h2 {
  font-size: 40px;
  margin: 0 0 12px;
}
/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.footer .links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer .logos {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.badge {
  display: inline-grid;
  place-items: center;
  width: 170px;
  height: 64px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.footer .disclaimer {
  text-align: center;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}
.footer .disclaimer small {
  display: block;
  color: #a7b0bf;
  margin-top: 6px;
}
.licencias {
  color: #cbd5e1;
  text-align: center;
  font-size: 13px;
  margin-top: 8px;
}
@media (max-width: 980px) {
  .split .grid,
  .promo .wrap,
  .banner .row {
    grid-template-columns: 1fr;
  }
  .mosaic .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps .grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 36px;
  }
  .promo .shot {
    min-height: auto;
  }
}
/* Cookie */
.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--bg);
  border-color: var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  z-index: 100;
}
.cookie__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Age gate modal */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.age-gate.is-visible {
  display: flex;
}
.age-gate__dialog {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink);
  max-width: 560px;
  width: calc(100% - 24px);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
}
.age-gate__title {
  margin: 0 0 8px;
  font-size: 22px;
}
.age-gate__text {
  margin: 0 0 12px;
  color: var(--muted);
}
.age-gate__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.age-gate__actions button {
  cursor: pointer;
}
.age-gate__badge {
  background: var(--accent);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--line);
}

/* Image-as-background helpers for hero/cta/promo and tiles */
.hero__bg,
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img,
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo .shot {
  position: relative;
  overflow: hidden;
}
.promo .shot img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tiles: background image below overlay and label */
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

/* Split image card semantics */
.card.card--image {
  padding: 0;
  min-height: 360px;
  overflow: hidden;
}
.card.card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.panel h2,
.panel p {
  color: var(--line);
}
html.theme-dark .panel h2,
html.theme-dark .panel p {
  color: var(--ink);
}
.legal {
  text-align: left;
}

.legal__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 2rem;

  padding: 0 0 0 15px;
}
.legal__list p {
  margin: 0;
}
.legal__list p strong {
  display: block;
}

.legal-link__wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.legal__link {
  color: var(--accent);
  font-size: 14px;
  text-decoration: underline;
}

.legal__link:hover {
  color: var(--muted);
  transition: color 0.3s ease-in-out;
}

@media (max-width: 980px) {
  .legal__list {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .regbadge {
    width: 90px;
    height: 90px;
  }
}
