.age-gate-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(42, 179, 177, 0.24), transparent 60%),
              rgba(4, 6, 12, 0.96);
  backdrop-filter: blur(26px);
}

.age-gate-modal {
  position: relative;
  width: min(520px, 92vw);
  background-color: var(--color-text);
  color: #14141a;
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-elevated);
  text-align: center;
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: var(--space-4);
}

.age-gate-text {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: #3e3a33;
  margin-bottom: var(--space-6);
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.age-gate-actions .btn-primary {
  width: 100%;
  justify-content: center;
}

.age-gate-secondary-link {
  font-size: var(--font-size-xs);
  color: #7a7364;
}

@media (min-width: 480px) {
  .age-gate-actions {
    flex-direction: row;
    justify-content: center;
  }

  .age-gate-actions .btn-primary {
    width: auto;
    min-width: 180px;
  }
}
