/* Age restriction (21+/18+) modal styles */

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

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.98));
  backdrop-filter: blur(14px);
}

.age-gate__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin-inline: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #151621, #050608);
  border: 1px solid rgba(209, 169, 84, 0.6);
  box-shadow: var(--shadow-elevated);
}

.age-gate__eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary-strong);
  margin-bottom: var(--space-2);
}

.age-gate__title {
  font-size: var(--font-size-2xl);
  margin-bottom: 0;
}

.age-gate__body {
  margin-top: var(--space-4);
}

.age-gate__body p {
  font-size: var(--font-size-sm);
}

.age-gate__footer {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.age-gate__button {
  min-width: 170px;
}

@media (max-width: 600px) {
  .age-gate__dialog {
    padding: var(--space-4);
  }

  .age-gate__footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .age-gate__button {
    width: 100%;
  }
}

/* Utility class for when age gate is active */
.body--age-gate-active {
  overflow: hidden;
}