/* ========================= OVERLAY ========================= */
.age-popup {
    padding: 0 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* ========================= BOX ========================= */
.age-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    background: #000;
    border: 1px solid #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* ========================= CLOSE BUTTON (hidden) ========================= */
span#closePopup {
    display: none;
}

/* ========================= HEADING ========================= */
.age-box h2 {
    color: #FFF4D9;
    font-size: 28px;
    font-weight: 600;
    width: 100%;
}
.age-box h2 img {
    width: 100%;
    max-width: 20px;
}

/* ========================= PARAGRAPH ========================= */
.age-box p {
    font-size: 20px;
    color: #B1A998;
    margin: 0;
}

/* ========================= BUTTONS WRAPPER ========================= */
.popup-button {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

/* ========================= SHARED BUTTON/LINK STYLE ========================= */
.popup-button a,
.popup-button button {
    background-color: #DC9D03;
    padding: 10px;
    border-radius: 50px;
    font-size: 18px;
    color: #000;
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5B33A;
    text-transform: uppercase;
    font-weight: 600;
    transition-duration: 0.35s;
    cursor: pointer;
    text-decoration: none;
}

/* ========================= ENTER BUTTON ========================= */
.popup-button .enter-button button {
    background-color: #DC9D03;
    color: #000;
}
.popup-button .enter-button button:hover {
    background: none;
    color: #DC9D03;
}
.popup-button .enter-button p {
    font-weight: 500;
    padding-top: 10px;
    font-size: 16px;
}

/* ========================= LEAVE BUTTON ========================= */
.popup-button .leave-button a {
    background: none;
    color: #DC9D03;
}
.popup-button .leave-button a:hover {
    background: #DC9D03;
    color: #000;
}
.popup-button .leave-button p.access {
    font-weight: 600;
    color: #DC9D03;
    padding-top: 15px;
    font-size: 16px;
}

/* ========================= BODY LOCK ========================= */
body.popup-open {
    overflow: hidden;
}


button#enterSite:focus {
    color: #DC9D03;
}