:root {
    --accent-red: #BB2747;
    --text-white: #fff;
}

.atswins-ticker-wrapper .ticker-wrap {
    display: flex;
    width: 100%;
    background: var(--accent-red);
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.atswins-ticker-wrapper .league-label {
    background: var(--accent-red);
    color: white;
    padding: 12px 24px;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 5;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
}

.atswins-ticker-wrapper .league-label.fade-out {
    opacity: 0;
}

.atswins-ticker-wrapper .marquee-window {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent, #BB2747 10%, #BB2747 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #BB2747 10%, #BB2747 90%, transparent);
}

.atswins-ticker-wrapper .marquee-content {
    display: flex;
    padding-left: 100%;
    white-space: nowrap;
}

.atswins-ticker-wrapper .animate {
    animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
    0% {
        padding-left: 100%;
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.atswins-ticker-wrapper .game-card {
    display: flex;
    align-items: center;
    margin-right: 60px;
    gap: 10px;
    color: var(--text-white);
}

.atswins-ticker-wrapper .team-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}