        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary-dark: #0a0a14;
            --primary-red: #8b0000;
            --primary-gold: #d4af37;
            --secondary-gray: #2a2a3a;
            --text-light: #f0f0f0;
            --text-dim: #b0b0c0;
            --accent-blue: #1e90ff;
            --accent-purple: #9370db;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 0.5rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-blue);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-purple);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, var(--secondary-gray), transparent);
            border-left: 4px solid var(--primary-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .term {
            color: var(--primary-gold);
            font-weight: bold;
            cursor: help;
            border-bottom: 1px dotted var(--primary-gold);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, #000000 0%, var(--primary-dark) 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: all 0.3s ease;
            position: relative;
        }
        .logo:hover {
            color: var(--primary-gold);
            transform: scale(1.05);
        }
        .logo::after {
            content: "INDIA";
            font-size: 1rem;
            color: var(--primary-gold);
            position: absolute;
            bottom: -10px;
            right: 0;
            letter-spacing: 1px;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background-color: var(--primary-red);
            color: var(--primary-gold);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            padding: 10px;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: flex;
            }
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            transition: 0.3s;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 20, 0.98);
            padding: 2rem;
            z-index: 999;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.5s ease;
        }
        .mobile-nav.active {
            display: flex;
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav .nav-link {
            padding: 1rem;
            border-bottom: 1px solid var(--secondary-gray);
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--secondary-gray);
            margin-bottom: 2rem;
        }
        .breadcrumb-content {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .breadcrumb span {
            color: var(--primary-gold);
        }
        main {
            min-height: 100vh;
            padding: 2rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(42, 42, 58, 0.5);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-dim);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--secondary-gray);
            flex-wrap: wrap;
            gap: 1rem;
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid var(--primary-gold);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: rgba(42, 42, 58, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--primary-red);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        .search-box {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            background-color: var(--primary-dark);
            border: 2px solid var(--secondary-gray);
            border-right: none;
            color: var(--text-light);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #a00000;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
        }
        .star {
            color: var(--secondary-gray);
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--primary-gold);
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.8rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--secondary-gray);
            color: var(--text-light);
            border-radius: 4px;
        }
        .rating-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-form button:hover {
            background-color: #a00000;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--secondary-gray);
            color: var(--text-light);
            border-radius: 4px;
        }
        .comment-form button {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #1c86ee;
        }
        footer {
            background: linear-gradient(180deg, var(--primary-dark) 0%, #000000 100%);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-red);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .web-link {
            background-color: rgba(42, 42, 58, 0.5);
            padding: 1.2rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        .web-link:hover {
            background-color: rgba(42, 42, 58, 0.8);
            border-left-color: var(--primary-gold);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--accent-blue);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-gold);
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--secondary-gray);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-content {
                padding: 1.5rem;
            }
            .featured-image {
                height: 300px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #a00000;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .p-2 { padding: 2rem; }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 3rem 0;
        }
