        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00A896;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, var(--dark) 0%, var(--secondary) 100%);
            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: 1rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        .logo span {
            background: linear-gradient(45deg, var(--primary), #FFA500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark);
            padding: 1rem;
            gap: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.05);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ccc;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .search-container {
            max-width: 500px;
            margin: 2rem auto;
            position: relative;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            background: white;
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-button:hover {
            background: #e55a2b;
        }
        main {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin: 2rem auto;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            main {
                padding: 1.5rem;
                margin: 1rem auto;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--accent);
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--gray);
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #E3F2FD, #F3E5F5);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box {
            background: #FFF3CD;
            border: 1px solid #FFC107;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        .tip-icon {
            color: #FF9800;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }
        .interaction-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255,107,53,0.3);
        }
        .web-links-section {
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            color: white;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-primary { color: var(--primary); }
        .text-bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .line-clamp { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
        .shadow { box-shadow: var(--shadow); }
        .gradient-text { background: linear-gradient(45deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            header, footer, .interaction-section, .web-links-section { display: none; }
            body { background: white; }
            main { box-shadow: none; margin: 0; padding: 0; }
        }
