/* Életkor Ellenőrző Popup Stílusok */

#ageVerificationOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #202020;
    z-index: 999999;
    overflow: hidden;
}

#ageVerificationOverlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
}

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

.age-verification-content {
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-verification-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'PT Sans', Arial, sans-serif;
}

.age-verification-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-top: 40px;
}

.age-verify-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: 3px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    min-width: 280px;
    letter-spacing: 1px;
    font-family: 'PT Sans', Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.age-verify-btn:hover {
    background: #ffffff;
    color: #cb451b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.age-verify-btn.btn-yes {
    background: #ffffff;
    color: #cb451b;
}

.age-verify-btn.btn-yes:hover {
    background: #ffa800;
    border-color: #ffffff;
    color: #ffffff;
    transform: scale(1.05) translateY(-3px);
}

.age-verification-footer {
    margin-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .age-verification-content {
        padding: 30px 20px;
    }

    .age-verification-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .age-verification-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .age-verify-btn {
        padding: 15px 40px;
        font-size: 16px;
        min-width: 240px;
    }
}

@media screen and (max-width: 480px) {
    .age-verification-content h1 {
        font-size: 26px;
    }

    .age-verification-content p {
        font-size: 14px;
    }

    .age-verify-btn {
        padding: 12px 30px;
        font-size: 14px;
        min-width: 200px;
    }
}

/* Animáció a gomb megjelenéséhez */
.age-verify-btn {
    animation: scaleIn 0.5s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
