#age-verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}

#age-verification-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 9999;
    max-width: 500px;
    width: 90%;
}

#age-verification-popup h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

#age-verification-popup p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verify-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 150px;
}

#age-verify-yes {
    background-color: #2fb344;
    color: white;
}

#age-verify-yes:hover {
    background-color: #259d36;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(47, 179, 68, 0.4);
}

#age-verify-no {
    background-color: #dc3545;
    color: white;
}

#age-verify-no:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.4);
}

/* Responsive design */
@media (max-width: 480px) {
    #age-verification-popup {
        padding: 30px 20px;
    }
    
    #age-verification-popup h2 {
        font-size: 24px;
    }
    
    #age-verification-popup p {
        font-size: 16px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-verify-btn {
        width: 100%;
    }
}
