/* Age restriction overlay styles */

.sfv-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(10px);
}

.sfv-age-modal {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  padding: 24px 22px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  color: #f9fafb;
  box-shadow: var(--shadow-strong);
}

.sfv-age-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sfv-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.8);
  color: #facc15;
}

.sfv-age-title {
  font-size: 1.25rem;
}

.sfv-age-text {
  font-size: 0.95rem;
  color: var(--color-neutral-200);
  margin-top: 8px;
}

.sfv-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sfv-age-btn {
  flex: 1;
  justify-content: center;
}

.sfv-age-btn--no {
  /*background: rgba(15, 23, 42, 0.9);*/
}

@media (max-width: 480px) {
  .sfv-age-modal {
    margin: 0 16px;
  }
}
