/* AGE POPUP – PANORAMIC, COMPACT ȘI FĂRĂ UMBRĂ NEON */
.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

.age-popup.active {
    display: flex;
}

/* Popup panoramic – lat, compact pe înălțime */
.age-popup-content {
    background: #1a0430;
    color: #fff;
    padding: 35px 50px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 780px;
    max-height: 320px;
    border: 2px solid #bb86fc; /* doar bordură lila */
    /* AM SCOAS UMBRA NEON */
    box-shadow: none; /* fără umbră deloc */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.age-popup-content h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #bb86fc;
    line-height: 1.2;
}

.age-popup-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #e0e0e0;
}

.age-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.age-popup-buttons button {
    min-width: 200px;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#ageYes {
    background: #bb86fc;
    color: #1a0430;
}

#ageYes:hover {
    background: #d4a5ff;
    transform: translateY(-4px);
}

#ageNo {
    background: transparent;
    color: #bb86fc;
    border: 2px solid #bb86fc;
}

#ageNo:hover {
    background: #bb86fc;
    color: #1a0430;
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .age-popup-content {
        padding: 30px 25px;
        max-width: 90%;
        max-height: none;
    }

    .age-popup-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .age-popup-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .age-popup-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .age-popup-buttons button {
        width: 100%;
        padding: 14px;
        font-size: 1.05rem;
    }
}