/* Age Gate Overlay - Dark Premium Theme */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 34, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    overflow: hidden;
}

#age-gate-overlay.hidden {
    animation: fadeOut 0.5s ease forwards;
    pointer-events: none;
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

.age-gate-modal {
    background: #1E1E22;
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.age-gate-logo img {
    max-height: 70px;
    opacity: 0.9;
}

.age-gate-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.age-gate-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.age-gate-btn {
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.age-gate-btn-enter {
    background: var(--primary-bg-light, #B4D700);
    color: #1E1E22;
}

.age-gate-btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 215, 0, 0.3);
}

.age-gate-btn-exit {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-gate-btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.age-gate-disclaimer {
    margin-top: 30px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .age-gate-modal {
        padding: 40px 30px;
        max-width: 90%;
    }

    .age-gate-title {
        font-size: 28px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-btn {
        width: 100%;
    }
}