@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

.ispindle-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #000;
    color: #FF0000;
    height: 60px;
    display: flex;
    align-items: center;
    border: 2px solid #333;
    box-shadow: inset 0 0 10px #000;
}

.ispindle-ticker-wrap {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ispindle-scroll 20s linear infinite;
}

.ispindle-ticker-wrap:hover {
    animation-play-state: paused;
}

.ispindle-item {
    font-family: 'VT323', monospace;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #300;
    margin-right: 10px;
}

.ispindle-name {
    color: #FF4444;
}

.ispindle-data {
    color: #FF0000;
}

.ispindle-separator {
    color: #550000;
    font-family: 'VT323', monospace;
    font-size: 24px;
    margin: 0 20px;
}

@keyframes ispindle-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
