:root {
            --primary-navy: #0a1a3a;
            --secondary-gold: #d4af37;
            --accent-red: #b22222;
            --light-gray: #f5f7fa;
            --dark-gray: #2c3e50;
            --text-primary: #333;
            --text-secondary: #555;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--light-gray);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2c52 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: 15px 0;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--secondary-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: var(--secondary-gold);
            border-bottom-color: var(--secondary-gold);
        }
        .breadcrumb {
            background-color: rgba(255,255,255,0.1);
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ddd;
        }
        .breadcrumb a:hover {
            color: var(--secondary-gold);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .search-container {
            margin: 25px auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: white;
        }
        .search-input:focus {
            outline: none;
            box-shadow: inset 0 0 0 2px var(--secondary-gold);
        }
        .search-btn {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #9b1b1b;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--secondary-gold);
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-navy);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 1rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .featured-image {
            width: 100%;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .content-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--accent-red);
            font-size: 2rem;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        h3 {
            color: var(--primary-navy);
            font-size: 1.6rem;
            margin: 20px 0 12px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.15);
            border-left: 4px solid var(--secondary-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .code-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .code-card {
            background: linear-gradient(145deg, #f0f0f0, #ffffff);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--accent-red);
            transition: var(--transition);
        }
        .code-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .code-value {
            font-family: 'Courier New', monospace;
            background-color: var(--dark-gray);
            color: white;
            padding: 15px;
            border-radius: 5px;
            font-size: 1.3rem;
            text-align: center;
            margin: 15px 0;
            letter-spacing: 1px;
            word-break: break-all;
            cursor: pointer;
            position: relative;
        }
        .code-value:hover::after {
            content: 'क्लिक कर कॉपी करें';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        .reward-list {
            list-style: none;
            margin: 15px 0;
        }
        .reward-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .reward-list li:before {
            content: '🎁';
            font-size: 1.2rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-form, .rating-form {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .form-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            color: var(--primary-navy);
        }
        .form-title i {
            color: var(--secondary-gold);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-gray);
        }
        input, textarea, select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            border-color: var(--secondary-gold);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 2rem;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--secondary-gold);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-navy), var(--dark-gray));
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--accent-red), #9b1b1b);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: var(--border-radius);
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: var(--transition);
            border-left: 4px solid var(--primary-navy);
        }
        .web-link:hover {
            border-left-color: var(--accent-red);
            transform: translateX(5px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
        }
        .web-link a {
            color: var(--dark-gray);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-red);
        }
        footer {
            background-color: var(--primary-navy);
            color: white;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--secondary-gold);
            font-size: 1.5rem;
            margin-bottom: 20px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ddd;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: var(--primary-navy);
                padding: 20px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav.active {
                left: 0;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 15px;
            }
            .header-top {
                padding: 12px 0;
            }
            .article-header h1 {
                font-size: 1.9rem;
            }
            .content-section {
                padding: 25px;
            }
            .code-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.7rem;
            }
            .search-input {
                padding: 15px;
            }
            .search-btn {
                padding: 0 20px;
            }
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .text-gold { color: var(--secondary-gold); }
        .text-red { color: var(--accent-red); }
        .mb-20 { margin-bottom: 20px; }
        .mt-30 { margin-top: 30px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
