﻿ 
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.age-gate-box {
    text-align: center;
    max-width: 420px;
    background: #1a1a1a;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    color: white;
}

    .age-gate-box h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 25px;
        font-weight: 600;
    }

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s ease;
}

    .btn.yes {
        background: #4caf50;
        color: white;
    }

    .btn.no {
        background: #d9534f;
        color: white;
    }

    .btn:hover {
        opacity: 0.85;
        transform: translateY(-2px);
    }
