#age-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
#age-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
#age-modal .logo {
  margin-bottom: 20px;
}
#age-modal .logo-img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}

#age-modal h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 10px 0;
}

#age-modal .desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5;
}

#age-modal .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

#age-modal button {
  flex: 1;
  min-width: 220px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  line-height: 1.3;
  transition: all 0.2s ease-in-out;
  text-transform: none !important;
}

#yes-age {
  background-color: #2f8e59;
  color: white;
}

#yes-age span {
  font-size: 12px !important;
  font-weight: 400;
  display: block;
  opacity: 0.9;
}

#yes-age:hover {
  background-color: #257a4d;
}

#no-age {
  background-color: #fff;
  border: 2px solid #ee6b57 !important;
  color: #000 !important;
}

#no-age span {
  font-size: 12px !important;
  font-weight: 400 !important;
  display: block;
  opacity: 0.9;
}

#no-age:hover {
  background-color: #fff1ef;
}

#age-alert {
  display: none;
  background-color: #ee6b57;
  color: white;
  border-radius: 6px;
  padding: 10px;
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

#age-modal .disclaimer {
  font-size: 12px;
  color: #555;
  margin-top: 25px;
  line-height: 1.4;
}

#age-modal .note {
  font-size: 12px;
  color: #333;
  margin-top: 10px;
}
