        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background-color: #f8f9fa; color: #333; line-height: 1.6; }
        .site-header { background: linear-gradient(135deg, #ff5722 0%, #d32f2f 100%); color: white; padding: 1rem 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo a { font-size: 2.2rem; font-weight: 800; color: white; text-decoration: none; letter-spacing: -1px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .logo span { color: #ffeb3b; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { color: white; text-decoration: none; font-weight: 600; padding: 0.5rem 1rem; border-radius: 4px; transition: background 0.3s; }
        .nav-desktop a:hover { background: rgba(255,255,255,0.2); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background: #d32f2f; position: absolute; top: 100%; left: 0; width: 100%; padding: 1rem; box-shadow: 0 6px 12px rgba(0,0,0,0.15); }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: white; padding: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
        .breadcrumb { background: #eee; padding: 0.8rem 2rem; font-size: 0.9rem; max-width: 1200px; margin: 0 auto; }
        .breadcrumb a { color: #d32f2f; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .container { max-width: 1200px; margin: 2rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) { .container { grid-template-columns: 1fr; } }
        article { background: white; border-radius: 12px; padding: 2.5rem; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
        h1 { color: #d32f2f; font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.2; border-left: 6px solid #ff9800; padding-left: 1rem; }
        h2 { color: #333; font-size: 2rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #ff9800; }
        h3 { color: #555; font-size: 1.5rem; margin: 1.8rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        .highlight { background: #fffde7; padding: 1.5rem; border-radius: 8px; border-left: 5px solid #ffeb3b; margin: 1.5rem 0; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .feature-img { width: 100%; border-radius: 10px; margin: 2rem 0; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
        .caption { text-align: center; font-style: italic; color: #666; margin-top: -1rem; margin-bottom: 2rem; }
        aside { background: white; border-radius: 12px; padding: 2rem; box-shadow: 0 6px 20px rgba(0,0,0,0.08); align-self: start; }
        .sidebar-widget { margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.3rem; color: #d32f2f; margin-bottom: 1rem; }
        .search-form, .comment-form, .rating-form { display: flex; flex-direction: column; gap: 1rem; }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select { padding: 0.8rem; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; }
        .search-form button, .comment-form button, .rating-form button { background: #ff5722; color: white; border: none; padding: 0.9rem; border-radius: 6px; font-weight: bold; cursor: pointer; transition: background 0.3s; }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover { background: #d32f2f; }
        .stars { display: flex; gap: 5px; font-size: 1.5rem; color: #ffc107; margin: 0.5rem 0; }
        .footer-links { max-width: 1200px; margin: 3rem auto 1rem; padding: 0 2rem; }
        .web-link { display: inline-block; background: #e9ecef; margin: 0.5rem; padding: 0.8rem 1.5rem; border-radius: 30px; }
        .web-link a { color: #d32f2f; text-decoration: none; font-weight: 600; }
        .web-link a:hover { text-decoration: underline; }
        footer { background: #222; color: #ddd; padding: 3rem 2rem 1.5rem; margin-top: 3rem; text-align: center; }
        .footer-container { max-width: 1200px; margin: 0 auto; }
        .copyright { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #444; font-size: 0.9rem; color: #aaa; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .container { padding: 0 1rem; }
            article, aside { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
        }
        .text-bold { font-weight: 800; color: #d32f2f; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
