:root {
            --primary-color: #f97316;
            --secondary-color: #1e293b;
            --accent-color: #f59e0b;
            --text-color: #334155;
            --light-bg: #f8fafc;
            --border-color: #cbd5e1;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background-color: var(--secondary-color);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--accent-color);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--secondary-color);
            padding: 1rem;
            border-top: 1px solid #475569;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.75rem 0;
            border-bottom: 1px solid #475569;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: var(--light-bg);
            padding: 0.75rem 0;
            font-size: 0.9rem;
            color: #64748b;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .search-section {
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 1rem 1rem;
        }
        .search-form {
            max-width: 600px;
            margin: 1rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #ea580c;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0 4rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #64748b;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: #fff7ed;
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 0.5rem 0.5rem 0;
        }
        .featured-image {
            width: 100%;
            margin: 2rem 0;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 0.5rem;
            text-align: center;
            border-top: 4px solid var(--primary-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-color);
        }
        .download-box {
            background: linear-gradient(135deg, #1e293b, #334155);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            margin: 3rem 0;
            text-align: center;
        }
        .download-button {
            display: inline-block;
            background: var(--accent-color);
            color: var(--secondary-color);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 1.5rem;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
            transition: var(--transition);
        }
        .download-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(245, 158, 11, 0.6);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 1rem 0;
            letter-spacing: 5px;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            font-family: inherit;
        }
        .rating-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: #ea580c;
        }
        .comment-widget textarea {
            width: 100%;
            min-height: 120px;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            font-family: inherit;
            resize: vertical;
        }
        .longtail-links {
            background: var(--light-bg);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        .site-footer {
            background: var(--secondary-color);
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            .nav-desktop {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .header-top {
                padding: 0.75rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 1rem;
            }
            .search-input,
            .search-button {
                width: 100%;
                border-radius: 0;
                padding: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            .site-header,
            .search-section,
            .sidebar,
            .longtail-links,
            .site-footer {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
                padding: 0;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
