        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0f1d 0%, #1a1f3a 100%);
            color: #e0e0ff;
            line-height: 1.8;
            min-height: 100vh;
            padding-bottom: 50px;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc5c;
            text-shadow: 0 0 8px rgba(255, 204, 92, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            margin-bottom: 50px;
        }
        header {
            background: rgba(12, 15, 29, 0.95);
            border-bottom: 2px solid #2a3a6b;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #6ee7ff, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .nav-links a:hover {
            background: rgba(106, 90, 205, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: #6ee7ff;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            border-radius: 20px;
            margin: 30px 0;
            border: 2px solid #3a4a8a;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffcc5c;
            text-shadow: 0 0 15px rgba(255, 204, 92, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d0d0ff;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(5px);
        }
        .search-box button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #00d4ff, #6a5acd);
            border: none;
            border-radius: 0 50px 50px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #6a5acd, #00d4ff);
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 33, 58, 0.8);
            padding: 40px;
            border-radius: 20px;
            border-left: 6px solid #00d4ff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        article h2, article h3 {
            color: #ffcc5c;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #3a4a8a;
        }
        article h2 {
            font-size: 2.3rem;
        }
        article h3 {
            font-size: 1.8rem;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        article strong {
            color: #ffcc5c;
            font-weight: 700;
        }
        .code-list {
            background: rgba(0, 0, 0, 0.4);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border: 2px solid #6a5acd;
        }
        .code-item {
            background: rgba(106, 90, 205, 0.2);
            padding: 20px;
            margin: 15px 0;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            transition: transform 0.3s;
        }
        .code-item:hover {
            transform: translateX(10px);
            background: rgba(106, 90, 205, 0.4);
        }
        .code-text {
            font-family: monospace;
            font-size: 1.8rem;
            color: #6ee7ff;
            letter-spacing: 2px;
        }
        .reward {
            color: #ffcc5c;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 204, 92, 0.15), rgba(106, 90, 205, 0.15));
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 6px solid #ffcc5c;
        }
        aside {
            background: rgba(30, 33, 58, 0.8);
            padding: 30px;
            border-radius: 20px;
            border-top: 6px solid #a855f7;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h4 {
            font-size: 1.5rem;
            color: #ffcc5c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a4a8a;
        }
        .comment-form, .rating-form {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #a0a0ff;
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #3a4a8a;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 10px 0;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc5c;
        }
        .btn-submit {
            background: linear-gradient(90deg, #00d4ff, #6a5acd);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            display: block;
            width: 100%;
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background: linear-gradient(90deg, #6a5acd, #00d4ff);
            transform: translateY(-3px);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(58, 74, 138, 0.3);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(106, 90, 205, 0.5);
            transform: translateY(-5px);
        }
        footer {
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #2a3a6b;
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(12, 15, 29, 0.98);
                padding: 20px;
                border-top: 2px solid #2a3a6b;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article, aside {
                padding: 25px;
            }
            .code-text {
                font-size: 1.4rem;
            }
        }
