:root {
            --primary: #FF5722;
            --secondary: #2196F3;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --text: #333333;
            --accent: #FFC107;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
        }
        header {
            background: linear-gradient(90deg, var(--dark) 0%, #16213E 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .logo span {
            color: white;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        .desktop-nav a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            bottom: -5px;
            left: 50%;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 80%;
            left: 10%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark);
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
            animation: slideDown 0.4s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: rgba(255,87,34,0.2);
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: #E8EAF6;
            font-size: 0.9rem;
            border-bottom: 1px solid #C5CAE9;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-left: 6px solid var(--primary);
            padding-left: 1rem;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #FFF9C4, #FFECB3);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid var(--accent);
            margin: 2rem 0;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .keyword {
            color: var(--primary);
            font-weight: 700;
            background: rgba(255,87,34,0.1);
            padding: 2px 6px;
            border-radius: 3px;
        }
        .feature-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .feature-image:hover {
            transform: scale(1.01);
        }
        .search-box, .comment-form, .rating-form {
            background: #F8F9FA;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 1px solid #E0E0E0;
        }
        .form-title {
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 1rem;
            border: 1px solid #CCC;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(33,150,243,0.2);
        }
        button {
            background: linear-gradient(90deg, var(--primary), #FF7043);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover {
            background: linear-gradient(90deg, #E64A19, #F4511E);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255,87,34,0.3);
        }
        .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: var(--accent);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #E0E0E0;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: var(--secondary);
            box-shadow: 0 5px 15px rgba(33,150,243,0.15);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.7rem;
        }
        .footer-section a {
            color: #BDBDBD;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                right: 2rem;
                top: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .main-content, .sidebar {
                padding: 1.5rem;
            }
            .footer-links {
                flex-direction: column;
            }
        }
