* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #FFD700;
            --dark: #1a1a1a;
            --light: #f8f8f8;
            --gray: #666;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--dark), var(--primary));
            color: white;
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: var(--secondary);
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        .desktop-nav li {
            margin-left: 1.8rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: rgba(255, 215, 0, 0.2);
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .mobile-nav {
            display: none;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
            border-top: 2px solid var(--primary);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 0.8rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: var(--primary);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #eee;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        h2 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--secondary);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        img.featured {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem 0;
            border: 3px solid #eee;
        }
        .interaction-section {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
        }
        .interaction-section h2 {
            border-bottom: none;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        }
        button {
            background: linear-gradient(to right, var(--primary), #a52a2a);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        button:hover {
            background: linear-gradient(to right, #a52a2a, var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(139, 0, 0, 0.2);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--secondary);
        }
        aside {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .sidebar-widget a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }
        .sidebar-widget a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .web-link {
            background: linear-gradient(to right, #f9f9f9, #eee);
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .article-content, aside {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
