* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #93c5fd;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid #3b82f6;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: #60a5fa;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(59, 130, 246, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f1f5f9;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #1e293b;
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease;
        }
        .nav-mobile.active {
            display: flex;
            max-height: 500px;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #334155;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        .article-content h1 {
            color: #fbbf24;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #3b82f6;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            color: #60a5fa;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #f59e0b;
        }
        .article-content h3 {
            color: #93c5fd;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        .highlight {
            background-color: rgba(251, 191, 36, 0.15);
            border-left: 4px solid #fbbf24;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            border: 3px solid #3b82f6;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background-color: #1e293b;
            padding: 2rem;
            border-radius: 16px;
            height: fit-content;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: #fbbf24;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #475569;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #f1f5f9;
        }
        .search-form button, .comment-form button, .rating-form button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 100%;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: #2563eb;
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #fbbf24;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #1e293b;
            border-radius: 16px;
        }
        .web-link {
            background-color: #0f172a;
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid #10b981;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }
        .site-footer {
            text-align: center;
            padding: 2rem;
            background-color: #1e293b;
            border-radius: 16px;
            margin-top: 2rem;
            border-top: 3px solid #3b82f6;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #fbbf24;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
