    :root {
            --primary-color: #e84c3d;
            --secondary-color: #1a1a1a;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .top-header {
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-header a {
            color: #ccc;
            text-decoration: none;
            margin-right: 15px;
        }
        
        .top-header a:hover {
            color: white;
        }
        
        .main-header {
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .search-form {
            position: relative;
        }
        
        .search-form input {
            border-radius: 20px;
            padding-left: 20px;
            padding-right: 40px;
        }
        
        .search-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: transparent;
            border: none;
            color: #666;
        }
        
        .main-menu {
            background-color: var(--primary-color);
        }
        
        .main-menu .navbar-nav .nav-link {
            color: white;
            font-weight: 500;
            padding: 15px 20px;
        }
        
        .main-menu .navbar-nav .nav-link:hover {
            background-color: rgba(0,0,0,0.1);
        }
        
        .breaking-news {
            background-color: #f0f0f0;
            padding: 10px 0;
        }
        
        .news-ticker {
            display: flex;
            align-items: center;
        }
        
        .news-label {
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            font-weight: 600;
            margin-right: 15px;
            white-space: nowrap;
        }
        
        .ticker-content {
            overflow: hidden;
            position: relative;
            height: 30px;
        }
        
        .ticker-content ul {
            position: absolute;
            left: 0;
            top: 0;
            margin: 0;
            padding: 0;
            animation: ticker 15s linear infinite;
        }
        
        .ticker-content li {
            white-space: nowrap;
            list-style: none;
            line-height: 30px;
        }
        
        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        .main-news-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .main-news-card img {
            transition: transform 0.3s ease;
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .main-news-card:hover img {
            transform: scale(1.05);
        }
        
        .news-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px;
            color: white;
        }
        
        .news-category {
            background-color: var(--primary-color);
            color: white;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
            font-weight: 600;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .post-card {
            margin-bottom: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
        }
        
        .post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .post-content {
            padding: 15px;
        }
        
        .post-meta {
            font-size: 12px;
            color: #777;
            margin-bottom: 10px;
        }
        
        .post-title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .post-excerpt {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .sidebar-widget {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .trending-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .trending-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .trending-list li:last-child {
            border-bottom: none;
        }
        
        .trending-list a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: flex-start;
        }
        
        .trending-list a:hover {
            color: var(--primary-color);
        }
        
        .trending-list .number {
            font-size: 18px;
            font-weight: 700;
            color: #ccc;
            margin-right: 10px;
            line-height: 1.2;
        }
        
        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: #eee;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 8px;
            color: #555;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .footer {
            background-color: var(--secondary-color);
            color: #ccc;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            background-color: #111;
            color: #999;
            padding: 20px 0;
            font-size: 14px;
        }
        
        /* Mobile Responsive Adjustments */
        @media (max-width: 991.98px) {
            .top-header .d-flex {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .top-header .ms-auto {
                margin: 10px 0 !important;
            }
            
            .main-header .navbar-brand {
                margin-right: 0;
            }
            
            .news-ticker {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .news-label {
                margin-bottom: 10px;
            }
            
            .ticker-content {
                width: 100%;
            }
        }
        
        @media (max-width: 767.98px) {
            .main-menu .navbar-nav {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .main-menu .nav-link {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .post-card img {
                height: 160px;
            }
            
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer .col-md-3 {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 575.98px) {
            .top-header {
                font-size: 12px;
            }
            
            .main-menu .nav-link {
                padding: 8px 12px;
                font-size: 13px;
            }
            
            .news-label {
                font-size: 14px;
                padding: 3px 10px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .post-title {
                font-size: 16px;
            }
        }