@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:wght@400;600;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.bangers {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 25%, #a8e063 50%, #56ab2f 75%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rainbow-bg {
    background: linear-gradient(135deg, #ff6b9d 0%, #feca57 20%, #48dbfb 40%, #0abde3 60%, #ee5a6f 80%, #ff6b9d 100%);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-marquee-left {
    display: inline-flex;
    animation: marquee-left 30s linear infinite;
}

.animate-marquee-right {
    display: inline-flex;
    animation: marquee-right 30s linear infinite;
}


.float {
    animation: float 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.emoji-bg {
    font-size: 3rem;
    opacity: 0.1;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px) scale(1.1);
}

#toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

#toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.roadmap-line {
    position: relative;
}

.roadmap-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
    transform: translateY(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .roadmap-line::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #ec4899, #8b5cf6, #3b82f6);
        transform: translateX(-50%);
    }
}