:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }
        body {
            font-family: 'Hanuman', sans-serif !important;
        }
        .hero-section {
            background: var(--primary-gradient);
            color: white;
            padding: 100px 0;
        }

        .hero-success {
            background: var(--success-gradient);
        }

        .hero-dark {
            background: var(--dark-gradient);
        }

        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .badge-tutorial {
            background-color: #0d6efd;
        }

        .badge-code {
            background-color: #6c757d;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }

        .footer {
            background-color: #1a1d29;
            color: #8892b0;
        }

        .footer a {
            color: #8892b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: white;
        }

        .footer h5, .footer h6 {
            color: white;
        }

        pre[class*="language-"] {
            margin: -0.5rem 0;
            border-radius: 0.5rem;
            font-size: 0.9rem;
        }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .article-content h2 {
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: #2d3748;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            color: #4a5568;
        }

        .code-block {
            position: relative;
            margin: 2rem 0;
        }

        .code-header {
            background: #2d3748;
            color: #e2e8f0;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem 0.5rem 0 0;
            display: flex;
            justify-content: between;
            align-items: center;
            font-size: 0.875rem;
        }

        .copy-btn {
            background: transparent;
            border: 1px solid #4a5568;
            color: #e2e8f0;
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .copy-btn:hover {
            background: #4a5568;
            color: white;
        }

        .copy-btn.copied {
            background: #48bb78;
            border-color: #48bb78;
            color: white;
        }

        .stats-icon {
            width: 80px;
            height: 80px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }

        .alert-dismissible {
            position: relative;
        }
        .toast-error {
            background-color: #dc3545;
        }
        .toast-success {
            background-color: #28a745;
        }
        .toast-info {
            background-color: #17a2b8;
        }
        .toast-warning {
            background-color: #ffc107;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }
        }