:root {
            --primary: #4A6FFF;
            --secondary: #FF9F43;
            --accent: #FF6B8B;
            --light: #F8F9FA;
            --dark: #2C3E50;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid var(--primary);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #3a5fdf;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: var(--dark);
            border-radius: var(--radius);
            overflow: hidden;
        }
        nav li {
            flex: 1;
        }
        nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 16px 20px;
            text-align: center;
            transition: var(--transition);
            font-weight: 500;
        }
        nav a:hover, nav a.active {
            background: var(--primary);
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }
        .article-content {
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 2.2rem;
            line-height: 1.3;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 0.9rem;
        }
        .meta i {
            margin-right: 5px;
        }
        .featured-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 20px 0;
            border: 5px solid var(--light);
        }
        h2, h3 {
            color: var(--primary);
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--light);
        }
        h2 {
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #FFECB3 0%, #FFE082 100%);
            padding: 25px;
            border-radius: var(--radius);
            border-left: 5px solid var(--secondary);
            margin: 25px 0;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .tip-card {
            background: var(--light);
            padding: 20px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid #eaeaea;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .tip-card i {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .download-section {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, var(--primary), #6A8BFF);
            color: white;
            border-radius: var(--radius);
            margin: 30px 0;
        }
        .download-btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 15px;
            transition: var(--transition);
            box-shadow: 0 6px 0 #e67e22;
        }
        .download-btn:hover {
            background: #ff8c2a;
            transform: translateY(-3px);
            box-shadow: 0 9px 0 #e67e22;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            color: #FFD700;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--radius);
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: #3a5fdf;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 40px 0 30px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateX(5px);
            border-left: 5px solid var(--primary);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .search-form {
                width: 250px;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            .mobile-toggle {
                display: block;
            }
            nav ul {
                flex-direction: column;
                display: none;
                margin-top: 15px;
                border-radius: 0;
            }
            nav.active ul {
                display: flex;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
            h1 {
                font-size: 1.8rem;
            }
            .featured-img {
                height: 250px;
            }
        }
