* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            font-size: 18px;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1e293b;
            border-bottom: 3px solid #3b82f6;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fbbf24;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a span {
            color: #3b82f6;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: #334155;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
        }
        .search-box input {
            padding: 0.7rem 1rem;
            border: 2px solid #475569;
            border-radius: 30px 0 0 30px;
            background: #334155;
            color: #e2e8f0;
            width: 250px;
        }
        .search-box button {
            background: #3b82f6;
            border: none;
            border-radius: 0 30px 30px 0;
            color: white;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2563eb;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        main {
            padding: 2rem 0;
            min-height: 100vh;
        }
        article {
            background: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
        }
        h1 {
            color: #fbbf24;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            color: #60a5fa;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        h3 {
            color: #38bdf8;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #334155;
            border-left: 4px solid #fbbf24;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 2rem auto;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .download-cta {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
        }
        .download-cta h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .btn {
            display: inline-block;
            background: #fbbf24;
            color: #1e293b;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.3rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
        }
        .btn:hover {
            background: #f59e0b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.6);
            text-decoration: none;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-section, .rating-section {
            background: #334155;
            padding: 2rem;
            border-radius: 12px;
        }
        .comment-section h3, .rating-section h3 {
            margin-top: 0;
        }
        textarea, input, select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: #475569;
            border: 1px solid #64748b;
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .submit-btn {
            background: #10b981;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #059669;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
        }
        .stars .fa-star:hover,
        .stars .fa-star.active {
            color: #fbbf24;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #334155;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #475569;
            transform: translateY(-5px);
        }
        footer {
            background-color: #1e293b;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid #3b82f6;
            text-align: center;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 1024px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1e293b;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .search-box {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .user-interaction {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
        }
