.age-gate {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.55), rgba(33, 23, 17, 0.92));
}

.age-gate__content {
  position: relative;
  max-width: 520px;
  margin-inline: var(--space-4);
  padding: var(--space-6) var(--space-6) var(--space-5);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #2b211a, #47352a);
  box-shadow: var(--shadow-strong);
  color: #fdf7ee;
  text-align: center;
}

.age-gate__badge {
  position: absolute;
  top: -22px;
  inset-inline: 0;
  margin-inline: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-serif);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: radial-gradient(circle at 15% 0, #fff9f0 0, #f1dcc1 32%, #caa469 100%);
  color: #3c251a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.age-gate__title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
  color: #fff7eb;
}

.age-gate__text {
  color: rgba(253, 247, 238, 0.9);
  font-size: var(--font-size-sm);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.age-gate__btn {
  width: 100%;
}

.age-gate__btn--yes {
  background: radial-gradient(circle at 10% 0, #fff9f0 0, #f1dcc1 32%, #caa469 100%);
}

.age-gate__btn--no {
  background: rgba(39, 27, 19, 0.7);
  border-color: rgba(253, 247, 238, 0.6);
  color: #fdf3e2;
}

.age-gate__btn--no:hover {
  background: rgba(39, 27, 19, 0.95);
}

@media (min-width: 640px) {
  .age-gate__actions {
    flex-direction: row;
  }
}

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