        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e94560;
            --accent-light: #ff7b9c;
            --text-color: #f1f1f1;
            --text-secondary: #b8b8b8;
            --bg-dark: #0f1419;
            --bg-card: #1e2a3a;
            --border-color: #2d3e50;
            --success-color: #4CAF50;
            --warning-color: #ff9800;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--bg-dark);
            background-image: linear-gradient(to bottom, #0a0e14, #131a24);
            min-height: 100vh;
        }
        .hindi-font {
            font-family: 'Noto Sans Devanagari', var(--font-body);
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--accent-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-light);
            margin-top: 2.5rem;
            border-left: 4px solid var(--accent-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-color);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.15rem;
        }
        strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        em {
            color: #ffd166;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-color);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: var(--accent-light);
            transform: scale(1.05);
        }
        .logo i {
            font-size: 2.5rem;
        }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: 2px solid var(--border-color);
            background-color: var(--secondary-color);
            color: var(--text-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
        }
        .search-form button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background-color: var(--accent-light);
            transform: translateY(-50%) scale(1.1);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        nav {
            background-color: var(--secondary-color);
            border-top: 1px solid var(--border-color);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            display: block;
            padding: 18px 22px;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-links a:hover {
            background-color: rgba(233, 69, 96, 0.1);
            color: var(--accent-light);
        }
        .nav-links a.active {
            background-color: var(--accent-color);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(30, 42, 58, 0.7);
            margin-bottom: 30px;
            border-radius: 0 0 10px 10px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb a:hover {
            color: var(--accent-light);
        }
        .breadcrumb li:last-child a {
            color: var(--accent-color);
            font-weight: bold;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        .article-content {
            background-color: rgba(30, 42, 58, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
        }
        .featured-image {
            width: 100%;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.3);
        }
        .info-box {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .info-box h3 {
            margin-top: 0;
            color: var(--accent-light);
        }
        .trailer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .trailer-card {
            background-color: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        .trailer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(233, 69, 96, 0.2);
            border-color: var(--accent-color);
        }
        .trailer-thumbnail {
            height: 180px;
            background-color: #000;
            position: relative;
            overflow: hidden;
        }
        .trailer-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(233, 69, 96, 0.8);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        .trailer-card:hover .play-icon {
            background-color: var(--accent-color);
            transform: translate(-50%, -50%) scale(1.1);
        }
        .trailer-info {
            padding: 20px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(30, 42, 58, 0.7);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--accent-color);
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .rating-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 15px;
        }
        .rating-form button:hover {
            background-color: var(--accent-light);
            transform: translateY(-3px);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background-color: var(--secondary-color);
            color: var(--text-color);
            margin-bottom: 15px;
            min-height: 150px;
            resize: vertical;
            font-family: var(--font-body);
        }
        .comment-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: all 0.3s ease;
        }
        .comment-form button:hover {
            background-color: var(--accent-light);
        }
        .footer-links {
            background-color: var(--primary-color);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--accent-color);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        @media (max-width: 992px) {
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(233, 69, 96, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: var(--accent-light);
        }
        footer {
            background-color: var(--secondary-color);
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .article-content {
                padding: 25px;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .article-content {
                padding: 20px;
            }
            .trailer-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .highlight {
            background-color: rgba(233, 69, 96, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-color);
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
