* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #D4AF37;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #444;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #111;
            color: #ddd;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #000, var(--dark));
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            font-family: 'Impact', 'Devanagari MT', serif;
        }
        .logo span {
            color: var(--primary);
        }
        .search-form {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid var(--gray);
        }
        .search-input {
            padding: 10px 20px;
            background: transparent;
            border: none;
            color: white;
            min-width: 250px;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }
        .search-btn:hover {
            background: #a00;
        }
        .main-nav {
            margin-top: 1rem;
            background: rgba(0,0,0,0.8);
            border-radius: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            margin: 0 5px;
        }
        .nav-list a {
            display: block;
            padding: 12px 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border-radius: 4px;
        }
        .nav-list a:hover,
        .nav-list a.active {
            background: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: white;
        }
        main {
            padding: 2rem 0;
            background: linear-gradient(to bottom, #1a1a1a, #222);
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 5px #000;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #aaa;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .article-content {
            background: rgba(30,30,30,0.8);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .article-content h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--gray);
        }
        .article-content h3 {
            color: #ff9933;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(139, 0, 0, 0.2);
            border-left: 4px solid var(--primary);
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--secondary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: var(--transition);
        }
        .featured-img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: rgba(30,30,30,0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--primary);
        }
        .widget h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffcc00;
            margin: 1rem 0;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            margin: 5px;
        }
        .btn:hover {
            background: #a00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139,0,0,0.4);
        }
        .btn-secondary {
            background: var(--gray);
        }
        .btn-secondary:hover {
            background: #555;
        }
        .comments-section {
            margin-top: 3rem;
            background: rgba(30,30,30,0.8);
            padding: 2rem;
            border-radius: 10px;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--gray);
            border-radius: 5px;
            color: white;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .footer-links {
            background: #000;
            padding: 2rem 0;
            border-top: 2px solid var(--primary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(139,0,0,0.2);
            transform: translateX(5px);
        }
        footer {
            background: #000;
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #333;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            font-size: 1.5rem;
            color: #aaa;
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            .nav-list.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-input {
                min-width: 200px;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .logo {
                font-size: 2rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .important {
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.1em;
        }
        .stats {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px dashed var(--secondary);
        }
