* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary-color: #d4af37;
            --secondary-color: #2e8b57;
            --accent-color: #8b4513;
            --dark-color: #1a472a;
            --light-color: #f5f5dc;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            line-height: 1.7;
        }
        .container {
            width: 100%;
            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-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo i {
            font-size: 2.2rem;
        }
        .logo-text {
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--primary-color);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .search-form {
            display: flex;
            margin-left: 2rem;
        }
        .search-form input {
            padding: 0.6rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 220px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: var(--dark-color);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 0.8rem 0;
            border-bottom: 1px solid #ddd;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            font-size: 0.8rem;
            color: #777;
        }
        main {
            padding: 2.5rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 0.8rem;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta span i {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        h2, h3 {
            color: var(--dark-color);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            margin: 2rem 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: #555;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            margin: 2rem auto;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border: 1px solid #eee;
        }
        .float-img {
            float: right;
            margin: 1rem 0 1rem 2rem;
            max-width: 45%;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat {
            background: linear-gradient(135deg, #f0fff0, #e6f7ec);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-top: 4px solid var(--secondary-color);
        }
        .stat .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-color);
            display: block;
            line-height: 1;
        }
        .stat .label {
            font-size: 1rem;
            color: #666;
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #eee;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffc107;
            margin-bottom: 1rem;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-widget button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: var(--dark-color);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #a0522d;
        }
        .longtail-links {
            background-color: var(--light-color);
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background-color: white;
            padding: 1rem 1.2rem;
            border-radius: 6px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: var(--secondary-color);
        }
        .web-link i {
            color: var(--primary-color);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.95rem;
            color: #ccc;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .float-img {
                float: none;
                margin: 1.5rem auto;
                max-width: 80%;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-links, .search-form {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin-top: 1.5rem;
                order: 3;
                background-color: rgba(26, 71, 42, 0.95);
                padding: 1.5rem;
                border-radius: 8px;
            }
            .nav-active li {
                margin-bottom: 1rem;
            }
            .search-form.active {
                display: flex;
                width: 100%;
                order: 2;
                margin: 1rem 0 0 0;
            }
            .search-form.active input {
                width: 100%;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
            vertical-align: middle;
        }
        .keyword {
            background-color: #e6f7ff;
            padding: 0.2em 0.5em;
            border-radius: 4px;
            font-weight: bold;
            color: #0066cc;
        }
        @media print {
            header, nav, .sidebar, .longtail-links, footer, .search-form, .rating-widget, .comment-form {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            .content {
                box-shadow: none;
                padding: 0;
            }
        }
