/* /css/main.css */

/* Custom styles for Kick.com feel and animations */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d; /* Even darker background */
    color: #ffffff;
}
.kick-green-text {
    color: #00FF00; /* Kick.com's vibrant green */
}
.kick-green-bg {
    background-color: #00FF00;
}
.kick-green-border {
    border-color: #00FF00;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}
.animate-fade-in.delay-100 { animation-delay: 0.1s; }
.animate-fade-in.delay-200 { animation-delay: 0.2s; }
.animate-fade-in.delay-300 { animation-delay: 0.3s; }
.animate-fade-in.delay-400 { animation-delay: 0.4s; }
.animate-fade-in.delay-500 { animation-delay: 0.5s; }
/* Added the missing animation delays from the login page */
.animate-fade-in.delay-600 { animation-delay: 0.6s; }
.animate-fade-in.delay-700 { animation-delay: 0.7s; }
.animate-fade-in.delay-800 { animation-delay: 0.8s; }
.animate-fade-in.delay-900 { animation-delay: 0.9s; }
.animate-fade-in.delay-1000 { animation-delay: 1s; }


@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}
.pulse-border {
    animation: pulseBorder 2s infinite;
}

/* Mobile menu toggle (Hamburger) */
.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #00FF00;
    margin-bottom: 6px;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-menu.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu slide-down animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
#mobile-menu.open {
    animation: slideDown 0.3s ease-out forwards;
}