/* SIKERES ANIMÁCIÓ - OVERLAY */
.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.success-overlay.active {
    display: flex;
}

.success-box {
    text-align: center;
    animation: successPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* PIPÁS KÖR - LEFELÉ JÖVŐ ANIMÁCIÓVAL */
.check-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #3f8f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 20px 60px rgba(63, 143, 63, 0.4);
    animation: dropIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.check-circle i {
    font-size: 4rem;
    color: white;
    animation: checkPop 0.5s ease 0.3s both;
}

.success-box h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    animation: fadeUp 0.6s ease 0.4s both;
}

.success-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 8px;
    animation: fadeUp 0.6s ease 0.6s both;
}

@keyframes dropIn {
    0% {
        transform: translateY(-200px) scale(0.5);
        opacity: 0;
    }
    60% {
        transform: translateY(20px) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes checkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successPopIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}