/* ==========================================================================
   CUSTOM ANIMATIONS & TRANSITIONS (Dribbble Theme)
   ========================================================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(1.1);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(197, 255, 0, 0.2);
        box-shadow: 0 0 15px rgba(197, 255, 0, 0.05);
    }
    50% {
        border-color: rgba(197, 255, 0, 0.6);
        box-shadow: 0 0 25px rgba(197, 255, 0, 0.2);
    }
}

/* Infinite Scrolling Marquee */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #000;
    border-top: 1px solid #1f2937;
    border-bottom: 1px solid #1f2937;
    padding: 20px 0;
    display: flex;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    gap: 40px;
    padding-right: 40px;
}

.marquee-item {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 2px;
}

.marquee-item span {
    color: #c5ff00; /* Neon Lime */
}

/* Scroll Reveal settings */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Grid overlay lines */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
}
