        * {
            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.8;
            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;
        }
        .site-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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #cbd5e1;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #334155;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .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;
            border-bottom: 1px solid #334155;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1rem;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #475569;
            background: #1e293b;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #94a3b8;
        }
        .search-button {
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #1d4ed8, #1e40af);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .article h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 5px solid #ef4444;
            padding-left: 1rem;
        }
        .article h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #475569;
        }
        .article h3 {
            font-size: 1.5rem;
            color: #34d399;
            margin: 2rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .article em {
            color: #a78bfa;
            font-style: italic;
        }
        .highlight {
            background-color: rgba(251, 191, 36, 0.1);
            border-left: 4px solid #fbbf24;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            border-radius: 12px;
            border: 3px solid #475569;
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: #1e293b;
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .sidebar h3 {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #475569;
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .sidebar a:hover {
            color: #38bdf8;
        }
        .rating-section, .comments-section {
            background: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            margin-top: 3rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .section-title {
            color: #fbbf24;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 700px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #cbd5e1;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid #475569;
            background: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #60a5fa;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
        }
        .stars .active {
            color: #fbbf24;
        }
        .submit-button {
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .submit-button:hover {
            background: linear-gradient(90deg, #059669, #047857);
        }
        .footer-links {
            background: #1e293b;
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-top: 3px solid #334155;
            border-bottom: 3px solid #334155;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #0f172a;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: #1e293b;
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #60a5fa;
        }
        .site-footer {
            background: #0f172a;
            padding: 2rem 0;
            text-align: center;
            color: #94a3b8;
            border-top: 1px solid #334155;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .article {
                padding: 1.5rem;
            }
            .article h1 {
                font-size: 2.2rem;
            }
            .article h2 {
                font-size: 1.8rem;
            }
            .rating-section, .comments-section, .sidebar {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-input, .search-button {
                width: 100%;
                border-radius: 0;
            }
            .search-input {
                border-bottom: 1px solid #475569;
            }
        }
