/* ============================
   Age Verification Gate
   ============================ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate[hidden] {
  display: none;
}

.age-gate-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  position: relative;
}

.age-gate-mark {
  margin-bottom: 24px;
}
.age-gate-mark svg {
  width: 48px;
  height: 48px;
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}

.age-gate-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.age-gate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.age-gate-btn-primary {
  background: var(--accent);
  color: #0C0C0C;
  border-color: var(--accent);
}

.age-gate-btn-primary:hover,
.age-gate-btn-primary:focus-visible {
  background: #e89a1c;
  box-shadow: 0 4px 20px rgba(212, 137, 26, 0.35);
  outline: none;
}

.age-gate-btn-secondary {
  background: transparent;
  color: var(--fg-muted);
  border-color: var(--border);
}

.age-gate-btn-secondary:hover,
.age-gate-btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--fg);
  outline: none;
}

.age-gate-fineprint {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--fg-dim);
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 360px;
}

@media (max-width: 480px) {
  .age-gate { padding: 16px; }
  .age-gate-card {
    max-width: none;
    padding: 28px 24px;
    border-radius: 12px;
  }
  .age-gate-actions { gap: 10px; }
  .age-gate-btn { padding: 12px 22px; }
}
