/* =============================================
   WDA Score Ticker - Responsive CSS Marquee
   Replaces breaking-score-ticker plugin
   ============================================= */

.wda-score-ticker {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #1a1a2e;
    overflow: hidden;
    height: 46px;
    position: relative;
    z-index: 100;
    border-bottom: 2px solid #564e8c;
}

.wda-ticker-label {
    flex-shrink: 0;
    background: #564e8c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
}

.wda-ticker-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff6b35;
}

.wda-ticker-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #564e8c;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    z-index: 2;
}

.wda-ticker-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 10px;
}

.wda-ticker-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: wda-scroll 60s linear infinite;
    will-change: transform;
}

.wda-ticker-inner:hover {
    animation-play-state: paused;
}

.wda-ticker-inner li {
    display: inline-flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
}

.wda-ticker-inner li::after {
    content: '\00B7';
    color: #564e8c;
    font-size: 20px;
    margin: 0 20px;
    line-height: 1;
}

.wda-ticker-inner li:last-child::after {
    content: '';
    margin: 0 60px;
}

.wda-ticker-inner li a {
    color: #e0e0e0;
    text-decoration: none;
}

.wda-ticker-inner li a:hover {
    color: #fff;
    text-decoration: none;
}

.wda-ticker-inner li strong {
    color: #b3a6e8;
    margin-right: 5px;
}

@keyframes wda-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .wda-ticker-label {
        font-size: 10px;
        padding: 0 12px 0 16px;
        letter-spacing: 1px;
    }
    .wda-ticker-inner li {
        font-size: 12px;
    }
}