.live-scores-ticker {
    background: #e8e8e8;
    color: #333;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.ticker-label {
    background: #D50A0A;
    padding: 0 20px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 2;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-right: 2px solid white;
}

.ticker-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    height: 100%;
}

.ticker-content {
    display: flex;
    animation: scroll 25s linear infinite;
    height: 100%;
    align-items: center;
}

.ticker-item {
    white-space: nowrap;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.ticker-item .score {
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

.ticker-item .vs {
    color: #666;
    margin: 0 4px;
}

.ticker-item .game-status {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
}

.ticker-item .away-team,
.ticker-item .home-team {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.ticker-item .score.winning {
    color: #4CAF50;
    font-weight: bold;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.live-scores-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Push body content down to account for fixed ticker */
body {
    padding-top: 40px;
}