* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --dark: #2D3436;
            --light: #F9F9F9;
            --accent: #FFD166;
            --gray: #636E72;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary), #FF8E8E);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .highlight {
            color: var(--primary);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--accent);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--primary);
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .mobile-nav {
            display: none;
            background: white;
            padding: 20px;
            box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px 15px;
            border-radius: 8px;
            font-weight: 600;
            background: var(--light);
        }
        .mobile-nav a:hover {
            background: var(--secondary);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
            border-bottom: 1px solid #eee;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .hero-search {
            padding: 40px 0;
            text-align: center;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%234ECDC4" opacity="0.05"/>');
            background-size: cover;
        }
        .hero-search h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--dark);
        }
        .hero-search h1 span {
            color: var(--primary);
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            padding: 0 30px;
            background: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-box button:hover {
            background: #FF5252;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px dashed #eee;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .article-meta .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        h2, h3 {
            margin: 30px 0 15px;
            color: var(--dark);
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            padding: 10px 15px;
            background: #f8f9fa;
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
        }
        .tip-box {
            background: linear-gradient(135deg, #E3F2FD, #F3E5F5);
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box h4 {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--primary);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #FFD700;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .rating-widget select, .rating-widget textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            resize: vertical;
        }
        .rating-widget button {
            margin-top: 10px;
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
        }
        .comment {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-author {
            font-weight: bold;
            color: var(--dark);
        }
        .comment-rating {
            color: var(--accent);
        }
        .footer-links {
            background: var(--dark);
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .web-link a {
            display: block;
            color: var(--accent);
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        footer {
            background: #1A1E23;
            color: #B2BEC3;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: white;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2D3436;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero-search h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-content {
                padding: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
            .search-box button {
                border-radius: 0 0 15px 15px;
            }
        }
