/* Age restriction modal styles */

.age-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

.age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15,23,42,0.85), rgba(0,0,0,0.95));
}

.age-modal__content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  margin: 0 var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(212,160,23,0.16), rgba(15,23,42,1));
  box-shadow: var(--shadow-strong);
  color: #f9fafb;
}

.age-modal__title {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
  color: #fefce8;
}

.age-modal__description {
  font-size: var(--font-size-sm);
  color: rgba(229,231,235,0.9);
  margin-bottom: var(--space-3);
}

.age-modal__note {
  font-size: var(--font-size-xs);
  color: rgba(209,213,219,0.9);
  margin-bottom: var(--space-5);
}

.age-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.age-modal__btn {
  flex: 1 1 120px;
  justify-content: center;
}

.age-modal__btn--secondary {
  background: rgba(15,23,42,0.7);
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.7);
}

.age-modal__btn--secondary:hover {
  background: rgba(31,41,55,0.95);
}

/* Hidden state (JS will toggle) */
.age-modal--hidden {
  display: none !important;
}
