* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #1a365d;
            --secondary: #d4af37;
            --accent: #c53030;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #718096;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f0f4f8;
            color: var(--dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, #2c5282 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-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .logo i {
            color: #ff6b6b;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
        }
        .search-form button {
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 0 25px 25px 0;
            padding: 10px 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #9b2c2c;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: rgba(0,0,0,0.2);
            border-radius: 8px;
            padding: 5px;
        }
        nav li {
            margin: 0 5px;
        }
        nav a {
            display: block;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background: var(--secondary);
            color: var(--primary);
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb a {
            color: #cbd5e0;
        }
        .breadcrumb a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: var(--gray);
        }
        main {
            flex-grow: 1;
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid var(--secondary);
            padding-left: 15px;
        }
        h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px dashed var(--gray);
        }
        h3 {
            color: var(--accent);
            font-size: 1.4rem;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--secondary);
            margin: 25px 0;
        }
        .code-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .code-item {
            background: #edf2f7;
            border-radius: 10px;
            padding: 20px;
            border: 2px solid #cbd5e0;
            transition: var(--transition);
        }
        .code-item:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .code-value {
            font-family: monospace;
            font-size: 1.3rem;
            background: var(--dark);
            color: white;
            padding: 12px;
            border-radius: 6px;
            text-align: center;
            margin: 10px 0;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
        }
        .code-value:hover::after {
            content: 'क्लिक कर कॉपी करें 📋';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        .reward {
            color: var(--accent);
            font-weight: bold;
        }
        .tip-box {
            background: #e6fffa;
            border: 2px solid #81e6d9;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        .tip-icon {
            color: #0d9488;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        .interview {
            background: #faf5ff;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #9f7aea;
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }
        .quote {
            font-style: italic;
            color: #553c9a;
            font-size: 1.2rem;
            margin: 15px 0;
            padding: 15px;
            background: white;
            border-radius: 8px;
            border-left: 4px solid #9f7aea;
        }
        figure {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .article-img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        figcaption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .rating-section, .comment-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #fbbf24;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 5px;
            font-weight: 600;
        }
        .form-control {
            padding: 12px 15px;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            padding: 12px 24px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background: #2c5282;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-accent {
            background: var(--accent);
        }
        .btn-accent:hover {
            background: #9b2c2c;
        }
        .user-comments {
            margin-top: 30px;
        }
        .comment {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-rating {
            color: #f59e0b;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0 30px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        .web-link:hover a {
            color: white;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .footer-about {
            flex: 1;
            min-width: 300px;
        }
        .footer-links {
            flex: 1;
            min-width: 200px;
        }
        .footer-links h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
            .code-list { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
            .search-form { max-width: 300px; }
        }
        @media (max-width: 768px) {
            .header-top { flex-wrap: wrap; }
            .search-form { order: 3; width: 100%; max-width: 100%; margin: 15px 0 0; }
            .hamburger { display: block; }
            nav { display: none; width: 100%; margin-top: 15px; }
            nav.active { display: block; }
            nav ul { flex-direction: column; }
            nav li { margin: 5px 0; }
            article { padding: 25px; }
            .highlight, .interview { padding: 20px; }
            .footer-content { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.8rem; }
            article { padding: 20px; }
            .code-list { grid-template-columns: 1fr; }
            .code-value { font-size: 1.1rem; }
            .tip-box { flex-direction: column; align-items: center; text-align: center; }
        }
        @media print {
            header, footer, .rating-section, .comment-section, .web-links { display: none; }
            body { background: white; color: black; }
            article { box-shadow: none; padding: 0; }
        }
