/* Hero Animation Effects */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes expand-width {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes count-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 4s ease-in-out infinite;
}

.animate-expand-width {
    animation: expand-width 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.animate-count-up {
    animation: count-up 1.5s ease-out forwards;
}

/* Demo Card Styles */
.demo-card {
    height: auto !important;
    max-height: none !important;
    overflow-y: visible !important;
}

/* Step Progress Styles */
.step-indicator {
    transition: all 0.3s ease-in-out;
}

.step-indicator.active {
    background-color: rgb(79, 70, 229);
    color: white;
}

.steps-content .step-content {
    transition: all 0.5s ease-in-out;
}

/* Responsive fixes for hero section */
@media (max-width: 1023px) {
    .steps-content {
        font-size: 0.9rem;
    }
    
    .event-card, .match-card {
        min-height: 60px;
    }
    
    .demo-card {
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
}

@media (max-width: 768px) {
    .demo-card {
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    .event-card, .match-card {
        min-height: 50px;
    }
}

@media (max-width: 640px) {
    .steps-content {
        font-size: 0.85rem;
    }
    
    .demo-card {
        transform: none !important; /* Disable 3D effect on small screens */
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .event-card img, .match-card img {
        width: 100%;
        height: 100%;
    }
} 