*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #0b1220;
  --bg-soft: rgba(11, 18, 32, 0.72);
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --primary: #0f6bff;
  --primary-hover: #0b55cc;
  --secondary: #ffffff;
  --secondary-hover: #f1f5f9;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #e2e8f0;
  background: radial-gradient(circle at top, #1b2a44 0%, #0b1220 60%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/assets/verde-bg.webp") center/cover no-repeat;
  opacity: 0.35;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 28, 0.78);
  z-index: -1;
}

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

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.card + .card {
  margin-top: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 8px;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.btn.primary:hover {
  background: var(--primary-hover);
}

.btn.secondary {
  background: var(--secondary);
  color: var(--text);
  border-color: var(--border);
}

.btn.secondary:hover {
  background: var(--secondary-hover);
}

.disclosure {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-soft);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.lang-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-switch a {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.lang-switch a.active {
  background: #0f6bff;
  border-color: transparent;
  color: #ffffff;
}

.hero {
  margin-top: 16px;
}

.age-gate,
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  backdrop-filter: blur(6px);
}

.age-gate.hidden,
.modal.hidden {
  display: none;
}

.age-card,
.modal-card {
  max-width: 540px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

body.age-locked {
  overflow: hidden;
}

body.age-locked main {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

body.modal-open {
  overflow: hidden;
}

.modal-close {
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  color: var(--muted);
}

.modal-card {
  text-align: left;
  position: relative;
}

.hidden {
  display: none;
}

.steps {
  margin: 12px 0 0;
  padding-left: 20px;
}

.steps li {
  margin: 6px 0;
}

.callout {
  border-left: 4px solid var(--primary);
  background: #eef5ff;
  padding: 14px 16px;
  border-radius: 12px;
  margin: 16px 0;
}

.content,
#seo {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

@media (max-width: 600px) {
  .container {
    padding: 22px 16px 40px;
  }

  .card {
    padding: 20px;
  }
}
