* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFD166;
            --dark: #2D3047;
            --light: #F7F7F7;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fefefe;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--dark);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #3a3e64 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .logo a {
            color: inherit;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--accent);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: var(--dark);
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #f8f9fa;
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 10px;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-box {
            background: linear-gradient(to right, #ffeaa7, #fab1a0);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem auto;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .search-box h2 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #ff5252;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--dark);
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            border-left: 6px solid var(--primary);
            padding-left: 20px;
        }
        h2 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fffbeb 0%, #fef3c7 100%);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card i {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .download-section {
            background: linear-gradient(135deg, #2D3047 0%, #434a6b 100%);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            margin: 3rem 0;
        }
        .download-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            box-shadow: 0 6px 0 #d63031;
            transition: var(--transition);
        }
        .download-btn:hover {
            background: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 9px 0 #d63031;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #ff5252;
        }
        .longtail-links {
            background: #f8f9fa;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-button { border-radius: 50px; padding: 15px; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 1.5rem; }
            h1 { font-size: 1.8rem; }
            .download-section { padding: 2rem; }
            .feature-list { grid-template-columns: 1fr; }
            .user-interaction { grid-template-columns: 1fr; }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .keyword {
            background: #e3f2fd;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: #1565c0;
        }
        .note {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
