:root {
  --bg: #f7f1e7;
  --paper: #fffaf2;
  --card: #fffdf8;
  --ink: #17212b;
  --muted: #5f6b76;
  --line: #d9c9b0;
  --accent: #0b6e4f;
  --accent-dark: #084c39;
  --accent-soft: #d9f1e8;
  --gold: #d0942c;
  --gold-soft: #f8e4b7;
  --danger: #8f2d2d;
  --shadow: 0 20px 50px rgba(23, 33, 43, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(208, 148, 44, 0.18), transparent 30%),
    linear-gradient(180deg, #f5ecdd 0%, #f7f1e7 38%, #f9f5ee 100%);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topline {
  background: var(--accent-dark);
  color: #f8f5ee;
  font-size: 0.95rem;
}

.topline .container {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 201, 176, 0.8);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #f6d171 100%);
  color: #1a1a1a;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.brand-text span {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}

.site-nav a {
  font-weight: 700;
  color: var(--ink);
}

.hero {
  padding: 64px 0 32px;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.hero-copy,
.panel,
.card,
.table-wrap,
.notice,
.legal-copy,
.faq-item,
.contact-card,
.operator-hero,
.regulator-card,
.page-intro {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(217, 201, 176, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-stats,
.card-grid,
.steps,
.faq-list,
.contact-grid,
.legal-grid,
.operator-grid,
.regulator-grid,
.review-links,
.footer-links {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.stat {
  background: rgba(11, 110, 79, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(11, 110, 79, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.panel {
  padding: 28px;
}

.checklist,
.plain-list,
.proscons ul {
  margin: 0;
  padding-left: 20px;
}

.section {
  padding: 32px 0;
}

.section.tight {
  padding-top: 12px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  padding: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-logo {
  width: 190px;
  height: auto;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.tag {
  background: var(--gold-soft);
  color: #5a3b09;
}

.meta-pill {
  background: rgba(11, 110, 79, 0.1);
  color: var(--accent-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(23, 33, 43, 0.2);
  color: var(--ink);
}

.info-strip {
  background: linear-gradient(90deg, rgba(11, 110, 79, 0.13), rgba(208, 148, 44, 0.18));
  border-top: 1px solid rgba(217, 201, 176, 0.85);
  border-bottom: 1px solid rgba(217, 201, 176, 0.85);
}

.info-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 0;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  padding: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(217, 201, 176, 0.75);
  vertical-align: top;
}

th {
  background: rgba(11, 110, 79, 0.1);
  font-family: Georgia, "Times New Roman", serif;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.step {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(217, 201, 176, 0.85);
  box-shadow: var(--shadow);
}

.step strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  margin-bottom: 14px;
}

.regulator-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.regulator-card {
  padding: 20px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.regulator-card img {
  width: 100%;
  max-width: 190px;
  height: 76px;
  object-fit: contain;
}

.faq-item,
.contact-card,
.legal-copy,
.operator-hero,
.page-intro {
  padding: 28px;
}

.faq-list {
  grid-template-columns: 1fr;
}

.notice {
  padding: 22px;
  border-left: 6px solid var(--gold);
}

.warning {
  border-left-color: var(--danger);
}

.contact-grid,
.legal-grid,
.operator-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-footer {
  padding: 34px 0 42px;
  margin-top: 42px;
  background: #14202a;
  color: #f7f1e7;
}

.site-footer a {
  color: #f8df9e;
}

.footer-links {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 22px;
}

.footer-note {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: #f3ebe0;
}

.muted {
  color: var(--muted);
}

.age-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 32, 42, 0.74);
  z-index: 100;
}

.age-modal {
  width: min(100%, 560px);
  background: var(--paper);
  border: 1px solid rgba(217, 201, 176, 0.85);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.age-badge {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c45050, #e4a14b);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 18px;
}

#contenido:target ~ .age-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.skip-anchor {
  position: absolute;
  top: 0;
  left: 0;
}

.page-hero {
  padding: 52px 0 20px;
}

.breadcrumbs {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.review-links {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-link {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(11, 110, 79, 0.08);
  border: 1px solid rgba(11, 110, 79, 0.14);
  text-decoration: none;
}

.review-link:hover {
  text-decoration: none;
  background: rgba(11, 110, 79, 0.13);
}

@media (max-width: 920px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .panel,
  .card,
  .faq-item,
  .contact-card,
  .legal-copy,
  .operator-hero,
  .page-intro,
  .age-modal {
    padding: 22px;
  }

  h1 {
    font-size: 2.4rem;
  }
}
