
#age-verification-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#age-verification-box {
    background: #121212;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    color: #fff;
    max-width: 400px;
}

#age-verification-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

#age-verification-box p {
    font-size: 16px;
    margin-bottom: 30px;
}

.age-buttons button {
    margin: 0 15px;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

#age-yes {
    background: linear-gradient(90deg, #ff007f, #00ffd5);
    color: #fff;
}

#age-no {
    background: #444;
    color: #fff;
}
