        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4a9eff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background-color: #121a24;
            border-bottom: 2px solid #1c2a3a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0b7c3;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover, .nav-desktop a.active {
            background-color: #1c2a3a;
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #121a24;
            padding: 20px;
            border-top: 1px solid #1c2a3a;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b0b7c3;
            padding: 12px 0;
            border-bottom: 1px solid #1c2a3a;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #ffcc00;
        }
        .breadcrumb {
            background-color: #0a0f15;
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        .breadcrumb span {
            color: #ffcc00;
            margin: 0 8px;
        }
        .search-box {
            background: linear-gradient(135deg, #1c2a3a, #0f1419);
            border-radius: 12px;
            padding: 30px;
            margin: 40px auto;
            max-width: 800px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .search-box h2 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px 0 0 8px;
            background-color: #2a3b52;
            color: #fff;
            font-size: 1.1rem;
        }
        .search-form button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ff8800;
        }
        .content-main h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        .content-main h2 {
            font-size: 2rem;
            color: #4a9eff;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3b52;
        }
        .content-main h3 {
            font-size: 1.6rem;
            color: #ff9966;
            margin: 30px 0 15px;
        }
        .content-main p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content-main strong {
            color: #ffcc00;
        }
        .content-main em {
            color: #66ff99;
        }
        .highlight-box {
            background-color: #1a2635;
            border-left: 5px solid #ff6600;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .spec-card {
            background-color: #16202d;
            border-radius: 12px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #2a3b52;
        }
        .spec-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255,102,0,0.2);
        }
        .spec-card h4 {
            color: #ff9966;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        .spec-card ul {
            list-style: none;
        }
        .spec-card li {
            padding: 8px 0;
            border-bottom: 1px dashed #2a3b52;
        }
        .spec-card li:last-child {
            border-bottom: none;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
            border: 2px solid #2a3b52;
            max-width: 900px;
            margin: 0 auto;
        }
        .image-container figcaption {
            margin-top: 15px;
            font-style: italic;
            color: #8a9bb2;
        }
        .user-interaction {
            background-color: #121a24;
            border-radius: 15px;
            padding: 40px;
            margin-top: 60px;
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .rating-form h3, .comment-form h3 {
            color: #ffcc00;
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #b0b7c3;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #2a3b52;
            background-color: #1c2a3a;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6600, #ffcc00);
            color: #000;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: #1a2635;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #4a9eff;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: #2a3b52;
        }
        .web-link a {
            color: #e0e0e0;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        footer {
            background-color: #0a0f15;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid #1c2a3a;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .copyright {
            color: #8a9bb2;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #2a3b52;
        }
        @media (max-width: 768px) {
            .content-main h1 {
                font-size: 2.2rem;
            }
            .content-main h2 {
                font-size: 1.8rem;
            }
            .specs-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 8px;
                padding: 15px;
            }
            .user-interaction {
                padding: 25px;
            }
        }
