:root {
            --primary: #4a6bff;
            --secondary: #ff6b9d;
            --accent: #00d4aa;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), #6a4bff);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 107, 255, 0.3);
            background: linear-gradient(135deg, #6a4bff, var(--primary));
        }
        .header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, 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-desktop {
            display: flex;
            gap: 32px;
        }
        .nav-desktop a {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a:hover {
            color: var(--primary);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            border-top: 1px solid #eee;
            animation: slideDown 0.4s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 600;
        }
        .breadcrumb {
            background: #f9f9ff;
            padding: 15px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid #eaeaff;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 8px;
            color: #aaa;
        }
        .search-box {
            background: linear-gradient(135deg, #f0f4ff, #e6f7ff);
            padding: 40px 20px;
            border-radius: var(--radius);
            margin: 40px auto;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .search-box h2 {
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 16px 24px;
            border: 2px solid #d0ddff;
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.2);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 30px 0 60px;
        }
        .article-content {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #ddd;
            flex-wrap: wrap;
            gap: 15px;
        }
        .article-title {
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 25px;
            background: linear-gradient(90deg, var(--dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .intro-box {
            background: #f0f8ff;
            border-left: 5px solid var(--primary);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 35px;
        }
        .intro-box p {
            font-size: 1.2rem;
            color: #2d3748;
            font-weight: 500;
        }
        h2 {
            color: var(--dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            font-size: 1.8rem;
        }
        h3 {
            color: var(--primary);
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #fff9c4 0%, #fff9c4 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .tip-box {
            background: #e8f7f3;
            border: 1px solid var(--accent);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .tip-icon {
            color: var(--accent);
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 3px;
        }
        .image-wrapper {
            margin: 35px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            position: relative;
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-wrapper:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .steps {
            counter-reset: step-counter;
            margin: 30px 0;
        }
        .step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background: #f9f9ff;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
        }
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            background: var(--primary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            resize: vertical;
            min-height: 120px;
            font-size: 1rem;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.1);
        }
        .longtail-links {
            background: #f8faff;
            padding: 40px 20px;
            margin: 50px 0 30px;
            border-radius: var(--radius);
        }
        .longtail-links h3 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--dark);
            font-size: 1.6rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 18px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #eaeaea;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(74, 107, 255, 0.15);
            border-color: var(--primary);
        }
        .footer {
            background: var(--dark);
            color: #ccc;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        .footer-about {
            line-height: 1.8;
        }
        .footer-links h4, .footer-contact h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .mobile-menu-btn { display: block; }
            .search-form { flex-direction: column; }
            .search-input, .btn { width: 100%; }
            .article-content { padding: 25px; }
            .footer-grid { grid-template-columns: 1fr; }
            .header-content { padding: 15px 0; }
            .intro-box p { font-size: 1.1rem; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.3rem; }
        }
        @media (max-width: 480px) {
            .article-title { font-size: 1.7rem; }
            .widget { padding: 20px; }
            .step { flex-direction: column; gap: 15px; }
        }
