        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f2f7fb;
        }

        /* Top Bar */
        .top-bar {
            background-color: #2c2c2c;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            text-decoration: none;
            font-size: 16px;
        }

        .social-icons a:hover {
            color: #007bff;
        }

        .auth-links a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
        }

        .auth-links a:hover {
            color: #007bff;
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            background-color: transparent;
            border: 1px solid #555;
            color: white;
            padding: 5px 35px 5px 10px;
            border-radius: 3px;
            width: 200px;
        }

        .search-box input::placeholder {
            color: #ccc;
        }

        .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }

        /* Header */
        .main-header {
            background-color: #f2f7fb;
            padding: 20px 0;
            border-bottom: 3px solid #000;
        }

        .logo {
            text-align: center;
        }

        .logo img {
            width: 300px;
        }

        /* .logo h1 {
            font-family: 'Old English Text MT', serif;
            font-size: 3.5rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 5px;
        } */

        /* .logo .tagline {
            font-style: italic;
            color: #666;
            font-size: 1rem;
        } */

        /* Navigation */
        .main-nav {
            background-color: white;
            border-bottom: 1px solid #ddd;
            padding: 0;
        }

        .navbar-nav .nav-link {
            color: #000 !important;
            font-weight: 500;
            padding: 15px 20px !important;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
            border-right: 1px solid #eee;
        }

        .navbar-nav .nav-link:hover {
            background-color: #f8f9fa;
            color: #007bff !important;
        }

        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Hero Section */
        .hero-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .story-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .story-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px 20px 20px;
        }

        .story-title {
            font-size: 1.4rem;
            font-weight: bold;
            line-height: 1.3;
            margin: 0;
        }

        .main-story {
            height: 500px;
        }

        .side-story {
            height: 240px;
            margin-bottom: 20px;
        }

        .side-story:last-child {
            margin-bottom: 0;
        }

        .side-story .story-title {
            font-size: 1.1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            /* .logo h1 {
                font-size: 2.5rem;
            } */

            .search-box input {
                width: 150px;
            }

            .main-story,
            .side-story {
                height: 300px;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767px) {
            .top-bar {
                text-align: center;
            }

            .social-icons,
            .auth-links {
                margin-top: 10px;
            }

            /* .logo h1 {
                font-size: 2rem;
            } */

            .search-box {
                margin-top: 10px;
            }

            .search-box input {
                width: 100%;
            }

            .hero-section {
                padding: 20px 0;
            }

            .story-title {
                font-size: 1.2rem;
            }

            .side-story .story-title {
                font-size: 1rem;
            }
        }

        @media (max-width: 575px) {
            /* .logo h1 {
                font-size: 1.8rem;
            } */

            .navbar-nav .nav-link {
                padding: 12px 15px !important;
                border-right: none;
                border-bottom: 1px solid #eee;
            }

            .story-overlay {
                padding: 20px 15px 15px;
            }
        }

        /* More Top Stories Section */
        .more-stories-section {
            padding: 50px 0;
            background-color: white;
        }

        .more-stories-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .story-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin: 0 10px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .story-item:hover {
            transform: translateY(-5px);
        }

        .story-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .story-item-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 40px 15px 15px;
        }

        .story-item-title {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.3;
            margin: 0;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: static;
            margin-top: 30px;
            margin-bottom: 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: #ccc;
            border: none;
            opacity: 1;
        }

        .carousel-indicators .active {
            background-color: #000;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev {
            left: -25px;
        }

        .carousel-control-next {
            right: -25px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 991px) {
            .story-item img {
                height: 180px;
            }

            .story-item-title {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 767px) {
            .more-stories-section {
                padding: 30px 0;
            }

            .story-item {
                margin: 0 5px;
            }

            .story-item img {
                height: 160px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
        }

        @media (max-width: 575px) {
            .story-item-content {
                padding: 30px 10px 10px;
            }

            .story-item-title {
                font-size: 0.85rem;
            }
        }




        /* News Articles Section */
        .news-section {
            padding: 50px 0;
            background-color: #f2f7fb;
        }

        .news-container {
            display: flex;
            gap: 30px;
        }

        .news-content {
            flex: 1;
        }

        .sidebar {
            width: 300px;
            flex-shrink: 0;
        }

        .news-article {
            background: #f2f7fb;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-article:hover {
            transform: translateY(-3px);
            /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); */
        }

        .news-article-layout {
            display: flex;
            padding: 20px;
            gap: 20px;
            align-items: flex-start;
        }

        .news-image {
            width: 200px;
            height: 140px;
            flex-shrink: 0;
            border-radius: 6px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content-area {
            flex: 1;
        }

        .news-categories {
            margin-bottom: 10px;
        }

        .news-category {
            display: inline-block;
            color: #007bff;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-right: 5px;
        }

        .news-category:hover {
            color: #0056b3;
        }

        .category-separator {
            color: #666;
            margin: 0 5px;
        }

        .news-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 15px;
            line-height: 1.3;
            text-decoration: none;
        }

        .news-title:hover {
            color: #007bff;
        }

        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 13px;
            color: #666;
        }

        .author-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 8px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #666;
        }

        .author-name {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
            margin-right: 8px;
        }

        .author-name:hover {
            color: #0056b3;
        }

        .meta-separator {
            margin: 0 8px;
            color: #ccc;
        }

        .read-time {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .news-excerpt {
            color: #555;
            line-height: 1.5;
            font-size: 14px;
        }

        .advertisement-placeholder {
            background-color: white;
            border: 2px dashed #ddd;
            border-radius: 8px;
            padding: 40px 20px;
            text-align: center;
            color: #999;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .ad-text {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        @media (max-width: 991px) {
            .news-container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
            }

            .news-image {
                width: 160px;
                height: 120px;
            }

            .news-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 767px) {
            .news-section {
                padding: 30px 0;
            }

            .news-article-layout {
                flex-direction: column;
                padding: 15px;
            }

            .news-image {
                width: 100%;
                height: 200px;
            }

            .news-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 575px) {
            .news-article {
                margin-bottom: 20px;
            }

            .news-article-layout {
                gap: 15px;
            }

            .news-image {
                height: 180px;
            }

            .news-meta {
                flex-wrap: wrap;
                gap: 5px;
            }
        }



        .newsletter-banner {
            background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
            color: white;
            padding: 40px 0;
        }

        .newsletter-banner h2 {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .newsletter-banner p {
            font-size: 1rem;
            margin-bottom: 0;
        }

        .btn-newsletter {
            background-color: #fff;
            color: #c41e3a;
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .btn-newsletter:hover {
            background-color: #f8f9fa;
            color: #8b1538;
            transform: translateY(-2px);
        }

        .magazine-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .magazine-section h2 {
            color: #c41e3a;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .magazine-cover {
            width: 100%;
            max-width: 200px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .magazine-cover:hover {
            transform: translateY(-10px);
        }

        .magazine-item {
            text-align: center;
            margin-bottom: 30px;
        }

        .magazine-date {
            color: #666;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .article-item {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .article-image {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
        }

        .article-title {
            color: #333;
            font-weight: bold;
            text-decoration: none;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .article-title:hover {
            color: #c41e3a;
        }

        .article-meta {
            color: #888;
            font-size: 0.8rem;
            margin-top: 5px;
        }

        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 40px 0 20px;
        }

        .footer h5 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .footer a:hover {
            color: #c41e3a;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            font-size: 0.8rem;
        }

        .social-icons a {
            color: #ccc;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #c41e3a;
        }

        @media (max-width: 768px) {
            .newsletter-banner h2 {
                font-size: 1.5rem;
            }

            .magazine-section h2 {
                font-size: 1.7rem;
            }

            .article-item {
                padding: 15px;
            }

            .article-image {
                width: 60px;
                height: 45px;
            }
        }




        /* must watch section */

        .must-watch-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .section-title {
            color: #c41e3a;
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #c41e3a;
        }

        .video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            position: relative;
            overflow: hidden;
            height: 200px;
            background: #000;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(196, 30, 58, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .play-button:hover {
            background: rgba(196, 30, 58, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .video-card-body {
            padding: 20px;
        }

        .video-title {
            color: #333;
            font-weight: bold;
            font-size: 1.1rem;
            line-height: 1.4;
            margin-bottom: 10px;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-title:hover {
            color: #c41e3a;
        }

        .video-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #888;
        }

        .video-date {
            display: flex;
            align-items: center;
        }

        .video-views {
            display: flex;
            align-items: center;
        }

        .featured-video {
            margin-bottom: 40px;
        }

        .featured-video .video-thumbnail {
            height: 300px;
        }

        .featured-video .play-button {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .featured-video .video-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .category-tag {
            background-color: #c41e3a;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: bold;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 10px;
        }

        .view-all-btn {
            background: linear-gradient(135deg, #c41e3a 0%, #8b1538 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-weight: bold;
            border-radius: 30px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
            color: white;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
                text-align: center;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .video-thumbnail {
                height: 180px;
            }

            .featured-video .video-thumbnail {
                height: 220px;
            }

            .play-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .featured-video .play-button {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .video-card-body {
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .must-watch-section {
                padding: 40px 0;
            }

            .video-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }