 /* --- GENERAL STYLES --- */
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            color: #000;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* News Red Color */
        .text-news-red { color: #CC0000; }
        .bg-news-red { background-color: #CC0000; }

        /* --- HEADER --- */
        .news-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;
        }
        
        .header-thick-line {
            height: 2px;
            background-color: #000;
            width: 100%;
        }

        .nav-link-custom {
            font-size: 14px;
            font-weight: 700;
            color: #000;
            text-decoration: none;
            margin-right: 16px;
            text-transform: uppercase;
        }
        .nav-link-custom:hover { color: #cc0000; }

        .btn-signin {
            border: 1px solid #ccc;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 700;
            color: #000;
            background: white;
            border-radius: 8px;
            transition: 0.2s;
        }
        .btn-signin:hover { background-color: #f8f9fa; }

        /* --- TICKER SECTION --- */
        .ticker-scroll {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .ticker-scroll::-webkit-scrollbar { display: none; }

        .ticker-item {
            cursor: pointer;
            position: relative;
            padding-bottom: 10px;
            min-width: 290px;
        }

        .ticker-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            background-color: #ddd;
        }

        .ticker-label {
            color: #CC0000;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
        }

        .ticker-headline {
            font-size: 15px;
            line-height: 1.2;
            color: #000;
            font-weight: 500;
        }

        .active-bar {
            position: absolute;
            bottom: -17px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #CC0000;
            z-index: 10;
        }

        .border-bottom-ticker {
            border-bottom: 1px solid #e6e6e6;
        }

        /* --- POST / VIDEO AREA --- */
        .post-container {
            border-bottom: 1px solid #e6e6e6;
            margin-bottom: 30px;
            padding-bottom: 30px;
        }

        .badge-breaking {
            background-color: #CC0000;
            color: white;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 2px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }

        .headline-main {
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }

        .img-adv {
            max-width: 100%;
            width: 380px;
            display: block;
            margin: 25px auto 0;
            opacity: 0.8;
            filter: grayscale(100%);
        }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {

            .imag-logocnn{
                width: 50px !important;
            }
            .ticker-grid {
                display: flex;
                gap: 20px;
                padding-bottom: 15px;
            }
            .headline-main {
                font-size: 20px; 
            }
            .ticker-item {
                min-width: 260px;
            }
        }