        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff7e5f;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --shadow: 0 8px 30px rgba(0,0,0,0.12);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(90deg, var(--dark) 0%, #16213e 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff7e5f, #6a11cb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--accent);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--dark);
            padding: 3rem 2rem;
            transition: right 0.5s ease;
            z-index: 9999;
            overflow-y: auto;
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            color: #ddd;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid #333;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .close-menu {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: #aaa;
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .search-container {
            max-width: 800px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        .search-box {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
            background: white;
        }
        .search-box input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            outline: none;
            font-size: 1.1rem;
        }
        .search-box button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 2.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: linear-gradient(to right, #5a0cb9, #1c68fc);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid #f0f0f0;
        }
        .article-header h1 {
            font-size: 3.2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        @media (max-width: 768px) {
            .article-header h1 { font-size: 2.5rem; }
        }
        .article-meta {
            color: var(--gray);
            font-size: 1rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .article-meta span i {
            color: var(--accent);
            margin-right: 8px;
        }
        .content-section {
            margin-bottom: 3.5rem;
        }
        .content-section h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px dashed #ddd;
            position: relative;
        }
        .content-section h2::after {
            content: '✨';
            position: absolute;
            right: 0;
            bottom: -5px;
        }
        .content-section h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
            padding-left: 1rem;
            border-left: 5px solid var(--accent);
        }
        .content-section p {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            text-align: justify;
            color: #444;
        }
        .highlight {
            background: linear-gradient(120deg, #ffef78 0%, #ffef78 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .tip-box {
            background: #e8f4ff;
            border-left: 5px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 2.5rem 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #f0f0f0;
        }
        .widget-links a {
            display: block;
            padding: 0.9rem 1rem;
            margin-bottom: 0.8rem;
            background: #f8f9fa;
            color: var(--secondary);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .widget-links a:hover {
            background: #e9ecef;
            border-left-color: var(--accent);
            padding-left: 1.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rating-btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            margin-top: 1rem;
            transition: var(--transition);
            width: 100%;
        }
        .rating-btn:hover {
            transform: scale(1.05);
        }
        .comments-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1.5rem;
            border: 2px solid #ddd;
            border-radius: 15px;
            resize: vertical;
            min-height: 150px;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }
        .comment-form button {
            background: linear-gradient(to right, #28a745, #20c997);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #218838, #1aa179);
        }
        .comment-list {
            margin-top: 3rem;
        }
        .comment {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid #eee;
        }
        .comment-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .comment-body h5 {
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .internal-links {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--dark);
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .web-link p {
            color: var(--gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .footer {
            background: var(--dark);
            color: #ddd;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-col h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-col a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .bold {
            font-weight: 900;
            color: var(--dark);
        }
        .text-center {
            text-align: center;
        }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
