/* AuroraZone – Age Popup */
.age-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,12,24,.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.age-modal {
  background: linear-gradient(160deg, #112240 0%, #0a1628 100%);
  border: 1px solid rgba(15,212,180,.28);
  border-radius: 20px; padding: 52px 46px;
  max-width: 460px; width: 90%; text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 60px rgba(15,212,180,.08);
  animation: modalIn .4s cubic-bezier(.4,0,.2,1) both;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(.92) translateY(20px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}
.age-modal__icon { font-size: 3rem; color: var(--teal); margin-bottom: 18px; display: block; animation: iconSpin 6s linear infinite; }
@keyframes iconSpin { 0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(8deg)} }
.age-modal__title {
  font-family: 'Trebuchet MS', serif; font-size: 1.85rem;
  color: #fff; margin-bottom: 16px;
}
.age-modal__text { color: rgba(255,255,255,.7); font-size: .93rem; line-height: 1.7; margin-bottom: 13px; }
.age-modal__text strong { color: var(--teal); }
.age-modal__disclaimer {
  font-size: .75rem; color: rgba(255,255,255,.3);
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 32px; border-top: 1px solid rgba(15,212,180,.1);
  padding-top: 13px;
}
.age-modal__buttons { display: flex; flex-direction: column; gap: 11px; }
.btn-enter {
  background: linear-gradient(135deg, #0fd4b4, #09a892);
  color: #0a1628; font-family: 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 700; font-size: .93rem;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: .3s ease; box-shadow: 0 4px 20px rgba(15,212,180,.4);
}
.btn-enter:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,212,180,.55); }
.btn-leave {
  background: transparent; color: rgba(255,255,255,.4);
  font-family: 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 500; font-size: .86rem;
  padding: 11px 28px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12); cursor: pointer;
  transition: .3s ease;
}
.btn-leave:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.65); }
@media (max-width: 480px) {
  .age-modal { padding: 36px 22px; }
  .age-modal__title { font-size: 1.5rem; }
}
