        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #e63946;
            --secondary: #1d3557;
            --accent: #a8dadc;
            --light: #f1faee;
            --dark: #0d1b2a;
            --gray: #8d99ae;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
            direction: ltr;
        }
        h1, h2, h3, h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; border-left: 5px solid var(--primary); padding-left: 15px; margin-top: 2.5rem;}
        h3 { font-size: 1.5rem; color: var(--primary); margin-top: 2rem;}
        p { margin-bottom: 1.5rem; text-align: justify;}
        a { color: var(--primary); text-decoration: none; transition: var(--transition);}
        a:hover { color: var(--secondary); text-decoration: underline;}
        img { max-width: 100%; height: auto; display: block;}
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center;}
        .bold { font-weight: 700;}
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px;}
        .emoji { font-size: 1.2em; margin-right: 5px;}
        .site-header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo a i { margin-right: 10px; color: var(--accent);}
        .logo a:hover { color: var(--accent); text-decoration: none;}
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: var(--dark);
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active { display: flex;}
        .nav-mobile a {
            color: white;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child { border-bottom: none;}
        .nav-mobile a:hover { background-color: var(--secondary); text-decoration: none;}
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: var(--secondary);}
        .breadcrumb span { color: var(--gray);}
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr;}
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid var(--accent);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #f0f8ff;
            color: #555;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover { background-color: var(--secondary);}
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover { background-color: var(--primary);}
        .web-links-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 2.5rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-links-grid { grid-template-columns: repeat(2, 1fr);}
        }
        .web-link {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #dee2e6;
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo { flex: 1; min-width: 250px;}
        .footer-links { flex: 2; display: flex; justify-content: space-around; flex-wrap: wrap;}
        .footer-links a { color: #ccc; display: block; margin-bottom: 0.8rem;}
        .footer-links a:hover { color: white;}
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem;}
            h2 { font-size: 1.7rem;}
            .nav-desktop { display: none;}
            .hamburger { display: block;}
            .article-content { padding: 1.5rem;}
            .article-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem;}
            .web-links-section { padding: 1.5rem;}
        }
