/* Age restriction modal styles */

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

.mv-age-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.98) 60%);
}

.mv-age-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: calc(100% - 2.5rem);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(164, 255, 20, 0.14) 0, rgba(5, 6, 8, 0.98) 55%);
  border: 1px solid rgba(164, 255, 20, 0.6);
  box-shadow: var(--shadow-elevated), 0 0 40px rgba(164, 255, 20, 0.75);
}

.mv-age-header {
  margin-bottom: var(--space-4);
}

.mv-age-header h1 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.mv-age-body p {
  font-size: 0.95rem;
}

.mv-age-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.mv-age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.75rem;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-pill);
  background: rgba(164, 255, 20, 0.16);
  border: 1px solid rgba(164, 255, 20, 0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary-strong);
}

.mv-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.mv-age-btn {
  flex: 1 1 140px;
  justify-content: center;
}

/* Hide helper when confirmed */

.mv-age-modal.is-hidden {
  display: none;
}

@media (max-width: 480px) {
  .mv-age-content {
    padding: var(--space-5);
  }

  .mv-age-header h1 {
    font-size: 1.25rem;
  }
}
