/* Full-screen overlay */
#ageModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 1);  /* fully black */
    display: none;   /* JS will show it */
    justify-content: center;
    align-items: center;
    z-index: 999999;
    overflow: hidden;
}

/* Modal box */
#ageModal {
    background: #000;  /* black background */
    color: #fff;       /* white text */
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: auto;
}

/* Text */
#ageModal h2 { font-size: 24px; margin-bottom: 15px; }
#ageModal p { font-size: 16px; margin-bottom: 25px; }

/* Buttons */
#ageModal button {
    padding: 14px 25px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    margin: 10px 5px;
    border: none;
}

#enterBtn {
    background: #e60073;
    color: #fff;
    margin-right: 15px;
}

#enterBtn:hover { background: #c70063; }

#exitBtn {
    background: #555;
    color: #fff;
    margin-left: 15px;
}

/* Prevent scrolling while modal visible */
body.age-locked {
    overflow: hidden;
    height: 100%;
}
