* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #1a365d;
            --secondary: #d4af37;
            --accent: #c53030;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #a0aec0;
            --success: #38a169;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--secondary), #e6c34f);
            color: var(--primary);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
        }
        .btn-accent {
            background: linear-gradient(to right, var(--accent), #e53e3e);
            color: white;
        }
        .section-title {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 12px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
        }
        .header {
            background: var(--primary);
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(90deg, #fff, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--primary);
            padding: 20px;
            flex-direction: column;
            gap: 20px;
            display: none;
            z-index: 999;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-top: 2px solid var(--secondary);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            font-size: 1.2rem;
            padding: 12px 20px;
            border-left: 4px solid transparent;
        }
        .nav-mobile a:hover {
            border-left-color: var(--secondary);
            background: rgba(255,255,255,0.05);
            padding-left: 30px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255,255,255,0.9);
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.95rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .breadcrumb i {
            color: var(--gray);
            font-size: 0.8rem;
        }
        .hero {
            padding: 60px 0;
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
            color: white;
            text-align: center;
            border-bottom: 5px solid var(--secondary);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e2e8f0;
        }
        .code-highlight {
            background: rgba(212, 175, 55, 0.2);
            border: 2px dashed var(--secondary);
            padding: 20px;
            border-radius: var(--border-radius);
            max-width: 700px;
            margin: 30px auto;
            font-family: monospace;
            font-size: 1.5rem;
            letter-spacing: 2px;
            color: #fff;
            word-break: break-all;
        }
        .main-content {
            padding: 60px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article > * + * {
            margin-top: 1.8rem;
        }
        .article h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-top: 2.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .article h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        .article p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .article ul, .article ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }
        .article li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        .article img {
            border-radius: var(--border-radius);
            margin: 2rem auto;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .info-box {
            background: #e6fffa;
            border-left: 5px solid var(--success);
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .warning-box {
            background: #fff5f5;
            border-left: 5px solid var(--accent);
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        .code-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .code-item {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
        }
        .code-item:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .code-item .code {
            font-family: monospace;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary);
            margin: 15px 0;
            background: white;
            padding: 10px;
            border-radius: 8px;
            border: 1px dashed var(--gray);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        @media (max-width: 992px) {
            .sidebar { order: -1; }
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--gray);
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .active {
            color: var(--secondary);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: var(--border-radius);
            resize: vertical;
            min-height: 120px;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .long-tail {
            padding: 40px 0;
            background: white;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .long-tail .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #f8f9fa;
            padding: 18px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #edf2f7;
            transform: translateX(5px);
        }
        .footer {
            background: var(--primary);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links a {
            display: block;
            padding: 8px 0;
            color: #cbd5e0;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a0aec0;
            font-size: 0.95rem;
        }
