
.worldfut-scrolling-banner {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    height: 80px;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.worldfut-scrolling-content {
    display: flex;
    white-space: nowrap;
    animation: worldfutScroll 25s linear infinite;
    will-change: transform;
}

.worldfut-text {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    letter-spacing: 4px;
    padding: 0 80px;
    flex-shrink: 0;
    text-transform: uppercase;
    position: relative;
}

.worldfut-text::before {
    content: "◆";
    color: #888;
    margin-right: 15px;
    font-size: 12px;
}

@keyframes worldfutScroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .worldfut-scrolling-banner {
        height: 50px;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    }
    
    .worldfut-text {
        font-size: 14px;
        padding: 0 40px;
        letter-spacing: 2px;
    }
    
    .worldfut-text::before {
        font-size: 10px;
        margin-right: 10px;
    }
    
    .worldfut-scrolling-content {
        animation: worldfutScroll 18s linear infinite;
    }
}
