:root {
            --primary-dark: #1a365d;
            --primary-light: #2d5a9e;
            --accent-gold: #d4af37;
            --accent-red: #b91c1c;
            --text-dark: #1f2937;
            --text-light: #f8fafc;
            --bg-light: #f1f5f9;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo i {
            color: var(--text-light);
        }
        .logo:hover {
            color: var(--text-light);
        }
        .logo span {
            color: var(--text-light);
            font-weight: 600;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--primary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--primary-light);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .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-section {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-section h1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        .article-section h2 {
            color: var(--primary-light);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent-red);
        }
        .article-section h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
            margin: 2rem 0;
        }
        .highlight strong {
            color: var(--primary-dark);
            font-size: 1.2rem;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .quote {
            font-style: italic;
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid var(--primary-light);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input, .form-textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(45, 90, 158, 0.1);
        }
        .btn {
            background: linear-gradient(to right, var(--primary-light), var(--primary-dark));
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #d1d5db;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active {
            color: var(--accent-gold);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        @media (max-width: 768px) {
            .long-tail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: var(--primary-light);
        }
        .web-link a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        .web-link:hover a {
            color: white;
        }
        .footer {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #cbd5e1;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-dark);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
