@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}
.animate-fadeIn.delay-200 { animation-delay: 0.2s; }
.animate-fadeIn.delay-400 { animation-delay: 0.4s; }
.animate-fadeIn.delay-600 { animation-delay: 0.6s; }

@keyframes glow {
    0%, 100% { 
        filter: drop-shadow(5px 0 15px #E40082);
    }
    50% { 
        filter: drop-shadow(-10px 0 20px #E40082);
    }
}

.animate-glow {
    animation: glow 10s ease-in-out infinite;
}

html {
    scroll-behavior: smooth;
}
html {
    scroll-behavior: smooth;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, #E40082 0%, #FF1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(228, 0, 130, 0.3);
}

.navbar-blur {
    backdrop-filter: blur(10px);
    background: rgba(26, 26, 29, 0.95);
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in {
    animation: slideInFromLeft 0.5s ease-out;
}