        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #E63946;
            --primary-orange: #F77F00;
            --dark-gray: #2B2D42;
            --light-gray: #8D99AE;
            --white: #FFFFFF;
            --off-white: #F8F9FA;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--white);
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        /* Sidebar */
        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 280px;
            height: 100vh;
            background: #07002b;
            background: linear-gradient(0deg, rgba(7, 0, 43, 1) 0%, rgba(28, 1, 148, 1) 100%, rgba(114, 45, 253, 1) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 2rem 0;
            transition: transform 0.4s ease;
            box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
        }

        .sidebar.closed {
            transform: translateX(-100%);
        }

        .logo {
            text-align: center;
            padding: 0 2rem 2rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        }

        .logo-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.5);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .logo p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            margin-top: 0.5rem;
            font-weight: 600;
        }

        .nav-menu {
            list-style: none;
            padding: 2rem 0;
        }

        .nav-menu li {
            margin-bottom: 0.5rem;
        }

        .nav-menu a {
            display: block;
            padding: 1rem 2rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--white);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .nav-menu a:hover::before {
            transform: scaleY(1);
        }

        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            padding-left: 2.5rem;
        }

        /* Hamburger */
        .hamburger {
            position: fixed;
            top: 1.5rem;
            left: 1.5rem;
            z-index: 1001;
            cursor: pointer;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            border-radius: 8px;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger span {
            width: 24px;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Main Content */
        .main-content {
            margin-left: 280px;
            transition: margin-left 0.4s ease;
        }

        .main-content.expanded {
            margin-left: 0;
        }

        /* Fire Particles Animation */
        .fire-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: radial-gradient(circle at 30% 30%, #fff, #ffaa00, #ff4500, transparent);
            border-radius: 50%;
            bottom: -20px;
            opacity: 0;
            animation: fireSpark 3s infinite ease-out;
            filter: blur(1px);
        }

        /* Fire spark trail effect */
        .particle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 200%;
            background: linear-gradient(to top, 
                rgba(255, 69, 0, 0.8) 0%,
                rgba(255, 140, 0, 0.5) 30%,
                rgba(255, 215, 0, 0.2) 60%,
                transparent 100%);
            bottom: 0;
            left: 0;
            border-radius: 50% 50% 0 0;
            filter: blur(2px);
        }

        @keyframes fireSpark {
            0% {
                opacity: 1;
                transform: translateY(0) translateX(0) scale(1) rotate(0deg);
            }
            20% {
                opacity: 1;
                transform: translateY(-150px) translateX(20px) scale(1.1) rotate(45deg);
            }
            40% {
                opacity: 0.9;
                transform: translateY(-300px) translateX(-15px) scale(0.9) rotate(-30deg);
            }
            60% {
                opacity: 0.7;
                transform: translateY(-450px) translateX(30px) scale(0.7) rotate(60deg);
            }
            80% {
                opacity: 0.4;
                transform: translateY(-600px) translateX(-10px) scale(0.5) rotate(-45deg);
            }
            100% {
                opacity: 0;
                transform: translateY(-750px) translateX(25px) scale(0.2) rotate(90deg);
            }
        }

        /* Varying particle sizes and animation for more realistic fire effect */
        .particle:nth-child(1) { left: 5%; animation-delay: 0s; width: 10px; height: 10px; animation-duration: 2.8s; }
        .particle:nth-child(2) { left: 10%; animation-delay: 0.2s; width: 14px; height: 14px; animation-duration: 3.2s; }
        .particle:nth-child(3) { left: 15%; animation-delay: 0.4s; width: 8px; height: 8px; animation-duration: 2.5s; }
        .particle:nth-child(4) { left: 20%; animation-delay: 0.6s; width: 12px; height: 12px; animation-duration: 3s; }
        .particle:nth-child(5) { left: 25%; animation-delay: 0.8s; width: 16px; height: 16px; animation-duration: 3.5s; }
        .particle:nth-child(6) { left: 30%; animation-delay: 1s; width: 11px; height: 11px; animation-duration: 2.7s; }
        .particle:nth-child(7) { left: 35%; animation-delay: 1.2s; width: 13px; height: 13px; animation-duration: 3.1s; }
        .particle:nth-child(8) { left: 40%; animation-delay: 1.4s; width: 15px; height: 15px; animation-duration: 3.3s; }
        .particle:nth-child(9) { left: 45%; animation-delay: 1.6s; width: 9px; height: 9px; animation-duration: 2.6s; }
        .particle:nth-child(10) { left: 50%; animation-delay: 1.8s; width: 17px; height: 17px; animation-duration: 3.4s; }
        .particle:nth-child(11) { left: 55%; animation-delay: 0.1s; width: 10px; height: 10px; animation-duration: 2.9s; }
        .particle:nth-child(12) { left: 60%; animation-delay: 0.3s; width: 14px; height: 14px; animation-duration: 3.2s; }
        .particle:nth-child(13) { left: 65%; animation-delay: 0.5s; width: 12px; height: 12px; animation-duration: 2.8s; }
        .particle:nth-child(14) { left: 70%; animation-delay: 0.7s; width: 16px; height: 16px; animation-duration: 3.5s; }
        .particle:nth-child(15) { left: 75%; animation-delay: 0.9s; width: 8px; height: 8px; animation-duration: 2.4s; }
        .particle:nth-child(16) { left: 80%; animation-delay: 1.1s; width: 13px; height: 13px; animation-duration: 3.1s; }
        .particle:nth-child(17) { left: 85%; animation-delay: 1.3s; width: 15px; height: 15px; animation-duration: 3.3s; }
        .particle:nth-child(18) { left: 90%; animation-delay: 1.5s; width: 11px; height: 11px; animation-duration: 2.7s; }
        .particle:nth-child(19) { left: 95%; animation-delay: 1.7s; width: 14px; height: 14px; animation-duration: 3.2s; }
        .particle:nth-child(20) { left: 8%; animation-delay: 1.9s; width: 12px; height: 12px; animation-duration: 3s; }
        .particle:nth-child(21) { left: 12%; animation-delay: 0.15s; width: 10px; height: 10px; animation-duration: 2.8s; }
        .particle:nth-child(22) { left: 18%; animation-delay: 0.35s; width: 16px; height: 16px; animation-duration: 3.4s; }
        .particle:nth-child(23) { left: 22%; animation-delay: 0.55s; width: 9px; height: 9px; animation-duration: 2.5s; }
        .particle:nth-child(24) { left: 28%; animation-delay: 0.75s; width: 13px; height: 13px; animation-duration: 3.1s; }
        .particle:nth-child(25) { left: 32%; animation-delay: 0.95s; width: 11px; height: 11px; animation-duration: 2.9s; }
        .particle:nth-child(26) { left: 38%; animation-delay: 1.15s; width: 15px; height: 15px; animation-duration: 3.3s; }
        .particle:nth-child(27) { left: 42%; animation-delay: 1.35s; width: 14px; height: 14px; animation-duration: 3.2s; }
        .particle:nth-child(28) { left: 48%; animation-delay: 1.55s; width: 8px; height: 8px; animation-duration: 2.6s; }
        .particle:nth-child(29) { left: 52%; animation-delay: 1.75s; width: 12px; height: 12px; animation-duration: 3s; }
        .particle:nth-child(30) { left: 58%; animation-delay: 0.05s; width: 17px; height: 17px; animation-duration: 3.5s; }
        .particle:nth-child(31) { left: 62%; animation-delay: 0.25s; width: 10px; height: 10px; animation-duration: 2.7s; }
        .particle:nth-child(32) { left: 68%; animation-delay: 0.45s; width: 13px; height: 13px; animation-duration: 3.1s; }
        .particle:nth-child(33) { left: 72%; animation-delay: 0.65s; width: 16px; height: 16px; animation-duration: 3.4s; }
        .particle:nth-child(34) { left: 78%; animation-delay: 0.85s; width: 9px; height: 9px; animation-duration: 2.5s; }
        .particle:nth-child(35) { left: 82%; animation-delay: 1.05s; width: 14px; height: 14px; animation-duration: 3.2s; }
        .particle:nth-child(36) { left: 88%; animation-delay: 1.25s; width: 11px; height: 11px; animation-duration: 2.8s; }
        .particle:nth-child(37) { left: 92%; animation-delay: 1.45s; width: 15px; height: 15px; animation-duration: 3.3s; }
        .particle:nth-child(38) { left: 98%; animation-delay: 1.65s; width: 12px; height: 12px; animation-duration: 3s; }
        .particle:nth-child(39) { left: 3%; animation-delay: 1.85s; width: 13px; height: 13px; animation-duration: 3.1s; }
        .particle:nth-child(40) { left: 7%; animation-delay: 0.12s; width: 10px; height: 10px; animation-duration: 2.9s; }

        /* Jumbotron */
        .jumbotron {
            position: relative;
            height: 600px;
            background: #000000;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .jumbotron-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 0.7;
        }

        .jumbotron-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(230, 57, 70, 0.4) 100%);
            z-index: 3;
        }

        .jumbotron-content {
            position: relative;
            z-index: 4;
            text-align: center;
            color: var(--white);
            padding: 2rem;
            max-width: 900px;
        }

        .jumbotron-content h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
            text-transform: uppercase;
        }

        .jumbotron-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            font-weight: 600;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: #35119e;
            background: linear-gradient(0deg, rgba(255, 98, 0, 1) 29%, rgba(255, 0, 0, 1) 100%);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
        }

        /* News Section */
        .news-section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.9rem;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
        }

        .section-subtitle {
            color: var(--light-gray);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .news-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
            border-color: var(--primary-red);
        }

        .news-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
        }

        .news-image-wrapper {
            overflow: hidden;
            position: relative;
        }

        .news-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--light-gray);
        }

        .news-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .news-excerpt {
            color: var(--light-gray);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .read-more {
            color: var(--primary-red);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .read-more:hover {
            gap: 1rem;
        }

        /* Featured News */
        .featured-news {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }

        .featured-main {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            height: 500px;
        }

        .featured-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .featured-main:hover img {
            transform: scale(1.05);
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 2rem;
            color: var(--white);
        }

        .featured-overlay h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .featured-side {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .side-news {
            display: flex;
            gap: 1rem;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .side-news:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
        }

        .side-news img {
            width: 120px;
            height: 120px;
            object-fit: cover;
        }

        .side-news-content {
            padding: 1rem;
            flex: 1;
        }

        .side-news-content h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
        }

        /* Detail Page */
        .detail-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            z-index: 2000;
            overflow-y: auto;
        }

        .detail-page.active {
            display: block;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .detail-header {
            position: relative;
            height: 500px;
            background: var(--dark-gray);
        }

        .detail-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .detail-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
            display: flex;
            align-items: flex-end;
            padding: 3rem;
        }

        .detail-header-content {
            color: var(--white);
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .detail-header-content h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .detail-meta {
            display: flex;
            gap: 2rem;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .close-detail {
            position: fixed;
            top: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 2001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
        }

        .close-detail:hover {
            transform: rotate(90deg) scale(1.1);
        }

        .detail-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }

        .detail-main {
            min-width: 0;
        }

        .detail-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        .sidebar-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary-red);
        }

        .related-news-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 8px;
        }

        .related-news-item:hover {
            background: var(--off-white);
            transform: translateX(5px);
        }

        .related-news-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .related-news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-news-info h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .related-news-meta {
            font-size: 0.75rem;
            color: var(--light-gray);
        }

        .detail-body {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #333;
        }

        .detail-body h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .detail-body p {
            margin-bottom: 1.5rem;
        }

        .detail-body img {
            width: 100%;
            margin: 2rem 0 0px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        footer {
            background: #07002b;
            background: linear-gradient(0deg, rgba(7, 0, 43, 1) 0%, rgba(28, 1, 148, 1) 100%, rgba(114, 45, 253, 1) 100%);
            color: var(--white);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-orange);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Comments Section */
        .comments-section {
            background: var(--off-white);
            padding: 3rem 0;
            margin-top: 3rem;
        }

        .comments-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .comments-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .comment-item {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .comment-author {
            flex: 1;
        }

        .comment-author h4 {
            font-weight: 700;
            color: var(--dark-gray);
            margin-bottom: 0.2rem;
        }

        .comment-date {
            font-size: 0.85rem;
            color: var(--light-gray);
        }

        .comment-text {
            color: #555;
            line-height: 1.7;
        }

        /* Testimonial Slider */
        .testimonial-section {
            padding: 4rem 2rem;
            background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNQxj77keRIzp4bikUggF3QiiTLElmpRPMosxAOWbrzOvjMtRKwhSPbYHV2vHWtvBmWdpXDD1suM0mw16GabsZksNA9yBd1lVR4N-Ic2xjZFQHmCoA2PmvErTqtGlTciaAzvcBeB8S6wACxYA6xmQy5Kw7y5L38hNGm70HDQlbdPV2ajUHyetLZe51zkU/s1920/products_bg.jpg);
        }
            .testimonial-section h2 p {
                color: #FFFFFF !important;
            }
            .testimonial-section .section-title {
                color: #FFFFFF !important;
            }
            .testimonial-section .section-subtitle {
                color: #FFFFFF !important;
            }
            .testimonial-section .section-title::after {
                background: #ffffff !important;
            }

        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 1rem;
        }

        .testimonial-card-slider {
            background: var(--white);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .testimonial-image {
            flex-shrink: 0;
        }

        .testimonial-image img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-red);
        }

        .testimonial-content-slider {
            flex: 1;
        }

        .testimonial-text-slider {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author-slider h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.3rem;
        }

        .testimonial-author-slider p {
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: yellow;
            border: none;
            color: black;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: yellow;
            width: 30px;
            border-radius: 6px;
        }

        /* Character Showcase Section */
        .character-showcase {
            padding: 5rem 2rem;
            background: #35119e;
            background: #ff6200;
            background: linear-gradient(0deg, rgba(255, 98, 0, 1) 29%, rgba(255, 0, 0, 1) 100%);
            position: relative;
            overflow: hidden;
        }

        .character-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0L50 50M50 0L0 50M50 50L100 100M100 50L50 100" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/%3E%3C/svg%3E');
            opacity: 0.3;
        }

        .character-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .character-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            color: var(--white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .character-subtitle {
            text-align: center;
            color: #ccc;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .character-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
            transition: all 0.4s ease;
            background: #000;
            clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
            border: 3px solid #333;
        }

        .character-card::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .character-card:hover::before {
            opacity: 1;
        }

        .character-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 4px solid transparent;
            clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
            border-image: linear-gradient(135deg, var(--primary-red), var(--primary-orange)) 1;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .character-card:hover::after {
            opacity: 1;
        }

        .character-card:hover {
            transform: translateY(-15px) scale(1.02) rotateY(2deg);
            box-shadow: 0 20px 50px rgba(230, 57, 70, 0.5);
            border-color: var(--primary-red);
        }

        .character-image-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
        }

        .character-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 30%;
            height: 30%;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.8), transparent);
            clip-path: polygon(0 0, 100% 0, 0 100%);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .character-card:hover .character-image-wrapper::before {
            opacity: 1;
        }

        .character-image-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 30%;
            height: 30%;
            background: linear-gradient(315deg, rgba(247, 127, 0, 0.8), transparent);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .character-card:hover .character-image-wrapper::after {
            opacity: 1;
        }

        .character-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.1);
            transition: all 0.5s ease;
            transform: scale(1.1);
        }

        .character-card:hover .character-image-wrapper img {
            filter: grayscale(0%) contrast(1);
            transform: scale(1.2);
        }

        .character-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(0);
            transition: all 0.4s ease;
        }

        .character-card:hover .character-overlay {
            background: linear-gradient(to top, rgba(230, 57, 70, 0.9), transparent);
        }

        .character-name {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .character-role {
            color: #ddd;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .character-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        /* Diagonal Slash Lines */
        .character-slash {
            position: absolute;
            width: 4px;
            height: 120%;
            background: linear-gradient(to bottom, transparent, var(--primary-red), transparent);
            top: -10%;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
            pointer-events: none;
        }

        .character-slash:nth-child(1) {
            left: 20%;
            transform: rotate(15deg);
            transition-delay: 0s;
        }

        .character-slash:nth-child(2) {
            left: 50%;
            transform: rotate(-15deg);
            transition-delay: 0.1s;
        }

        .character-slash:nth-child(3) {
            right: 20%;
            transform: rotate(15deg);
            transition-delay: 0.2s;
        }

        .character-card:hover .character-slash {
            opacity: 0.6;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .featured-news {
                grid-template-columns: 1fr;
            }

            .featured-side {
                flex-direction: row;
                overflow-x: auto;
            }

            .side-news {
                min-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .sidebar {
                transform: translateX(-100%);
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .jumbotron {
                height: 450px;
            }

            .jumbotron-content h1 {
                font-size: 2.5rem;
            }

            .jumbotron-content p {
                font-size: 1rem;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .detail-header-content h1 {
                font-size: 2rem;
            }

            .detail-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .jumbotron-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .side-news {
                flex-direction: column;
                min-width: 250px;
            }

            .side-news img {
                width: 100%;
                height: 150px;
            }

            .testimonial-card-slider {
                flex-direction: column;
                text-align: center;
            }

            .testimonial-image img {
                width: 120px;
                height: 120px;
            }

            .detail-content {
                grid-template-columns: 1fr;
            }

            .detail-sidebar {
                position: static;
            }

            .character-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .character-title {
                font-size: 2.5rem;
            }
        }