/* Age restriction modal styles */

.bfr-age {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bfr-age__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(0, 0, 0, 0.96));
  backdrop-filter: blur(6px);
}

.bfr-age__dialog {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding-inline: var(--space-4);
}

.bfr-age__content {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 70%);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.bfr-age__title {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
  text-align: center;
}

.bfr-age__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  text-align: center;
}

.bfr-age__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bfr-age__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .bfr-age__content {
    padding-inline: var(--space-8);
  }

  .bfr-age__actions {
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bfr-age__backdrop {
    backdrop-filter: none;
  }
}
