* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #38bdf8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f59e0b, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            background: linear-gradient(90deg, #dc2626, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav a:hover, nav a.active {
            background-color: #334155;
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .search-box {
            margin: 30px auto;
            max-width: 700px;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background-color: #1e293b;
            color: #f1f5f9;
            font-size: 1.1rem;
        }
        .search-box button {
            background: linear-gradient(90deg, #f59e0b, #dc2626);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #dc2626, #f59e0b);
        }
        main {
            padding: 30px 0;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #fbbf24;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #60a5fa;
            border-left: 5px solid #f59e0b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #38bdf8;
        }
        h4 {
            font-size: 1.5rem;
            margin: 25px 0 10px;
            color: #a78bfa;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: #1e293b;
            border-left: 4px solid #f59e0b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5em;
            margin-right: 8px;
            vertical-align: middle;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.4);
            border: 1px solid #334155;
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: #f59e0b;
        }
        .stat-card i {
            font-size: 3rem;
            color: #f59e0b;
            margin-bottom: 15px;
        }
        .hero-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin: 30px 0;
            border: 3px solid #475569;
            box-shadow: 0 15px 30px rgba(0,0,0,0.7);
        }
        .user-interaction {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            border: 2px solid #475569;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active {
            color: #fbbf24;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            background-color: #0f172a;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #e2e8f0;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #059669, #10b981);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: #1e293b;
            padding: 18px;
            border-radius: 10px;
            border-left: 5px solid #60a5fa;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: #334155;
            transform: translateX(10px);
        }
        footer {
            background-color: #0f172a;
            border-top: 2px solid #334155;
            padding: 40px 0 20px;
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-content { flex-wrap: wrap; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1e293b;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #334155;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav ul.show { display: flex; }
            nav a { display: block; padding: 12px; }
            .search-box { flex-direction: column; border-radius: 15px; }
            .search-box input, .search-box button { width: 100%; border-radius: 0; }
            .stats-grid { grid-template-columns: 1fr; }
            .long-tail-links { grid-template-columns: 1fr; }
        }
