:root {
            --primary-color: #d32f2f;
            --secondary-color: #388e3c;
            --accent-color: #ff9800;
            --dark-bg: #1a1a1a;
            --light-bg: #f5f5f5;
            --text-dark: #333;
            --text-light: #f0f0f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .header-container {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c2c 100%);
            color: var(--text-light);
            padding: 1rem 2rem;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffb74d;
            transform: scale(1.02);
            transition: var(--transition);
        }
        .logo-icon {
            color: var(--primary-color);
            font-size: 2.5rem;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background-color: var(--dark-bg);
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease;
        }
        .nav-mobile.active {
            display: block;
            max-height: 500px;
        }
        .nav-mobile ul {
            list-style: none;
            padding: 1rem;
        }
        .nav-mobile li {
            margin-bottom: 0.8rem;
        }
        .nav-mobile a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: var(--primary-color);
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #b71c1c;
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--secondary-color);
        }
        h3 {
            color: var(--accent-color);
            font-size: 1.6rem;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: var(--primary-color);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            margin: 2rem auto;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .sidebar {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-color);
            border-bottom: 2px solid #eee;
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            margin-top: 1rem;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
        }
        .sidebar a {
            color: var(--text-dark);
            text-decoration: none;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .sidebar a:hover {
            background-color: #e3f2fd;
            color: var(--primary-color);
            padding-left: 1rem;
        }
        .user-interaction {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px dashed #ccc;
        }
        .rating-form, .comment-form {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button[type="submit"] {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background-color: #2e7d32;
            transform: translateY(-2px);
        }
        .footer-links {
            max-width: 1400px;
            margin: 3rem auto 1rem;
            padding: 0 2rem;
        }
        .web-link {
            display: inline-block;
            background-color: white;
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: var(--primary-color);
        }
        .web-link:hover a {
            color: white;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                padding: 0.5rem 1rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb, .search-container, .main-container {
                padding: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content {
                padding: 1.5rem;
            }
            .footer-links {
                padding: 1rem;
            }
            .web-link {
                display: block;
                margin: 0.5rem 0;
                text-align: center;
            }
        }
