/* Age restriction full-screen modal overlay */

.nf-age {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

.nf-age--visible {
  display: flex;
}

.nf-age__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 45, 119, 0.35), rgba(5, 5, 16, 0.98));
  backdrop-filter: blur(14px);
}

.nf-age__modal {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: var(--space-16);
  border-radius: var(--radius-lg);
  padding: var(--space-20);
  background: radial-gradient(circle at top left, rgba(255, 45, 119, 0.22), transparent 65%),
              linear-gradient(145deg, rgba(15, 15, 35, 0.98), rgba(5, 5, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.nf-age__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.nf-age__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-12);
}

.nf-age__body p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.nf-age__footer {
  margin-top: var(--space-20);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: flex-end;
}

.nf-age__btn {
  min-width: 0;
}

.nf-age__btn--no {
  order: 1;
}

.nf-age__btn--yes {
  order: 2;
}

@media (max-width: 480px) {
  .nf-age__modal {
    padding: var(--space-16);
  }

  .nf-age__title {
    font-size: var(--font-size-2xl);
  }

  .nf-age__footer {
    flex-direction: column-reverse;
  }

  .nf-age__btn {
    width: 100%;
    justify-content: center;
  }
}
