/* ========================================
   AGE GATE STYLES - SEO FRIENDLY
   ======================================== */

#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 50%, #2d0a1e 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Class to hide age gate when verified */
.age-gate-hidden {
    display: none !important;
}

.age-gate-content {
    background: rgba(26, 26, 46, 0.98);
    border: 3px solid #ff3366;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

.age-gate-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ff3366;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-gate-content p {
    color: #a0a0b0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-enter {
    background: linear-gradient(135deg, #ff3366, #e62958);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.btn-leave {
    background: transparent;
    color: #a0a0b0;
    border: 2px solid #2a2a40;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.btn-leave:hover {
    border-color: #ff3366;
    color: #ff3366;
}

.age-gate-terms {
    font-size: 0.8rem;
    color: #6a6a7a;
}

.age-gate-terms a {
    color: #ff3366;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .age-gate-content {
        padding: 2rem 1.5rem;
    }
    
    .age-gate-content h1 {
        font-size: 1.5rem;
    }
}