﻿.blog-content pre,
.blog-content .highlight,
.highlight {
    position: relative;
    background: #1e1e1e !important;
    border-radius: 12px;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);
    border: 1px solid #333;
}

    .blog-content pre code,
    .highlight code,
    .highlight pre code {
        display: block;
        padding: 1.25rem 1.5rem !important;
        padding-top: 52px !important;
        background: transparent !important;
        color: #e4e4e4 !important;
        font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', monospace !important;
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
        overflow-x: auto;
        white-space: pre;
        -webkit-overflow-scrolling: touch;
        tab-size: 4;
    }

    /* Pre without code element */
    .blog-content pre:not(:has(code)) {
        padding: 1.25rem 1.5rem !important;
        padding-top: 52px !important;
        color: #e4e4e4 !important;
        font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', monospace !important;
        font-size: 0.875rem !important;
        line-height: 1.7 !important;
    }

    /* Terminal-style header bar */
    .blog-content pre::before,
    .highlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 36px;
        background: linear-gradient(180deg, #3c3c3c 0%, #323232 100%);
        border-bottom: 1px solid #1a1a1a;
        border-radius: 12px 12px 0 0;
        z-index: 1;
    }

    /* Hide default pseudo-element */
    .blog-content pre::after,
    .highlight::after {
        display: none;
    }

/* Copy button styles */
.code-copy-btn {
    position: absolute;
    top: 6px;
    right: 12px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

    .code-copy-btn svg {
        flex-shrink: 0;
    }

    .code-copy-btn:hover {
        background: rgba(255,255,255,.2);
        color: #fff;
        border-color: rgba(255,255,255,.3);
    }

    .code-copy-btn.copied {
        background: #27ca40;
        color: #fff;
        border-color: #27ca40;
    }

/* Header title in code blocks */
.code-header-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #b0b0b0;
    letter-spacing: 0.3px;
    pointer-events: none;
    z-index: 5;
}

/* Terminal icon badge */
.code-terminal-icon {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .code-terminal-icon svg {
        width: 12px;
        height: 12px;
        color: #fff;
    }

/* Inline code styles */
.blog-content code:not(pre code) {
    background: var(--kt-gray-200);
    color: var(--kt-danger);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-weight: 500;
}

/* Dark mode inline code */
[data-theme="dark"] .blog-content code:not(pre code) {
    background: #2d2d2d;
    color: #e06c75;
}

/* Scrollbar styling for code blocks */
.blog-content pre::-webkit-scrollbar,
.highlight pre::-webkit-scrollbar {
    height: 8px;
    background: transparent;
}

.blog-content pre::-webkit-scrollbar-thumb,
.highlight pre::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 4px;
}

    .blog-content pre::-webkit-scrollbar-thumb:hover,
    .highlight pre::-webkit-scrollbar-thumb:hover {
        background: #5a5a5a;
    }

/* Blog content enhancements */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.blog-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--kt-primary);
    font-weight: 700;
}

.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--kt-primary);
    background: var(--kt-gray-100);
    border-radius: 0 8px 8px 0;
}

.blog-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

    .blog-content table th {
        background: var(--kt-primary);
        color: #fff;
        font-weight: 600;
    }

    .blog-content table th,
    .blog-content table td {
        padding: 0.875rem 1rem;
        border: 1px solid var(--kt-border-color);
    }
/*---------------------------------------------------------------*/
.lt-hero {
    background: linear-gradient(135deg, #f5f8fa 0%, #e8f4fd 100%);
    border: 1px solid #E4E6EF;
    border-radius: 0.85rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .lt-hero::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(0,158,247,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.lt-hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #181C32;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.lt-hero-desc {
    color: #5E6278;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.lt-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 13px;
    color: #A1A5B7;
    margin-top: 1rem;
}

    .lt-hero-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

/* ---------------------------------------------------------------
           2. BADGE
           Kullanım: <span class="lt-badge">Updated 2026</span>
        --------------------------------------------------------------- */
.lt-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,158,247,0.1);
    border: 1px solid rgba(0,158,247,0.25);
    border-radius: 50rem;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #009ef7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lt-badge-green {
    background: rgba(80,205,137,0.1);
    border-color: rgba(80,205,137,0.25);
    color: #50cd89;
}

.lt-badge-warning {
    background: rgba(255,199,0,0.1);
    border-color: rgba(255,199,0,0.25);
    color: #ffc700;
}

.lt-badge-danger {
    background: rgba(241,65,108,0.1);
    border-color: rgba(241,65,108,0.25);
    color: #f1416c;
}

/* ---------------------------------------------------------------
           3. SECTION TITLE
           Kullanım: <h2 class="lt-section-title">Başlık</h2>
        --------------------------------------------------------------- */
.lt-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #181C32;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E4E6EF;
}

/* ---------------------------------------------------------------
           4. FEATURE GRID
           Kullanım: <div class="lt-feature-grid"> <div class="lt-feature-item">...</div> </div>
        --------------------------------------------------------------- */
.lt-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.lt-feature-item {
    background: #f5f8fa;
    border: 1px solid #E4E6EF;
    border-radius: 0.65rem;
    padding: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .lt-feature-item:hover {
        border-color: #009ef7;
        box-shadow: 0 2px 12px rgba(0,158,247,0.08);
    }

    .lt-feature-item .lt-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .lt-feature-item strong {
        display: block;
        color: #181C32;
        font-size: 0.9rem;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .lt-feature-item span {
        font-size: 0.825rem;
        color: #7E8299;
        line-height: 1.45;
        display: block;
    }

/* ---------------------------------------------------------------
           5. TOOL / CONTENT CARDS
           Kullanım: <div class="lt-card"> veya <div class="lt-card lt-card-highlight">
        --------------------------------------------------------------- */
.lt-card {
    background: #fff;
    border: 1px solid #E4E6EF;
    border-radius: 0.85rem;
    padding: 1.75rem;
    margin: 1.75rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}

    .lt-card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        border-color: #B5B5C3;
    }

.lt-card-highlight {
    border-color: #009ef7 !important;
    background: linear-gradient(135deg, #fff 0%, #f0faff 100%);
    box-shadow: 0 4px 20px rgba(0,158,247,0.12) !important;
}

.lt-card-success {
    border-color: #50cd89 !important;
    background: linear-gradient(135deg, #fff 0%, #f0fff8 100%);
}

.lt-card-warning {
    border-color: #ffc700 !important;
    background: linear-gradient(135deg, #fff 0%, #fffdf0 100%);
}

.lt-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.lt-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f5f8fa;
    border: 1px solid #E4E6EF;
    border-radius: 0.5rem;
    font-size: 12px;
    font-weight: 700;
    color: #009ef7;
    margin-right: 10px;
    flex-shrink: 0;
}

.lt-card-highlight .lt-card-num {
    background: rgba(0,158,247,0.1);
    border-color: rgba(0,158,247,0.3);
}

.lt-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #181C32;
    display: flex;
    align-items: center;
}

/* ---------------------------------------------------------------
           6. TAGS / PILLS
           Kullanım: <span class="lt-tag lt-tag-blue">Label</span>
        --------------------------------------------------------------- */
.lt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lt-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 50rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid;
}

.lt-tag-blue {
    color: #009ef7;
    border-color: rgba(0,158,247,0.3);
    background: rgba(0,158,247,0.08);
}

.lt-tag-green {
    color: #50cd89;
    border-color: rgba(80,205,137,0.3);
    background: rgba(80,205,137,0.08);
}

.lt-tag-purple {
    color: #7239ea;
    border-color: rgba(114,57,234,0.3);
    background: rgba(114,57,234,0.08);
}

.lt-tag-orange {
    color: #fd7e14;
    border-color: rgba(253,126,20,0.3);
    background: rgba(253,126,20,0.08);
}

.lt-tag-red {
    color: #f1416c;
    border-color: rgba(241,65,108,0.3);
    background: rgba(241,65,108,0.08);
}

.lt-tag-yellow {
    color: #ffc700;
    border-color: rgba(255,199,0,0.3);
    background: rgba(255,199,0,0.08);
}

/* ---------------------------------------------------------------
           7. PROS / CONS
           Kullanım:
           <div class="lt-pros-cons">
             <div class="lt-pros"><h6>Pros</h6><ul><li>...</li></ul></div>
             <div class="lt-cons"><h6>Cons</h6><ul><li>...</li></ul></div>
           </div>
        --------------------------------------------------------------- */
.lt-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
}

@@media (max-width: 576px) {
    .lt-pros-cons {
        grid-template-columns: 1fr;
    }
}

.lt-pros, .lt-cons {
    background: #f5f8fa;
    border-radius: 0.65rem;
    padding: 1rem 1.1rem;
}

.lt-pros {
    border-left: 3px solid #50cd89;
}

.lt-cons {
    border-left: 3px solid #f1416c;
}

.lt-pros h6 {
    color: #50cd89;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.lt-cons h6 {
    color: #f1416c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.lt-pros ul, .lt-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lt-pros li, .lt-cons li {
    font-size: 13px;
    color: #5E6278;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.45;
}

    .lt-pros li::before {
        content: '✓';
        color: #50cd89;
        font-weight: 700;
        flex-shrink: 0;
    }

    .lt-cons li::before {
        content: '✕';
        color: #f1416c;
        font-weight: 700;
        flex-shrink: 0;
    }

/* ---------------------------------------------------------------
           8. PRICE BOX
           Kullanım: <div class="lt-price">💰 <span class="lt-free">Free</span> | <span class="lt-paid">$2/mo</span></div>
        --------------------------------------------------------------- */
.lt-price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #f5f8fa;
    border: 1px solid #E4E6EF;
    border-radius: 0.5rem;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #181C32;
    margin-top: 1rem;
}

    .lt-price .lt-free {
        color: #50cd89;
    }

    .lt-price .lt-paid {
        color: #009ef7;
    }

/* ---------------------------------------------------------------
           9. INFO / WARNING / SUCCESS BOXES
           Kullanım: <div class="lt-alert lt-alert-info"> <strong>Title</strong> <p>Text</p> </div>
        --------------------------------------------------------------- */
.lt-alert {
    border-radius: 0.65rem;
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
}

    .lt-alert strong {
        display: block;
        margin-bottom: 4px;
        font-size: 13.5px;
    }

    .lt-alert p {
        margin: 0;
        font-size: 13.5px;
        color: #5E6278;
        line-height: 1.55;
    }

.lt-alert-info {
    background: rgba(0,158,247,0.05);
    border: 1px solid rgba(0,158,247,0.2);
}

    .lt-alert-info strong {
        color: #009ef7;
    }

.lt-alert-warning {
    background: rgba(255,199,0,0.06);
    border: 1px solid rgba(255,199,0,0.3);
}

    .lt-alert-warning strong {
        color: #ffc700;
    }

.lt-alert-success {
    background: rgba(80,205,137,0.05);
    border: 1px solid rgba(80,205,137,0.2);
}

    .lt-alert-success strong {
        color: #50cd89;
    }

.lt-alert-danger {
    background: rgba(241,65,108,0.05);
    border: 1px solid rgba(241,65,108,0.2);
}

    .lt-alert-danger strong {
        color: #f1416c;
    }

/* ---------------------------------------------------------------
           10. COMPARISON TABLE
           Kullanım: <div class="lt-table-wrap"> <table class="lt-table"> ... </table> </div>
        --------------------------------------------------------------- */
.lt-table-wrap {
    overflow-x: auto;
    border-radius: 0.85rem;
    border: 1px solid #E4E6EF;
    margin: 1.5rem 0;
}

.lt-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 13px;
}

    .lt-table thead tr {
        background: #f5f8fa;
        border-bottom: 1px solid #E4E6EF;
    }

    .lt-table th {
        padding: 11px 14px;
        text-align: left;
        font-weight: 600;
        color: #7E8299;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .lt-table td {
        padding: 11px 14px;
        border-bottom: 1px solid #f5f8fa;
        color: #5E6278;
        vertical-align: middle;
    }

    .lt-table tr:last-child td {
        border-bottom: none;
    }

    .lt-table tr:hover td {
        background: rgba(0,158,247,0.02);
    }

    .lt-table .lt-row-highlight {
        background: rgba(0,158,247,0.04);
    }

        .lt-table .lt-row-highlight td:first-child {
            color: #009ef7;
            font-weight: 600;
        }

.lt-check {
    color: #50cd89;
    font-weight: 700;
}

.lt-cross {
    color: #f1416c;
}

.lt-partial {
    color: #ffc700;
    font-weight: 600;
}

/* Mobile table: masaüstünde tablo, mobilde kart */
@@media (max-width: 767px) {
    .lt-table-desktop {
        display: none;
    }
}

@@media (min-width: 768px) {
    .lt-table-mobile {
        display: none;
    }
}

.lt-mobile-card {
    border: 1px solid #E4E6EF;
    border-radius: 0.65rem;
    padding: 1rem 1.1rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

    .lt-mobile-card.lt-mobile-highlight {
        border-color: #009ef7;
        background: #f0faff;
    }

.lt-mobile-card-title {
    font-weight: 600;
    color: #181C32;
    margin-bottom: 0.6rem;
    font-size: 14px;
}

.lt-mobile-highlight .lt-mobile-card-title {
    color: #009ef7;
}

.lt-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 8px;
}

    .lt-mobile-grid .lt-mobile-label {
        font-size: 12px;
        color: #A1A5B7;
    }

    .lt-mobile-grid .lt-mobile-value {
        font-size: 12px;
        color: #5E6278;
    }

/* ---------------------------------------------------------------
           11. USE CASE / HIGHLIGHT BOXES
           Kullanım: <div class="lt-usecase"> <h5>Başlık</h5> <p>...</p> </div>
        --------------------------------------------------------------- */
.lt-usecase {
    border: 1px solid #E4E6EF;
    border-radius: 0.65rem;
    padding: 1.25rem 1.4rem;
    margin-bottom: 0.85rem;
    background: #fff;
    transition: border-color 0.2s;
}

    .lt-usecase:hover {
        border-color: #B5B5C3;
    }

    .lt-usecase h5 {
        font-size: 1rem;
        font-weight: 600;
        color: #181C32;
        margin-bottom: 0.4rem;
    }

    .lt-usecase p {
        font-size: 13.5px;
        color: #7E8299;
        margin: 0;
        line-height: 1.55;
    }

        .lt-usecase p strong {
            color: #181C32;
        }

/* ---------------------------------------------------------------
           12. STEP LIST
           Kullanım: <div class="lt-steps"> <div class="lt-step"> <span class="lt-step-num">1</span> <div>...</div> </div> </div>
        --------------------------------------------------------------- */
.lt-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.lt-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f5f8fa;
    border: 1px solid #E4E6EF;
    border-radius: 0.65rem;
    padding: 1.1rem 1.25rem;
}

.lt-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #009ef7;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.lt-step-title {
    font-weight: 600;
    color: #181C32;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.lt-step-desc {
    font-size: 13px;
    color: #7E8299;
    margin: 0;
    line-height: 1.45;
}

/* ---------------------------------------------------------------
           13. CTA BLOCK
           Kullanım: <div class="lt-cta"> <h3>...</h3> <p>...</p> <a href="...">...</a> </div>
        --------------------------------------------------------------- */
.lt-cta {
    background: linear-gradient(135deg, #009ef7 0%, #0075b4 100%);
    border-radius: 0.85rem;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

    .lt-cta h3 {
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .lt-cta p {
        color: rgba(255,255,255,0.8);
        margin-bottom: 1.5rem;
    }

    .lt-cta a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: #009ef7;
        border-radius: 0.475rem;
        padding: 0.7rem 1.75rem;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: opacity 0.2s;
    }

        .lt-cta a:hover {
            opacity: 0.9;
            color: #009ef7;
        }

/* ---------------------------------------------------------------
           14. DIVIDER
           Kullanım: <div class="lt-divider"></div>
        --------------------------------------------------------------- */
.lt-divider {
    height: 1px;
    background: #E4E6EF;
    margin: 2rem 0;
}

/* ---------------------------------------------------------------
           15. STAT GRID
           Kullanım: <div class="lt-stat-grid"> <div class="lt-stat"> <strong>16+</strong> <span>Servers</span> </div> </div>
        --------------------------------------------------------------- */
.lt-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.lt-stat {
    background: #f5f8fa;
    border: 1px solid #E4E6EF;
    border-radius: 0.65rem;
    padding: 1.25rem;
    text-align: center;
}

    .lt-stat strong {
        display: block;
        font-size: 1.6rem;
        font-weight: 700;
        color: #009ef7;
        line-height: 1;
        margin-bottom: 4px;
    }

    .lt-stat span {
        font-size: 12px;
        color: #7E8299;
    }


/* ==============================================================
           DARK MODE — html[data-theme="dark"]
           ============================================================== */

/* Hero */
html[data-theme="dark"] .lt-hero {
    background: linear-gradient(135deg, #1e1e2d 0%, #1a2535 100%);
    border-color: #2b2b40;
}

html[data-theme="dark"] .lt-hero-title {
    color: #ffffff;
}

html[data-theme="dark"] .lt-hero-desc {
    color: #92929f;
}

html[data-theme="dark"] .lt-hero-meta {
    color: #565674;
}

/* Section title */
html[data-theme="dark"] .lt-section-title {
    color: #ffffff;
    border-bottom-color: #2b2b40;
}

/* Feature grid */
html[data-theme="dark"] .lt-feature-item {
    background: #1e1e2d;
    border-color: #2b2b40;
}

    html[data-theme="dark"] .lt-feature-item:hover {
        border-color: #009ef7;
    }

    html[data-theme="dark"] .lt-feature-item strong {
        color: #ffffff;
    }

    html[data-theme="dark"] .lt-feature-item span {
        color: #92929f;
    }

/* Cards */
html[data-theme="dark"] .lt-card {
    background: #1e1e2d;
    border-color: #2b2b40;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

    html[data-theme="dark"] .lt-card:hover {
        border-color: #3a3a5a;
        box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    }

html[data-theme="dark"] .lt-card-highlight {
    background: linear-gradient(135deg, #1e1e2d 0%, #162033 100%) !important;
    border-color: #009ef7 !important;
    box-shadow: 0 4px 20px rgba(0,158,247,0.15) !important;
}

html[data-theme="dark"] .lt-card-success {
    background: linear-gradient(135deg, #1e1e2d 0%, #162033 100%) !important;
    border-color: #50cd89 !important;
}

html[data-theme="dark"] .lt-card-num {
    background: #2b2b40;
    border-color: #3a3a5a;
}

html[data-theme="dark"] .lt-card-highlight .lt-card-num {
    background: rgba(0,158,247,0.15);
    border-color: rgba(0,158,247,0.4);
}

html[data-theme="dark"] .lt-card-title {
    color: #ffffff;
}

html[data-theme="dark"] .lt-card p {
    color: #92929f;
}

    html[data-theme="dark"] .lt-card p strong {
        color: #cdcde0;
    }

/* Pros/Cons */
html[data-theme="dark"] .lt-pros,
html[data-theme="dark"] .lt-cons {
    background: #151521;
}

    html[data-theme="dark"] .lt-pros li,
    html[data-theme="dark"] .lt-cons li {
        color: #92929f;
    }

/* Price */
html[data-theme="dark"] .lt-price {
    background: #151521;
    border-color: #2b2b40;
    color: #cdcde0;
}

/* Alert boxes */
html[data-theme="dark"] .lt-alert-info {
    background: rgba(0,158,247,0.08);
    border-color: rgba(0,158,247,0.25);
}

html[data-theme="dark"] .lt-alert-warning {
    background: rgba(255,199,0,0.08);
    border-color: rgba(255,199,0,0.3);
}

html[data-theme="dark"] .lt-alert-success {
    background: rgba(80,205,137,0.08);
    border-color: rgba(80,205,137,0.25);
}

html[data-theme="dark"] .lt-alert-danger {
    background: rgba(241,65,108,0.08);
    border-color: rgba(241,65,108,0.25);
}

html[data-theme="dark"] .lt-alert p {
    color: #92929f;
}

/* Table */
html[data-theme="dark"] .lt-table-wrap {
    border-color: #2b2b40;
}

html[data-theme="dark"] .lt-table {
    background: #1e1e2d;
}

    html[data-theme="dark"] .lt-table thead tr {
        background: #151521;
        border-bottom-color: #2b2b40;
    }

    html[data-theme="dark"] .lt-table th {
        color: #565674;
    }

    html[data-theme="dark"] .lt-table td {
        border-bottom-color: #1e1e2d;
        color: #92929f;
    }

    html[data-theme="dark"] .lt-table tr:hover td {
        background: rgba(255,255,255,0.02);
    }

    html[data-theme="dark"] .lt-table .lt-row-highlight {
        background: rgba(0,158,247,0.06);
    }

/* Mobile cards */
html[data-theme="dark"] .lt-mobile-card {
    background: #1e1e2d;
    border-color: #2b2b40;
}

    html[data-theme="dark"] .lt-mobile-card.lt-mobile-highlight {
        background: #162033;
        border-color: #009ef7;
    }

html[data-theme="dark"] .lt-mobile-card-title {
    color: #cdcde0;
}

html[data-theme="dark"] .lt-mobile-label {
    color: #565674;
}

html[data-theme="dark"] .lt-mobile-value {
    color: #92929f;
}

/* Use case */
html[data-theme="dark"] .lt-usecase {
    background: #1e1e2d;
    border-color: #2b2b40;
}

    html[data-theme="dark"] .lt-usecase:hover {
        border-color: #3a3a5a;
    }

    html[data-theme="dark"] .lt-usecase h5 {
        color: #ffffff;
    }

    html[data-theme="dark"] .lt-usecase p {
        color: #92929f;
    }

        html[data-theme="dark"] .lt-usecase p strong {
            color: #cdcde0;
        }

/* Steps */
html[data-theme="dark"] .lt-step {
    background: #1e1e2d;
    border-color: #2b2b40;
}

html[data-theme="dark"] .lt-step-title {
    color: #ffffff;
}

html[data-theme="dark"] .lt-step-desc {
    color: #92929f;
}

/* Divider */
html[data-theme="dark"] .lt-divider {
    background: #2b2b40;
}

/* Stat grid */
html[data-theme="dark"] .lt-stat {
    background: #1e1e2d;
    border-color: #2b2b40;
}

    html[data-theme="dark"] .lt-stat span {
        color: #92929f;
    }

html[data-theme="dark"] .lt-card p,
html[data-theme="dark"] .lt-card li,
html[data-theme="dark"] .lt-card span:not(.lt-tag):not(.lt-badge):not(.lt-check):not(.lt-cross):not(.lt-partial):not(.lt-card-num),
html[data-theme="dark"] .lt-card code {
    color: #92929f !important;
}

html[data-theme="dark"] .lt-card strong {
    color: #cdcde0 !important;
}

html[data-theme="dark"] .lt-pros li,
html[data-theme="dark"] .lt-cons li {
    color: #92929f !important;
}

.lt-faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.lt-faq-item {
    border: 1px solid #E4E6EF;
    border-radius: 0.65rem;
    overflow: hidden;
    background: #fff;
}

.lt-faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: #181C32;
    margin: 0;
    padding: 1.1rem 1.4rem;
    background: #f5f8fa;
    border-bottom: 1px solid #E4E6EF;
    cursor: default;
}

    .lt-faq-q::before {
        content: 'Q  ';
        color: #009ef7;
        font-weight: 700;
        font-size: 11px;
        letter-spacing: 0.05em;
        margin-right: 4px;
    }

.lt-faq-a {
    padding: 1.1rem 1.4rem;
}

    .lt-faq-a p {
        margin: 0;
        font-size: 13.5px;
        color: #5E6278;
        line-height: 1.6;
    }

        .lt-faq-a p strong {
            color: #181C32;
        }

html[data-theme="dark"] .lt-card p,
html[data-theme="dark"] .lt-card li,
html[data-theme="dark"] .lt-card code {
    color: #92929f !important;
}

html[data-theme="dark"] .lt-card strong {
    color: #cdcde0 !important;
}

html[data-theme="dark"] .lt-pros li,
html[data-theme="dark"] .lt-cons li {
    color: #92929f !important;
}

html[data-theme="dark"] .lt-faq-item {
    background: #1e1e2d;
    border-color: #2b2b40;
}

html[data-theme="dark"] .lt-faq-q {
    background: #151521;
    border-bottom-color: #2b2b40;
    color: #ffffff;
}

html[data-theme="dark"] .lt-faq-a p {
    color: #92929f !important;
}

    html[data-theme="dark"] .lt-faq-a p strong {
        color: #cdcde0 !important;
    }

.lt-step > div,
.lt-card,
.lt-alert,
.lt-usecase,
.lt-feature-item,
.lt-hero,
.lt-table-wrap,
.lt-table-desktop,
.lt-table-mobile {
    min-width: 0;
}

    pre,
    .lt-step pre,
    .lt-card pre,
    .lt-alert pre {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: pre-wrap;
        word-break: break-word;
    }

code, a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lt-hero,
.lt-card,
.lt-alert,
.lt-usecase,
.lt-table-wrap {
    overflow-x: hidden;
}

.lt-step > :not(.lt-step-num) {
    flex: 1 1 0% !important;
    min-width: 0 !important; /* flex overflow/shrink fix */
}

.lt-step pre,
.lt-step .highlight,
.lt-step .blog-content pre,
.lt-step .blog-content .highlight {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

    .lt-step pre > code,
    .lt-step .highlight pre > code,
    .lt-step .highlight > code {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

@media (max-width: 768px) {
    .lt-step {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .lt-step {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

        .lt-step > :not(.lt-step-num) {
            flex: 1 1 0% !important;
            min-width: 0 !important;
            max-width: 100% !important;
        }

        .lt-step .highlight,
        .lt-step pre {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            box-sizing: border-box !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            -webkit-overflow-scrolling: touch !important;
        }

            .lt-step pre,
            .lt-step pre > code,
            .lt-step .highlight pre,
            .lt-step .highlight pre > code,
            .lt-step .highlight > code {
                white-space: pre !important;
                word-break: normal !important;
                overflow-wrap: normal !important;
                display: block !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
}

@media (max-width: 768px) {
    .lt-step > :not(.lt-step-num) {
        width: 100% !important;
        max-width: 100% !important;
    }

    .lt-step .lt-terminal,
    .lt-step .terminal,
    .lt-step .code-block,
    .lt-step .highlight {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

        .lt-step .lt-terminal > *,
        .lt-step .terminal > *,
        .lt-step .code-block > *,
        .lt-step .highlight > * {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 0 !important;
            box-sizing: border-box !important;
        }

    .lt-step pre {
        width: 100% !important;
        max-width: 100% !important;
    }
}