        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #a5d8ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a4a6e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid transparent;
        }
        .nav-desktop a:hover {
            border-color: #4dabf7;
            background: rgba(77, 171, 247, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 45, 0.98);
            padding: 20px;
            border-top: 1px solid #2a4a6e;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid #2a4a6e;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .search-box {
            background: rgba(255,255,255,0.05);
            border-radius: 30px;
            padding: 5px 20px;
            margin: 30px auto;
            max-width: 600px;
            display: flex;
            border: 1px solid #2a4a6e;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            color: #fff;
            padding: 12px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #4dabf7;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #339af0;
        }
        main {
            background: rgba(20, 35, 55, 0.7);
            border-radius: 20px;
            padding: 30px;
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }
        h2 {
            color: #4ecdc4;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a4a6e;
            font-size: 2rem;
        }
        h3 {
            color: #ffa94d;
            margin: 30px 0 15px;
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.15);
            border-left: 5px solid #ffd43b;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 30px auto;
            border: 3px solid #2a4a6e;
            box-shadow: 0 8px 20px rgba(0,0,0,0.6);
        }
        .rating-section, .comment-section {
            background: rgba(30, 45, 70, 0.8);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .stars i {
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #2a4a6e;
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(90deg, #20c997, #12b886);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(32, 201, 151, 0.4);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 50px 0 30px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #2a4a6e;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(77, 171, 247, 0.15);
            transform: translateY(-5px);
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.95rem;
            border-top: 1px solid #2a4a6e;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
            main {
                padding: 20px;
            }
        }
