        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            color: #e0e0ff;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2d2d5a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffd43b;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid transparent;
        }
        .nav-desktop a:hover {
            background: rgba(77, 171, 247, 0.1);
            border-color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(15, 15, 30, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2d2d5a;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #33334d;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0a0d0;
            border-bottom: 1px solid #2d2d5a;
        }
        .breadcrumb a {
            color: #a0a0d0;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: #aaaacc;
        }
        .search-button {
            background: linear-gradient(90deg, #339af0, #228be6);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #228be6, #1c7ed6);
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(20, 20, 40, 0.7);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid #33335a;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #ffffff;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #74c0fc;
            padding-bottom: 10px;
            border-bottom: 2px solid #339af0;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #ffd43b;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            color: #d0d0f0;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 5px solid #ffd43b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .price-box {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin: 30px auto;
            max-width: 500px;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
        }
        .price {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaaacc;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .rating-section, .comments-section {
            background: rgba(30, 30, 60, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd43b;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 20px;
            margin-top: 25px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #444477;
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #40c057, #2f9e44);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #2f9e44, #2b8a3e);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(47, 158, 68, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background: rgba(40, 40, 80, 0.6);
            padding: 20px;
            border-radius: 12px;
            border-left: 5px solid #4dabf7;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(60, 60, 120, 0.8);
        }
        footer {
            background: rgba(10, 10, 20, 0.98);
            border-top: 2px solid #2d2d5a;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #33335a;
            color: #8888aa;
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 25px; }
            .price { font-size: 2.8rem; }
            .header-container { padding: 12px 0; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.9rem; }
            .search-input, .search-button { padding: 15px; }
        }
