* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary-color: #D4AF37;
            --secondary-color: #2E8B57;
            --dark-color: #1A472A;
            --light-color: #F5F5DC;
            --text-color: #333333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #FFD700;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            background: linear-gradient(to right, #FFD700, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            color: var(--primary-color);
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--dark-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: var(--light-color);
            padding: 10px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            padding: 2rem 0;
            background: white;
            min-height: 80vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 1rem;
        }
        h1 {
            color: var(--dark-color);
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .article-content h2 {
            color: var(--secondary-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }
        .article-content h3 {
            color: var(--dark-color);
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 100%);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-color);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            background: var(--light-color);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }
        .interactive-section {
            background: #f0f8ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #cce7ff;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box form, .comment-form form, .rating-form form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 6px;
            flex: 1;
            min-width: 200px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
            width: 100%;
        }
        button {
            background: linear-gradient(to right, var(--secondary-color), var(--dark-color));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(46, 139, 87, 0.3);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active {
            color: #FFD700;
        }
        .longtail-links {
            background: var(--light-color);
            padding: 2rem;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 8px 16px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .web-link a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 0 10px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .search-box form, .comment-form form, .rating-form form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
                min-width: 100%;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .featured-image {
                max-height: 300px;
            }
            .interactive-section {
                padding: 1rem;
            }
        }
        @media print {
            header, footer, .interactive-section, .longtail-links {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .article-content {
                max-width: 100%;
            }
        }
