/* Scoped Top Banner CSS */
/* #layout-top-banner-root { } Removed empty rule */

#layout-top-banner-root .top-banner {
    height: 55px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#layout-top-banner-root .top-banner-scroll {
    display: flex;
    animation: scrollLoop 20s linear infinite;
    gap: 50px;
    padding-left: 50px;
}

#layout-top-banner-root .top-banner-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    flex-shrink: 0;
}

#layout-top-banner-root .top-banner-text .highlight {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    margin: 0 5px;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    #layout-top-banner-root .top-banner {
        height: 40px;
    }
    
    #layout-top-banner-root .top-banner-text {
        font-size: 11px;
    }
}
