
    .news-marquee {
        width: 100%;
        background: #0b5ed7;
        color: #fff;
        padding: 12px 0;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    .news-container {
        display: flex;
        align-items: center;
    }

    .news-label {
        background: #ffc107;
        color: #000;
        padding: 8px 15px;
        font-weight: bold;
        white-space: nowrap;
    }

    .marquee {
        overflow: hidden;
        position: relative;
        flex: 1;
    }

    .marquee-content {
        display: inline-block;
        white-space: nowrap;
        animation: scroll-left 20s linear infinite;
    }

    .marquee-content span {
        margin-right: 60px;
    }

    @keyframes scroll-left {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(-100%);
        }
    }
 .hit-counter {
        font-family: "Courier New", monospace;
        font-size: 20px;
        background: #EE82EE;
        color: #00ff00;
        padding: 8px 20px;
        display: inline-block;
        border-radius: 6px;
        letter-spacing: 4px;
    }
