* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #2563eb;
            --secondary: #7c3aed;
            --accent: #f59e0b;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --success: #10b981;
            --border-radius: 12px;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: var(--border-radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 20px -3px rgba(37, 99, 235, 0.3);
        }
        header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            color: var(--dark);
            padding: 8px 4px;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            overflow: hidden;
            background: white;
        }
        .search-box input {
            padding: 10px 20px;
            border: none;
            outline: none;
            min-width: 250px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 22px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            padding: 18px 20px;
            background: #f1f5f9;
            font-size: 0.95rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: var(--gray);
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-radius: var(--border-radius);
            border-left: 6px solid var(--primary);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--dark);
            line-height: 1.3;
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 25px;
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .meta span i {
            margin-right: 8px;
            color: var(--primary);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent);
            color: var(--dark);
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--secondary);
        }
        .article-content p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 22px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .highlight {
            background: #fef3c7;
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent);
            margin: 30px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .interactive-section {
            background: #f8fafc;
            padding: 30px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            border: 2px dashed #cbd5e1;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .rating {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: var(--accent);
        }
        .comment-form textarea, .score-form input, .search-form input {
            width: 100%;
            padding: 18px;
            border: 2px solid #e2e8f0;
            border-radius: var(--border-radius);
            font-size: 1rem;
            margin-bottom: 20px;
            resize: vertical;
            transition: var(--transition);
        }
        .comment-form textarea:focus, .score-form input:focus, .search-form input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            color: var(--dark);
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 15px;
        }
        .widget-links a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: #f8fafc;
            border-radius: 8px;
            transition: var(--transition);
        }
        .widget-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateX(5px);
        }
        .widget-links i {
            margin-right: 12px;
            font-size: 1.2rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0 40px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            text-align: center;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }
        .web-link a {
            font-weight: 600;
            color: var(--dark);
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 30px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #334155;
            width: 100%;
            color: #cbd5e1;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .nav-links, .search-box {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-menu {
                display: none;
                flex-direction: column;
                background: white;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                z-index: 999;
            }
            .mobile-menu.active {
                display: flex;
            }
            .mobile-menu a {
                padding: 15px;
                border-bottom: 1px solid #f1f5f9;
                font-weight: 600;
            }
            .mobile-menu a:hover {
                background: #f1f5f9;
                color: var(--primary);
            }
            .mobile-search {
                display: flex;
                margin-top: 15px;
            }
            .mobile-search input {
                flex: 1;
                padding: 12px;
                border: 2px solid #e2e8f0;
                border-radius: var(--border-radius) 0 0 var(--border-radius);
            }
            .mobile-search button {
                background: var(--primary);
                color: white;
                border: none;
                padding: 0 20px;
                border-radius: 0 var(--border-radius) var(--border-radius) 0;
                cursor: pointer;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
        }
