/* Age gate — 18+ overlay, once per session */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate.is-open { display: flex; }

.age-gate-panel {
  max-width: 480px;
  width: 100%;
  background: #fdfbf4;
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.age-gate-icon {
  width: 72px;
  height: 72px;
  border: 3px solid #c8a654;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #c8a654;
}
.age-gate h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: #1a1f2e;
  margin-bottom: 16px;
}
.age-gate p {
  color: #5a6275;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate-btn {
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  min-width: 140px;
}
.age-gate-btn--confirm { background: #c8a654; color: #1a1f2e; }
.age-gate-btn--confirm:hover { background: #9d7d34; color: #fdfbf4; }
.age-gate-btn--decline { background: transparent; color: #5a6275; border: 1px solid #5a6275; }
.age-gate-btn--decline:hover { background: #5a6275; color: #fdfbf4; }

.age-gate-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5ddc5;
  font-size: 0.75rem;
  color: #5a6275;
  line-height: 1.5;
}

/* Consent Mode banner */
.consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1f2e;
  color: #fdfbf4;
  padding: 20px 24px;
  z-index: 9500;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.consent-banner.is-open { display: block; }
.consent-banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 720px) {
  .consent-banner .container { grid-template-columns: 1fr; }
}
.consent-banner-text { font-size: 0.875rem; line-height: 1.5; }
.consent-banner-text a { color: #c8a654; text-decoration: underline; }
.consent-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.consent-btn--accept { background: #c8a654; color: #1a1f2e; }
.consent-btn--accept:hover { background: #d4b568; }
.consent-btn--decline { background: transparent; color: #fdfbf4; border: 1px solid rgba(253, 251, 244, 0.35); }
.consent-btn--decline:hover { border-color: #fdfbf4; }
