* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo a:hover {
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background-color: rgba(96, 165, 250, 0.1);
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 6px;
        }
        .mobile-nav a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            padding: 2rem 0;
            background-color: #0f172a;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #334155;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #94a3b8;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1e293b;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .article-content h2 {
            color: #60a5fa;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #38bdf8;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .article-content em {
            color: #a78bfa;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.1));
            border-left: 5px solid #3b82f6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            text-align: center;
            margin: 2.5rem 0;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid #475569;
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            color: #fbbf24;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            border-radius: 6px 0 0 6px;
            outline: none;
        }
        .search-form button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #2563eb;
        }
        .rating-widget, .comment-widget {
            background-color: #0f172a;
            padding: 1.5rem;
            border-radius: 8px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #94a3b8;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #fbbf24;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.8rem;
            background-color: #1e293b;
            border: 1px solid #475569;
            color: #e2e8f0;
            border-radius: 6px;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        }
        .internal-links {
            background-color: #1e293b;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .internal-links h2 {
            color: #fbbf24;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #0f172a;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #60a5fa;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(96, 165, 250, 0.2);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 500;
            display: block;
        }
        footer {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-top: 2px solid #334155;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            flex: 1;
            min-width: 250px;
        }
        .footer-logo .logo {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .footer-links {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 2rem;
        }
        .footer-links h3 {
            color: #fbbf24;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                padding: 1.5rem;
            }
            .footer-content {
                flex-direction: column;
            }
        }
