:root {
        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --dark-blue: #2c3e50;
        --light-gray: #f8f9fa;
    }

    .hero-gradient {
        background: var(--primary-gradient);
        position: relative;
        overflow: hidden;
    }

    .hero-gradient::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.8;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .feature-card {
        transition: all 0.3s ease;
        border: 1px solid #e1e8ed;
        height: 100%;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .code-block {
        background: #2d3748;
        color: #e2e8f0;
        border-radius: 8px;
        padding: 1.5rem;
        font-family: 'Courier New', monospace;
        font-size: 0.9rem;
        line-height: 1.6;
        overflow-x: auto;
    }

    .section-divider {
        background: linear-gradient(90deg, transparent, #ddd, transparent);
        height: 1px;
        margin: 3rem 0;
    }

    .stats-counter {
        font-size: 2.5rem;
        font-weight: bold;
        color: #667eea;
    }

    .navbar-brand .title {
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: bold;
    }

    .cta-section {
        background: var(--light-gray);
        border-top: 4px solid #667eea;
    }

    .demo-container {
        min-height: 200px;
        background: #f8f9fa;
        border: 2px dashed #dee2e6;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .htmx-logo {
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: bold;
        font-size: 1.5rem;
    }


    .examples-header {
            background: var(--primary-gradient), linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-bottom: 1px solid #dee2e6;
        }

        .example-card {
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .example-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border-color: #667eea;
        }

        .example-preview {
            height: 200px;
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .example-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(102, 126, 234, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .example-card:hover .example-overlay {
            opacity: 1;
        }

        .difficulty-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 10;
        }

        .category-filter {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 50px;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .category-filter:hover,
        .category-filter.is-active {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }

        .search-box {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            transition: border-color 0.2s ease;
        }

        .search-box:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.125em rgba(102, 126, 234, 0.25);
        }

        .examples-grid {
            margin-top: 2rem;
        }

        .coming-soon {
            opacity: 0.6;
            position: relative;
        }

        .coming-soon::after {
            content: 'Coming Soon';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .breadcrumb {
            background: transparent;
            padding: 1rem 0;
        }

        .scroll-box {
            max-height: 300px;
}
a.disabled {
    pointer-events: none;
}
