        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
            direction: ltr;
            text-align: left;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            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: 800;
            color: #ffeb3b;
            text-decoration: none;
            letter-spacing: -1px;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a span {
            color: #00e5ff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #1a237e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            color: #1a237e;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid #ff9800;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #4a148c;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #00bcd4;
        }
        h3 {
            color: #d81b60;
            font-size: 1.6rem;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 6px solid #ff9800;
            margin: 2rem 0;
            font-weight: 600;
        }
        .puzzle-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .puzzle-card {
            background: #f3e5f5;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .puzzle-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .puzzle-card i {
            font-size: 3rem;
            color: #7b1fa2;
            margin-bottom: 1rem;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #ff9800, #ff5722);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to right, #ff5722, #ff9800);
            box-shadow: 0 6px 12px rgba(255, 87, 34, 0.4);
        }
        .feature-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .feature-image:hover img {
            transform: scale(1.03);
        }
        .search-section {
            background: #e3f2fd;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #1a237e;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: #1a237e;
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #4a148c;
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: #f5f5f5;
            border-radius: 10px;
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating-stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ff9800;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin: 0.8rem 0;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #f1f8e9;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 6px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: #2e7d32;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
            color: #1b5e20;
        }
        footer {
            background: #263238;
            color: #eceff1;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #bbdefb;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #64b5f6;
            text-decoration: underline;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #546e7a;
            font-size: 0.9rem;
            color: #b0bec5;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .puzzle-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a237e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 2px solid #ffeb3b;
            }
            nav ul.active { display: flex; }
            nav a { display: block; padding: 1rem; }
            .puzzle-grid { grid-template-columns: 1fr; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 0.5rem; }
            .search-form button { border-radius: 50px; padding: 0.8rem; }
        }
