        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #00a8ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #00a8ff, #00ff95);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0b7c3;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .nav-desktop a:hover {
            color: #00a8ff;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #00ff95;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #00a8ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a1f2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            border-top: 2px solid #00a8ff;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b0b7c3;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid #2a2f3e;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: #2a2f3e;
            color: #00a8ff;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a8f9c;
        }
        .breadcrumb a {
            color: #00a8ff;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #1a1f2e;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #00ff95;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #00a8ff;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a2f3e;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #6dd5ff;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #00ff95;
            font-weight: 700;
        }
        .article-content em {
            color: #ffcc00;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, #0f1419, #1a2b3e);
            border-left: 5px solid #00ff95;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #00a8ff;
            box-shadow: 0 8px 20px rgba(0,168,255,0.3);
            transition: transform 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: #1a1f2e;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .widget h3 {
            color: #00ff95;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            color: #b0b7c3;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #2a2f3e;
            background: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to right, #00a8ff, #00ff95);
            color: #0f1419;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,168,255,0.4);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: #1a1f2e;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #2a2f3e;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #00a8ff;
            text-decoration: none;
            font-weight: 600;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: #0a0e13;
            padding: 2rem 0;
            text-align: center;
            border-top: 3px solid #00a8ff;
            margin-top: 3rem;
        }
        .copyright {
            color: #8a8f9c;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
