/* LED Banner */
.led-banner{
    width:100%;
    height:80px;
    overflow:hidden;
    background:#040f31;
    border-top:3px solid #00d9ff;
    border-bottom:3px solid #00d9ff;
    position:relative;
    display:flex;
    align-items:center;
}

/* Scrolling track */
.led-track{
    display:flex;
    width:max-content;
    animation:scrollLED 15s linear infinite;
}

/* Item */
.led-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding-right:120px;
    white-space:nowrap;
}

/* Ice image */
.led-item img{
    width:50px;
    height:50px;
    object-fit:contain;

    filter:
        drop-shadow(0 0 5px #00ffff)
        drop-shadow(0 0 15px #00ffff);
}

/* LED text */
.led-item span{
    font-family:Arial, sans-serif;
    font-size:2rem;
    font-weight:bold;
    letter-spacing:4px;
    color:#00ffff;

    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
}

/* Scroll Animation */
@keyframes scrollLED{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}