        * {
            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: #8b0000; 
            --accent-color: #228b22; 
            --dark-bg: #1a1a1a;
            --light-bg: #f5f5f5;
            --text-dark: #333;
            --text-light: #f0f0f0;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 18px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c2c 100%);
            color: var(--text-light);
            padding: 1.2rem 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: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            background: linear-gradient(to right, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        .logo a:hover {
            transform: scale(1.03);
        }
        .logo .tagline {
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 5px;
            font-style: italic;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--primary-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            left: 50%;
            bottom: 0;
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 80%;
            left: 10%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            flex-direction: column;
            padding: 1rem 0;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            width: 100%;
        }
        .mobile-nav a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            padding: 1rem 2rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--primary-color);
            padding-left: 2.5rem;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-container {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 2rem 0;
            margin-bottom: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-box {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        .search-box h3 {
            margin-bottom: 1rem;
            color: var(--secondary-color);
            text-align: center;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ccc;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            border-color: var(--accent-color);
        }
        .search-box button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #1e7a1e;
        }
        main {
            padding: 2rem 0;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px double var(--primary-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            color: #666;
            font-size: 0.95rem;
        }
        .meta-info span i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        .content-section {
            margin-bottom: 3rem;
            padding: 0 2rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
        }
        h3 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #fff9e6;
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: var(--shadow);
        }
        .code-list {
            background-color: #2c2c2c;
            color: #f0f0f0;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            font-family: 'Courier New', monospace;
        }
        .code-item {
            padding: 1rem;
            border-bottom: 1px dashed #555;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .code-item:last-child {
            border-bottom: none;
        }
        .code-text {
            font-size: 1.3rem;
            font-weight: bold;
            letter-spacing: 1px;
            color: #ffd700;
        }
        .reward {
            color: var(--accent-color);
            font-style: italic;
        }
        .copy-btn {
            background-color: var(--primary-color);
            color: black;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: bold;
        }
        .copy-btn:hover {
            background-color: #ffd700;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            display: block;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .tip-box {
            background-color: #e6f7ff;
            border: 2px dashed #1890ff;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .tip-icon {
            color: #1890ff;
            font-size: 2rem;
            flex-shrink: 0;
        }
        .warning-box {
            background-color: #fff2e8;
            border: 2px solid #fa8c16;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .user-interaction {
            background-color: #f8f9fa;
            padding: 3rem;
            border-radius: var(--border-radius);
            margin-top: 4rem;
            border-top: 5px solid var(--primary-color);
        }
        .rating-section,
        .comment-section {
            margin-bottom: 3rem;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffd700;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #a30000;
            transform: translateY(-2px);
        }
        .footer-links {
            background-color: #2c2c2c;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.8rem;
        }
        .social-links a {
            color: #aaa;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--primary-color);
            transform: scale(1.2);
        }
        .copyright {
            font-size: 0.9rem;
            color: #888;
            border-top: 1px solid #444;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
            .content-section { padding: 0 1rem; }
        }
        @media (max-width: 768px) {
            body { font-size: 16px; }
            .header-container { flex-wrap: wrap; }
            .logo a { font-size: 1.8rem; }
            .article-header h1 { font-size: 2rem; }
            .code-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .web-links-container { grid-template-columns: 1fr; }
            .user-interaction { padding: 2rem 1rem; }
            .search-box form { flex-direction: column; }
            .search-box input { border-radius: 50px; margin-bottom: 10px; }
            .search-box button { border-radius: 50px; padding: 1rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .meta-info { flex-direction: column; gap: 0.5rem; align-items: center; }
            .star-rating { font-size: 1.5rem; }
        }
        @media print {
            .desktop-nav, .hamburger, .search-container,
            .user-interaction, .footer-links, .social-links {
                display: none !important;
            }
            body { font-size: 12pt; color: black; }
            .container { max-width: 100%; }
        }
