/* Age restriction modal styles */

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

.ull-age-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(56, 189, 248, 0.35), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(132, 204, 22, 0.4), transparent 55%),
    rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
}

.ull-age-dialog {
  position: relative;
  max-width: 28rem;
  margin: 1.5rem;
  padding: 1.5rem 1.4rem 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(59, 130, 246, 0.75);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), transparent 55%), #020617;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 80px rgba(52, 211, 153, 0.6);
  color: #e5e7eb;
}

.ull-age-header {
  margin-bottom: 0.75rem;
}

.ull-age-title {
  margin: 0;
  font-family: "Orbitron", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ull-age-body {
  margin-bottom: 1.1rem;
}

.ull-age-text {
  margin: 0 0 0.55rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.ull-age-text a {
  color: #a5b4fc;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.ull-age-text a:hover,
.ull-age-text a:focus-visible {
  color: #c4b5fd;
}

.ull-age-text-small {
  font-size: 0.8rem;
  color: #9ca3af;
}

.ull-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.ull-age-btn {
  min-width: 7.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out, transform 0.12s ease-out, box-shadow 0.18s ease-out;
}

.ull-age-btn-primary {
  background: linear-gradient(135deg, #22c55e, #a3e635);
  color: #022c22;
  box-shadow: 0 0 20px rgba(132, 204, 22, 0.85);
}

.ull-age-btn-primary:hover,
.ull-age-btn-primary:focus-visible {
  background: linear-gradient(135deg, #4ade80, #bef264);
  transform: translateY(-1px);
}

.ull-age-btn-secondary {
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.9);
}

.ull-age-btn-secondary:hover,
.ull-age-btn-secondary:focus-visible {
  background: #020617;
  border-color: #f97316;
}

.ull-age-btn:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .ull-age-dialog {
    margin: 1rem;
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .ull-age-actions {
    justify-content: stretch;
  }

  .ull-age-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ull-age-overlay *,
  .ull-age-overlay *::before,
  .ull-age-overlay *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
