* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #d97706;
            --secondary: #1e293b;
            --accent: #dc2626;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fbbf24, #dc2626);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--primary);
            border-radius: 50px 0 0 50px;
            background: #1e293b;
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #b45309;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            padding: 15px 0;
            border-top: 1px solid #334155;
        }
        nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover,
        nav a.active {
            color: var(--primary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 15px 0;
            color: #94a3b8;
            font-size: 0.95rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #94a3b8;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #475569;
        }
        .meta-item i {
            margin-right: 8px;
            color: var(--primary);
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        h2, h3 {
            color: #fbbf24;
            margin: 35px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #475569;
        }
        h2 {
            font-size: 2rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #d97706, #dc2626);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #fbbf24;
        }
        .download-box {
            background: #0f172a;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
            border: 2px dashed var(--primary);
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(45deg, #d97706, #dc2626);
            color: white;
            padding: 18px 45px;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            margin: 15px 0;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
        }
        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(217, 119, 6, 0.6);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-card {
            background: #1e293b;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid var(--primary);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fbbf24;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
        }
        .widget-title {
            color: #fbbf24;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #475569;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            color: #dc2626;
            transform: scale(1.2);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: #1e293b;
            border: 1px solid #475569;
            border-radius: 8px;
            color: white;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #b45309;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 60px 0 40px;
            padding: 40px 0;
            border-top: 2px solid #475569;
            border-bottom: 2px solid #475569;
        }
        .web-link {
            background: #1e293b;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #334155;
            transform: translateX(5px);
        }
        .web-link a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 1rem;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            text-align: center;
            padding: 40px 0;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex: 0 1 300px;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                flex: 1 1 100%;
                margin-top: 20px;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                padding: 0;
            }
            nav ul.active {
                max-height: 500px;
                padding: 20px 0;
            }
            nav li {
                border-bottom: 1px solid #334155;
                padding: 12px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #1e293b;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
