:root {
            --primary: #2563eb;
            --secondary: #1e40af;
            --accent: #f59e0b;
            --text: #1f2937;
            --light: #f8fafc;
            --gray: #6b7280;
            --border: #d1d5db;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:hover {
            color: var(--primary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text);
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
        }
        .breadcrumb a {
            color: var(--gray);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--text);
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        }
        .tip-box {
            background: #dbeafe;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary);
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .search-box, .rating-widget, .comment-form {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
        }
        .search-box h3, .rating-widget h3, .comment-form h3 {
            margin-top: 0;
            color: var(--primary);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        button:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #d1d5db;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #f59e0b;
        }
        .footer-links {
            background: #1e293b;
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #93c5fd;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2rem 0;
            text-align: center;
        }
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .bold {
            font-weight: 800;
            color: var(--secondary);
        }
        .keyword {
            background: #e0f2fe;
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .spacing {
            margin: 2.5rem 0;
        }
