.age-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 420px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
  animation: popFadeIn 0.35s ease;
}

.age-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.age-buttons button {
  margin: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.age-buttons button:first-child {
  background-color: #159c4e;
  color: #fff;
}

.age-buttons button:last-child {
  background-color: #ccc;
  color: #333;
}

