/* Breaking News Ticker */
.sa-ticker {
    background: var(--sa-breaking);
    color: #fff;
    height: var(--sa-ticker-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: var(--sa-z-ticker);
}

.sa-ticker--hidden {
    display: none;
}

.sa-ticker__label {
    flex-shrink: 0;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.2);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sa-ticker__dot {
    width: 8px;
    height: 8px;
    background: #fff;
    display: inline-block;
    animation: ticker-pulse 1.5s infinite;
}

@keyframes ticker-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.sa-ticker__track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.sa-ticker__items {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    height: 100%;
    align-items: center;
    white-space: nowrap;
}

.sa-ticker__item {
    padding: 0 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.sa-ticker__item a {
    color: #fff;
}

.sa-ticker__item a:hover {
    text-decoration: underline;
}

.sa-ticker__divider {
    color: rgba(255,255,255,0.4);
    padding: 0 5px;
}

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

/* Lige Nu Bar */
.sa-lige-nu {
    background: var(--sa-bg-card);
    border: 1px solid var(--sa-border);
    margin-bottom: var(--sa-gap);
}

.sa-lige-nu__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--sa-accent);
    color: #fff;
}

.sa-lige-nu__dot {
    width: 8px;
    height: 8px;
    background: #fff;
    animation: ticker-pulse 1.5s infinite;
}

.sa-lige-nu__title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-lige-nu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa-lige-nu__item {
    padding: 12px 16px;
    border-bottom: 1px solid var(--sa-border);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sa-lige-nu__item:last-child {
    border-bottom: 0;
}

.sa-lige-nu__time {
    font-size: 16px;
    font-weight: 800;
    color: var(--sa-accent);
    white-space: nowrap;
    min-width: 48px;
}

.sa-lige-nu__text {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.sa-lige-nu__source {
    color: var(--sa-text-muted);
    font-weight: 400;
    font-size: 13px;
}

.sa-lige-nu__text a {
    color: var(--sa-text);
}

.sa-lige-nu__text a:hover {
    color: var(--sa-accent);
}

.sa-lige-nu__breaking {
    color: var(--sa-breaking);
    font-weight: 800;
}
