/* style.css - Animasi dan style tambahan untuk platform belajar */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Transisi antar halaman/step */
.animate-in {
    animation: fadeIn 0.5s ease-out forwards;
}

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

/* Kustomisasi scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* State Aktif untuk Path Belajar */
.lesson-node-active {
    filter: drop-shadow(0 10px 15px rgba(59, 130, 246, 0.3));
}

/* Tombol Jawaban Quiz */
.quiz-option {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-option:active {
    transform: scale(0.98);
}
