        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #FF6B35; 
            --secondary: #004E89; 
            --accent: #FFD166; 
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --text: #333333;
            --text-light: #666666;
            --border: #E0E0E0;
            --success: #28A745;
            --warning: #FFC107;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.25rem;
            color: var(--secondary);
            font-weight: 500;
        }
        .highlight {
            background-color: rgba(255, 214, 102, 0.3);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .term {
            color: var(--primary);
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary);
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--secondary);
        }
        nav {
            background-color: var(--secondary);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            display: block;
            font-weight: 500;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0f0f0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            margin-top: 0;
            color: var(--secondary);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
        }
        .sidebar a {
            color: var(--text);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px dotted var(--border);
            transition: var(--transition);
        }
        .sidebar a:hover {
            color: var(--primary);
            padding-left: 10px;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--radius);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        blockquote {
            border-left: 4px solid var(--accent);
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            background-color: rgba(255, 214, 102, 0.1);
            font-style: italic;
            color: var(--secondary);
        }
        .stats-box {
            background: linear-gradient(135deg, var(--secondary), #0066A6);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .stats-box h3 {
            color: var(--accent);
            margin-top: 0;
        }
        .interactive-section {
            background-color: #f9f9f9;
            border-left: 4px solid var(--primary);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--warning);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        button[type="submit"] {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button[type="submit"]:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .web-link p {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 0;
            margin-top: 0.5rem;
        }
        footer {
            background-color: #111;
            color: #ccc;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            color: #ccc;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }
        .copyright {
            font-size: 0.9rem;
            color: #888;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.3rem; }
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-box {
                max-width: 100%;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: var(--secondary);
                flex-direction: column;
                transition: 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .article-content {
                padding: 1.5rem;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        @media print {
            .sidebar, .hamburger, .interactive-section, .footer-links, footer {
                display: none;
            }
        }
