.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  }

.age-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}
.age-card h2 {
  margin-bottom: 1rem;
}
.age-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.age-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}
.btn-yes {
  background: #ff4d6d;
  color: white;
}
.btn-no {
  background: #444;
  color: white;
}
.hidden {
  display: none;
}