:root {
            --primary-blue: #1a73e8;
            --secondary-teal: #0dcaf0;
            --accent-orange: #ff6b35;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --card-bg: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--light-bg);
            direction: ltr;
            text-align: left;
        }
        a {
            text-decoration: none;
            color: var(--primary-blue);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-orange);
        }
        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, var(--dark-bg) 0%, #1e3a8a 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--secondary-teal);
            font-size: 2.5rem;
        }
        .logo:hover a {
            color: var(--secondary-teal);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.1);
            color: var(--secondary-teal);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--secondary-teal);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: white;
            border-radius: 3px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-top: 2px solid var(--secondary-teal);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.05);
            padding-left: 1.5rem;
            color: var(--secondary-teal);
        }
        .breadcrumb {
            background-color: var(--card-bg);
            padding: 1rem 0;
            margin-bottom: 2rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        .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-section {
            background-color: var(--card-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-title {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--secondary-teal);
            padding-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--secondary-teal);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 1.5rem 0;
        }
        .tag {
            background-color: #e0f2fe;
            color: var(--primary-blue);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .tag:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .content h2 {
            font-size: 1.8rem;
            color: var(--dark-bg);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #cbd5e1;
            position: relative;
        }
        .content h2::before {
            content: '🎯';
            margin-right: 10px;
        }
        .content h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin: 2rem 0 1rem;
        }
        .content h3::before {
            content: '⭐';
            margin-right: 8px;
        }
        .content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .content strong {
            color: var(--accent-orange);
            font-weight: 700;
        }
        .highlight {
            background-color: #fff7ed;
            border-left: 4px solid var(--accent-orange);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .tip-box {
            background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 100%);
            border: 1px solid var(--secondary-teal);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            position: relative;
        }
        .tip-box::before {
            content: '💡';
            position: absolute;
            top: -15px;
            left: -15px;
            background: var(--secondary-teal);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark-bg);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--secondary-teal);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--secondary-teal);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e1;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary-blue);
        }
        .search-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background-color: #1557b0;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.8rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-form button {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #e55a2b;
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e2e8f0;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 3rem;
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--radius);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-dark);
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: var(--radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #1557b0;
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment {
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary-teal);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
            flex-wrap: wrap;
            gap: 10px;
        }
        .comment-author {
            font-weight: 700;
            color: var(--dark-bg);
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .comment-body {
            line-height: 1.6;
        }
        .footer-links {
            background-color: var(--dark-bg);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            display: block;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--secondary-teal);
        }
        .site-footer {
            background-color: #0a0f1f;
            color: #94a3b8;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #94a3b8;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary-teal);
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #334155;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.3rem;
            }
            .article-section {
                padding: 1.5rem;
            }
            .main-content {
                gap: 1.5rem;
            }
        }
        @media print {
            .site-header, .sidebar, .comment-form, .footer-links, .site-footer {
                display: none;
            }
            .article-section {
                box-shadow: none;
                padding: 0;
            }
        }
