/* Age Gate CSS Styles */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.age-gate-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 6rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.age-gate-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.age-gate-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.age-gate-btn {
    padding: 5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 150px;
}

.age-gate-btn-yes {
    background: linear-gradient(to right, #4cd964, #2ecc71);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.age-gate-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

.age-gate-btn-no {
    background: linear-gradient(to right, #ff5e57, #ff3b30);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}

.age-gate-btn-no:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.6);
}

.age-gate-error {
    color: #ffcc00;
    font-weight: bold;
    margin-top: 25px;
    display: none;
    font-size: 18px;
    padding: 15px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ffcc00;
}

.age-gate-footer {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
    .age-gate-container {
        padding: 25px;
        width: 95%;
    }
    
    .age-gate-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-gate-btn {
        width: 100%;
        min-width: auto;
    }
}