/* age-gate.css -- 18+ modal */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 15, 20, 0.95);
}

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

/* Prevent flash on page transitions when already verified */
.cv-verified .age-gate {
  display: none;
}

.age-gate__box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-48) var(--s-40);
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.age-gate__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--s-24);
}

.age-gate__title {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--s-12);
}

.age-gate__text {
  font-size: 0.9375rem;
  color: var(--c-text-dim);
  margin-bottom: var(--s-32);
  line-height: 1.6;
}

.age-gate__buttons {
  display: flex;
  gap: var(--s-16);
  justify-content: center;
}

.age-gate__btn {
  min-width: 140px;
}

/* Hide Cookiebot until age verified */
.cookiebot-hidden {
  display: none !important;
}
