/* Basic styles for the popup */
#age-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    z-index: 9999;
    display: none;
}

#age-banner button {
    padding: 10px 20px;
    margin: 10px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#age-banner button:hover {
    background-color: darkred;
}