:root {
            --primary: #1a237e;
            --primary-dark: #0d143c;
            --secondary: #ff9800;
            --secondary-light: #ffb74d;
            --accent: #e91e63;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f5f7ff;
            --bg-white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            color: var(--secondary-light);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--secondary-light);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--primary-dark);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            color: white;
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.8rem;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            color: var(--secondary-light);
            padding-left: 10px;
        }
        .close-menu {
            align-self: flex-end;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            background: var(--bg-white);
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: var(--text-light);
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: #aaa;
            font-size: 0.8rem;
        }
        .search-section {
            padding: 2rem 0;
            background: var(--bg-white);
            margin: 1rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--primary);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--secondary);
        }
        .search-button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background: var(--secondary-light);
        }
        .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 {
            background: var(--bg-white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .article-header {
            padding: 2.5rem 2rem;
            background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.8)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
        }
        .article-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-body {
            padding: 2.5rem;
        }
        .article-body > * + * {
            margin-top: 1.5rem;
        }
        .article-body p {
            margin-bottom: 1.2rem;
            text-align: justify;
            color: var(--text-dark);
            font-size: 1.05rem;
        }
        .article-body h2 {
            color: var(--primary);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
            font-size: 1.8rem;
        }
        .article-body h3 {
            color: var(--primary-dark);
            margin-top: 2rem;
            font-size: 1.5rem;
        }
        .article-body ul, .article-body ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }
        .article-body li {
            margin-bottom: 0.7rem;
        }
        .highlight {
            background: #fff8e1;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
        .hero-img {
            margin: 2rem auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .hero-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            color: var(--text-light);
            background: #f9f9f9;
        }
        .tip {
            background: #e3f2fd;
            border-radius: var(--radius);
            padding: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .tip i {
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        .rating-widget {
            background: #f5f7ff;
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            margin: 2.5rem 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-button:hover {
            background: var(--primary-dark);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .popular-links {
            list-style: none;
            padding: 0;
        }
        .popular-links li {
            margin-bottom: 0.8rem;
        }
        .popular-links a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.7rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .popular-links a:hover {
            background: #f0f2ff;
            color: var(--secondary);
        }
        .popular-links i {
            color: var(--primary);
        }
        .comments-section {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }
        .comments-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .form-input, .form-textarea {
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            align-self: flex-start;
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-button:hover {
            background: var(--secondary-light);
        }
        .comment-list {
            margin-top: 2.5rem;
        }
        .comment {
            display: flex;
            gap: 1.2rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .comment-content h4 {
            color: var(--primary-dark);
            margin-bottom: 0.3rem;
        }
        .comment-meta {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }
        .comment-text {
            color: var(--text-dark);
        }
        .footer-links {
            background: var(--primary-dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 1.2rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            display: block;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--secondary-light);
        }
        .footer {
            background: #0a0f2e;
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
        }
        .footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
        }
        .social-links a {
            color: #aaa;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: var(--radius);
                width: 100%;
            }
            .comment {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .comment-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
