/* Age Verification Popup */
.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.age-verify-popup {
    background: #ffffff;
    border-radius: 8px;
    padding: 50px 40px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: agePopIn 0.35s ease-out;
}

@keyframes agePopIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-verify-popup .age-verify-logo {
    margin-bottom: 24px;
}

.age-verify-popup .age-verify-logo img {
    max-height: 70px;
    width: auto;
}

.age-verify-popup h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

.age-verify-popup p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.age-verify-buttons {
    display: flex;
    gap: 16px;
}

.age-verify-buttons button {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.age-verify-btn-under {
    background: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.age-verify-btn-under:hover {
    background: #f5f5f5;
}

.age-verify-btn-over {
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
}

.age-verify-btn-over:hover {
    background: #333333;
    border-color: #333333;
}

/* Hide page scrollbar when popup is visible */
body.age-verify-active {
    overflow: hidden;
}

@media (max-width: 480px) {
    .age-verify-popup {
        padding: 36px 24px 28px;
    }

    .age-verify-popup h2 {
        font-size: 22px;
    }

    .age-verify-popup p {
        font-size: 14px;
    }

    .age-verify-buttons button {
        font-size: 14px;
        padding: 12px 16px;
    }
}
