        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fbbf24, #f87171);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #fbbf24;
        }
        .breadcrumb {
            padding: 1rem 0 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #fbbf24;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #38bdf8;
            margin: 2.5rem 0 1rem;
            border-left: 5px solid #f87171;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #a78bfa;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid #fbbf24;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #334155;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #fbbf24;
            margin-bottom: 1rem;
        }
        .feature-image {
            margin: 3rem auto;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid #475569;
            max-width: 800px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .feature-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 1rem;
            background: #334155;
            color: #cbd5e1;
        }
        .interactive-section {
            background: #0f172a;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #475569;
        }
        .search-box, .comment-form, .rating-form {
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        .search-box form, .comment-form form, .rating-form form {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 1px solid #475569;
            border-radius: 8px;
            background: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
            min-width: 200px;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        button {
            background: linear-gradient(to right, #f59e0b, #dc2626);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        button:hover {
            background: linear-gradient(to right, #eab308, #b91c1c);
            transform: scale(1.05);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #1e293b;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: #fbbf24;
            background: #0f172a;
            transform: translateY(-3px);
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #fbbf24;
        }
        footer {
            background: #0f172a;
            border-top: 2px solid #334155;
            padding: 2rem 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e293b;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 2px solid #334155;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-box form, .comment-form form, .rating-form form {
                flex-direction: column;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
