/* CSS for the Age Verification Popup (simple-age-verifier) */

#age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 999999; /* Higher z-index than default to ensure it covers everything */
    display: none; /* Initially hidden, shown by JS */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* Safari support */
}

#age-verification-popup {
    background: #fff;
    padding: 30px;
    text-align: center;
    max-width: 450px;
    width: 90%; /* Responsive width */
    border-radius: 4px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

#age-verification-popup h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

#age-verification-popup p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-btn {
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 15px auto;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#age-btn-enter {
    background-color: #f7b500; /* Yellow/Gold color from your image */
    color: #333;
}

#age-btn-enter:hover {
    background-color: #e5a700;
}

#age-btn-exit {
    background-color: #d9534f; /* Red color from your image */
    color: #fff;
}

#age-btn-exit:hover {
    background-color: #c24642;
}