:root {
  --gate-backdrop: rgba(2, 6, 12, 0.82);
  --gate-panel: rgba(12, 18, 28, 0.96);
  --gate-border: rgba(140, 190, 255, 0.24);
  --gate-text: #eef3ff;
  --gate-muted: #b8c1d4;
  --gate-accent: #8cbcff;
  --gate-accent-strong: #d9e7ff;
  --gate-danger: #ffb4b4;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--gate-backdrop);
  backdrop-filter: blur(12px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__panel {
  width: min(620px, 100%);
  border: 1px solid var(--gate-border);
  border-radius: 24px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(140, 188, 255, 0.16), transparent 50%),
    linear-gradient(180deg, rgba(16, 24, 37, 0.98), rgba(9, 14, 24, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  color: var(--gate-text);
  padding: 28px;
}

.age-gate__eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--gate-accent);
  font-weight: 800;
}

.age-gate__title {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.02;
}

.age-gate__copy {
  margin: 14px 0 0;
  color: var(--gate-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.age-gate__list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.age-gate__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gate-text);
  line-height: 1.45;
}

.age-gate__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--gate-accent-strong), var(--gate-accent));
  box-shadow: 0 0 16px rgba(140, 188, 255, 0.48);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.age-gate__btn,
.age-gate__link {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.age-gate__btn {
  background: linear-gradient(180deg, #dbe8ff, #9fbfff);
  color: #0a1220;
  box-shadow: 0 12px 28px rgba(119, 164, 255, 0.22);
}

.age-gate__btn:hover,
.age-gate__link:hover {
  transform: translateY(-1px);
}

.age-gate__btn:focus-visible,
.age-gate__link:focus-visible {
  outline: 2px solid var(--gate-accent-strong);
  outline-offset: 3px;
}

.age-gate__link {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gate-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.age-gate__status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--gate-danger);
  font-weight: 700;
}

body.age-gate-open {
  overflow: hidden;
}
