/* Age Verification Overlay */
#ageGateOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-gate-modal {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.age-gate-logo {
    margin-bottom: 20px;
}

.age-gate-modal h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
}

.age-gate-modal p {
    margin: 10px 0;
    color: #666;
    line-height: 1.5;
}

.age-gate-form {
    margin: 25px 0;
}

.age-gate-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

#birthYear {
    width: 150px;
    padding: 12px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
}

#birthYear:focus {
    outline: none;
    border-color: #4CAF50;
}

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

.age-gate-buttons button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-verify {
    background: #4CAF50;
    color: white;
}

.btn-verify:hover {
    background: #45a049;
}

.btn-exit {
    background: #f44336;
    color: white;
}

.btn-exit:hover {
    background: #da190b;
}

.age-gate-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 600px) {
    .age-gate-modal {
        padding: 30px 20px;
    }
    
    .age-gate-modal h2 {
        font-size: 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .age-gate-buttons button {
        width: 100%;
    }
}