* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #0fcc45;
            --secondary: #ff00ff;
            --accent: #00ffff;
            --dark: #0a0a1a;
            --light: #f0f8ff;
            --gray: #2a2a3c;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
            text-shadow: 0 0 8px var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
            padding: 1.5rem 0;
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px var(--primary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(15, 204, 69, 0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--gray);
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .search-container {
            background: rgba(42, 42, 60, 0.7);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid var(--accent);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--primary);
            border-radius: 50px 0 0 50px;
            background: var(--light);
            color: var(--dark);
            font-size: 1rem;
        }
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px var(--secondary);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: rgba(42, 42, 60, 0.5);
            padding: 3rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            border-left: 6px solid var(--primary);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1rem;
            color: var(--secondary);
            border-bottom: 2px dashed var(--accent);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(15,204,69,0.2), rgba(0,255,255,0.2));
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .image-container {
            text-align: center;
            margin: 3rem 0;
        }
        .feature-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(15, 204, 69, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--primary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(15, 204, 69, 0.3);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background: rgba(42, 42, 60, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--secondary);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active,
        .star:hover {
            color: gold;
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--light);
            border: 2px solid var(--primary);
            border-radius: 10px;
            color: var(--dark);
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            display: block;
            margin: 0 auto;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--secondary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(42, 42, 60, 0.7);
            border-radius: 15px;
        }
        .web-link {
            background: rgba(15, 204, 69, 0.1);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--accent);
            background: rgba(0, 255, 255, 0.1);
        }
        footer {
            background: linear-gradient(135deg, var(--gray) 0%, #000 100%);
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-content { flex-wrap: wrap; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 1rem; }
            .search-btn { border-radius: 50px; }
            .interaction-section { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            article { padding: 1.5rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .web-links { grid-template-columns: 1fr; }
        }
