.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

body.modal-open {
    overflow: hidden;
}

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

.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 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.age-buttons button {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-width: 140px;
}

.age-buttons button:first-child {
    background-color: #2e7d32;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.age-buttons button:last-child {
    background-color: transparent;
    color: #555;
    border: 2px solid #ddd;
}

.age-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.age-buttons button:active {
    transform: translateY(0);
}
