/* Age-gate (18+) modal */
#ageGate { display: none; }
#ageGate.is-open {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 15, 18, 0.88);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.age-gate-card {
  background: #16161c;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 18px;
  max-width: 440px; width: 100%;
  padding: 32px 28px 26px;
  text-align: center;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}
.age-gate-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #D4B052, #8B6914);
  color: #1a1a20;
  font-size: 22px; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.age-gate-title {
  margin: 0 0 10px;
  font-size: 20px; font-weight: 800; color: #fff;
  letter-spacing: -0.01em;
}
.age-gate-text {
  margin: 0 0 22px;
  font-size: 13.5px; color: #b0b0b8; line-height: 1.55;
}
.age-gate-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.age-gate-btn {
  flex: 1 1 140px;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer;
  text-align: center; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .05s, background .15s;
}
.age-gate-yes {
  background: linear-gradient(135deg, #D4B052, #A88434);
  color: #1a1a20;
  box-shadow: 0 4px 14px rgba(212, 176, 82, 0.3);
}
.age-gate-yes:hover  { background: linear-gradient(135deg, #E0BF65, #B89342); }
.age-gate-yes:active { transform: translateY(1px); }
.age-gate-no {
  background: transparent;
  color: #94949c;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.age-gate-no:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.age-gate-note {
  margin-top: 16px;
  font-size: 11.5px; color: #6a6a72;
  line-height: 1.5;
}
