   body {
            background-color: #1F1D1B;
            color: #F5F0EB;
            font-family: 'Outfit', sans-serif;
            overflow-x: hidden;
        }


   .breadcrumb-bar {
            background: linear-gradient(180deg, #1D1A17 0%, #1A1815 100%);
        }
        .breadcrumb-link {
            color: rgba(245, 240, 235, 0.5);
            transition: color 0.2s ease;
        }
        .breadcrumb-link:hover {
            color: #F7BD71;
        }
        .breadcrumb-current {
            color: #F5F0EB;
            font-weight: 600;
        }
        .breadcrumb-sep {
            color: rgba(245, 240, 235, 0.25);
        }

        .share-btn {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
            border: 1px solid #2A2725;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(245, 240, 235, 0.4);
            transition: all 0.2s ease;
        }
        .share-btn:hover {
            border-color: rgba(247, 189, 113, 0.35);
            color: #F7BD71;
            transform: translateY(-1px);
        }
        .share-btn svg {
            width: 12px;
            height: 12px;
        }


        /* Hero Grid Effect */
        .hero-grid {
            background-size: 80px 80px;
            background-image:
                linear-gradient(to right, rgba(247, 189, 113, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(247, 189, 113, 0.03) 1px, transparent 1px);
            mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }
        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* FAQ Accordion Transition */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-icon {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Utilities */
        .solid-gradient {
            background: linear-gradient(to bottom, #23211E, #1D1A17);
        }


    .divider-line {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 1.5rem 0 1.75rem;
        height: 8px;
    }
    .divider-line .div-chip {
        width: 7px;
        height: 7px;
        border-radius: 2px;
        background: #F7BD71;
        box-shadow: 0 0 10px rgba(247, 189, 113, 0.55);
        flex-shrink: 0;
    }
    .divider-line .div-track {
        width: 140px;
        max-width: 40%;
        height: 2px;
        background: linear-gradient(90deg, #F7BD71 0%, rgba(247, 189, 113, 0.45) 45%, transparent 100%);
        border-radius: 2px;
    }
    .divider-line .div-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(247, 189, 113, 0.5);
        flex-shrink: 0;
    }
    .divider-line .div-dot-sm {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: rgba(247, 189, 113, 0.25);
        flex-shrink: 0;
    }
    /* Base Card & Pattern */
        .status-card {
            background: linear-gradient(to bottom, #23211E, #1D1A17);
            border: 1px solid #2A2725;
            position: relative;
            overflow: hidden;
        }
        .status-pattern {
            position: absolute;
            inset: 0;
            background-size: 16px 16px;
            background-image: 
                linear-gradient(to right, #2A2725 1px, transparent 1px),
                linear-gradient(to bottom, #2A2725 1px, transparent 1px);
            opacity: 0.3;
            z-index: 0;
            pointer-events: none;
        }

        /* 1. Pulse dot */
        .pulse-dot {
            box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
            animation: pulse-green 2s infinite;
        }
        @keyframes pulse-green {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(39, 201, 63, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 201, 63, 0); }
        }

        /* 2. Mini Bar Chart (Users) */
        .user-bar {
            width: 3px;
            background-color: #27C93F;
            border-radius: 1px;
            transform-origin: bottom;
            animation: bar-fluctuate 2s ease-in-out infinite alternate;
        }
        @keyframes bar-fluctuate {
            0% { transform: scaleY(0.4); }
            100% { transform: scaleY(1); }
        }

        /* 3. Equalizer (Server Load) */
        .eq-bar {
            width: 4px;
            background-color: #F7BD71;
            border-radius: 1px;
            transform-origin: bottom;
            animation: eq-bounce 1.5s ease-in-out infinite;
        }
        @keyframes eq-bounce {
            0%, 100% { transform: scaleY(0.2); opacity: 0.5; }
            50% { transform: scaleY(1); opacity: 1; }
        }

        /* 4. Enhanced Radar Scanner */
        .radar-box {
            position: relative;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(247, 189, 113, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: #1A1815;
        }
        /* Crosshairs */
        .radar-box::after {
            content: '';
            position: absolute;
            width: 100%; height: 1px;
            background: rgba(247, 189, 113, 0.2);
        }
        .radar-line-v {
            position: absolute;
            height: 100%; width: 1px;
            background: rgba(247, 189, 113, 0.2);
            z-index: 1;
        }
        /* Scanner Sweep */
        .radar-sweep {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: conic-gradient(from 0deg, transparent 60%, rgba(247, 189, 113, 0.8) 100%);
            animation: radar-spin 2s linear infinite;
            z-index: 2;
        }
        .radar-core {
            width: 6px;
            height: 6px;
            background: #F5F0EB;
            border-radius: 50%;
            z-index: 3;
            box-shadow: 0 0 6px #F7BD71;
        }
        @keyframes radar-spin {
            100% { transform: rotate(360deg); }
        }

        /* 5. Angular Sparkline (Latency) */
        .sparkline-path {
            stroke-dasharray: 120;
            animation: draw-line 4s linear infinite;
        }
        @keyframes draw-line {
            0% { stroke-dashoffset: 120; }
            100% { stroke-dashoffset: -120; }
        }
   
  /* Specific animations for feature pseudo-elements */
        .term-cursor {
            display: inline-block;
            width: 6px;
            height: 12px;
            background-color: #27C93F;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
            margin-left: 2px;
        }
        @keyframes blink { 50% { opacity: 0; } }
        
        .skeleton-shimmer {
            background: linear-gradient(90deg, #2A2725 25%, #33302D 50%, #2A2725 75%);
            background-size: 200% 100%;
            animation: shimmer 2s infinite linear;
        }
        @keyframes shimmer { 100% { background-position: -200% 0; } }

        .feature-card {
            background: linear-gradient(to bottom, #23211E, #1D1A17);
            border: 1px solid #2A2725;
            transition: border-color 0.3s ease;
        }
        .feature-card:hover {
            border-color: rgba(247, 189, 113, 0.3);
        }

        .icon-box {
            background: linear-gradient(to bottom, #FFFFFF, #D1CBC3);
            box-shadow: inset 0 -2px 6px rgba(0,0,0,0.2);
        }

        /* Node Graph */
        .node-line { position: relative; }
        .node-line::before {
            content: ''; position: absolute;
            top: 50%; left: 0; right: 0;
            height: 1px; background: #2A2725;
            z-index: 0;
            transform: translateY(-50%);
        }

  .trust-card {
            background: linear-gradient(145deg, #23211E 0%, #1D1A17 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle localized grid pattern */
        .trust-pattern {
            position: absolute;
            inset: 0;
            background-size: 24px 24px;
            background-image: 
                linear-gradient(to right, rgba(42, 39, 37, 0.6) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(42, 39, 37, 0.6) 1px, transparent 1px);
            -webkit-mask-image: radial-gradient(ellipse at 80% 50%, black 10%, transparent 70%);
            mask-image: radial-gradient(ellipse at 80% 50%, black 10%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        /* Scanner line for Github block */
        .scan-line {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #27C93F, transparent);
            box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
            animation: scan-down 3s ease-in-out infinite;
            z-index: 10;
            opacity: 0.7;
        }
        @keyframes scan-down {
            0% { top: 0; opacity: 0; }
            10% { opacity: 0.7; }
            90% { opacity: 0.7; }
            100% { top: 100%; opacity: 0; }
        }
        
        .pulse-status {
            animation: pulse-op 2s infinite;
        }
        @keyframes pulse-op {
            50% { opacity: 0.4; }
        }

        /* Terminal blinking cursor */
        .term-cursor {
            display: inline-block;
            width: 5px;
            height: 10px;
            background-color: #F7BD71;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
            margin-left: 2px;
        }


  .os-tab {
            transition: all 0.3s ease;
        }
        .os-tab.active {
            background-color: #F7BD71;
            color: #1F1D1B;
            box-shadow: 0 2px 10px rgba(247, 189, 113, 0.2);
        }
        .os-tab:not(.active) {
            color: rgba(245, 240, 235, 0.6);
        }
        .os-tab:not(.active):hover {
            color: #F5F0EB;
            background-color: #2A2725;
        }
        
        .step-card {
            background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .step-card:hover {
            border-color: rgba(247, 189, 113, 0.3);
            transform: translateY(-2px);
        }
        
        /* Large background step numbers */
        .step-bg-num {
            position: absolute;
            top: -10px;
            right: -5px;
            font-size: 80px;
            line-height: 1;
            font-weight: 700;
            color: rgba(245, 240, 235, 0.03);
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }
   @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



  .changelog-window {
        background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
        border: 1px solid #2A2725;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(247, 189, 113, 0.03);
    }
    .traffic-light { width: 12px; height: 12px; border-radius: 50%; }

    .version-item {
        transition: all 0.2s ease;
        position: relative;
        cursor: pointer;
    }
    .version-item:hover:not(.active) { background-color: rgba(42, 39, 37, 0.5); }
    .version-item.active {
        background: linear-gradient(90deg, rgba(247, 189, 113, 0.08) 0%, rgba(247, 189, 113, 0.02) 100%);
        border-color: rgba(247, 189, 113, 0.2);
    }
    .version-item.active::before {
        content: '';
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        width: 3px; height: 60%;
        background: #F7BD71;
        border-radius: 0 2px 2px 0;
        box-shadow: 0 0 8px rgba(247, 189, 113, 0.5);
    }
    .version-item.active .version-num { color: #F5F0EB; }

    .version-tab-mobile { transition: all 0.2s ease; }
    .version-tab-mobile.active {
        border-color: rgba(247, 189, 113, 0.4) !important;
        background: rgba(247, 189, 113, 0.08) !important;
    }
    .version-tab-mobile.active .mobile-dot { background: #F7BD71 !important; }

    .change-item {
        position: relative;
        padding-left: 28px;
    }
    .change-item::before {
        content: '';
        position: absolute;
        left: 10px; top: 24px; bottom: -12px;
        width: 1px;
        background: linear-gradient(to bottom, #2A2725 0%, transparent 100%);
    }
    .change-item:last-child::before { display: none; }
    .change-item-dot {
        position: absolute;
        left: 6px; top: 8px;
        width: 9px; height: 9px;
        border-radius: 50%;
        border: 2px solid #1D1A17;
        z-index: 1;
    }

    .code-block {
        background: #0D0D0C;
        border: 1px solid #2A2725;
        font-family: 'JetBrains Mono', 'Fira Code', monospace;
        font-size: 11px;
        line-height: 1.7;
    }
    .code-plus { color: #27C93F; }
    .code-minus { color: #FF5F56; }
    .code-comment { color: rgba(245, 240, 235, 0.35); }
    .code-key { color: #F7BD71; }
    .code-str { color: #60A5FA; }

    .version-nav-mobile { scrollbar-width: none; -ms-overflow-style: none; }
    .version-nav-mobile::-webkit-scrollbar { display: none; }

    @keyframes contentFade {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .content-fade { animation: contentFade 0.35s ease-out; }

    .changelog-scroll::-webkit-scrollbar { width: 6px; }
    .changelog-scroll::-webkit-scrollbar-track { background: transparent; }
    .changelog-scroll::-webkit-scrollbar-thumb { background: #2A2725; border-radius: 3px; }
    .changelog-scroll::-webkit-scrollbar-thumb:hover { background: #3A3735; }


  .script-card {
        background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
        border: 1px solid #2A2725;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform 0.3s ease;
    }
    .script-card:hover {
        border-color: rgba(247, 189, 113, 0.25);
    }
    .script-card:hover .script-glow { opacity: 1; }
    .script-glow {
        position: absolute;
        top: -30px; right: -30px;
        width: 110px; height: 110px;
        background: radial-gradient(circle, rgba(247, 189, 113, 0.12) 0%, transparent 70%);
        opacity: 0.3;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    .script-pattern {
        position: absolute;
        inset: 0;
        background-size: 18px 18px;
        background-image: 
            linear-gradient(to right, rgba(42, 39, 37, 0.35) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(42, 39, 37, 0.35) 1px, transparent 1px);
        -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
        mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
        opacity: 0.5;
        z-index: 0;
        pointer-events: none;
    }

    .game-icon {
        background: linear-gradient(145deg, #2A2725 0%, #1A1815 100%);
        border: 1px solid #2A2725;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    /* Feature list row */
    .feature-row {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 2px 0;
    }
    .feature-check {
        width: 14px;
        height: 14px;
        border-radius: 4px;
        background: rgba(39, 201, 63, 0.1);
        border: 1px solid rgba(39, 201, 63, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #27C93F;
        flex-shrink: 0;
    }
    .feature-label {
        font-size: 11px;
        color: rgba(245, 240, 235, 0.75);
        font-weight: 500;
    }

    /* Badge variants */
    .badge-live    { color: #27C93F; background: rgba(39, 201, 63, 0.1);  border-color: rgba(39, 201, 63, 0.25); }
    .badge-hot     { color: #FF7A56; background: rgba(255, 122, 86, 0.1); border-color: rgba(255, 122, 86, 0.25); }
    .badge-trend   { color: #F7BD71; background: rgba(247, 189, 113, 0.1); border-color: rgba(247, 189, 113, 0.25); }
    .badge-beta    { color: #FFBD2E; background: rgba(255, 189, 46, 0.1); border-color: rgba(255, 189, 46, 0.25); }
    .badge-top     { color: #60A5FA; background: rgba(96, 165, 250, 0.1); border-color: rgba(96, 165, 250, 0.25); }
    .badge-new     { color: #C084FC; background: rgba(192, 132, 252, 0.1); border-color: rgba(192, 132, 252, 0.25); }
    .badge-updated { color: #34D399; background: rgba(52, 211, 153, 0.1); border-color: rgba(52, 211, 153, 0.25); }

    .live-pulse { animation: live-blink 2s infinite; }
    @keyframes live-blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
    }

    /* CTA card */
    .cta-card {
        background: 
            radial-gradient(ellipse at 80% 20%, rgba(247, 189, 113, 0.12) 0%, transparent 55%),
            linear-gradient(180deg, #26221E 0%, #1A1815 100%);
        border: 1px solid rgba(247, 189, 113, 0.25);
        position: relative;
        overflow: hidden;
    }
    .cta-card .script-pattern { opacity: 0.4; }
    .cta-number {
        background: linear-gradient(180deg, #FFE0B8 0%, #F7BD71 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

   /* Reuse step-card style from install guide */
    .use-step-card {
        background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
        border: 1px solid #2A2725;
        transition: transform 0.3s ease, border-color 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .use-step-card:hover {
        border-color: rgba(247, 189, 113, 0.3);
        transform: translateY(-2px);
    }
    .use-step-card:hover .use-step-glow { opacity: 1; }
    .use-step-glow {
        position: absolute;
        top: -30px; right: -30px;
        width: 110px; height: 110px;
        background: radial-gradient(circle, rgba(247, 189, 113, 0.1) 0%, transparent 70%);
        opacity: 0.3;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 0;
    }

    /* Large background step number */
    .use-step-bg-num {
        position: absolute;
        top: -12px;
        right: -4px;
        font-size: 78px;
        line-height: 1;
        font-weight: 700;
        color: rgba(245, 240, 235, 0.03);
        pointer-events: none;
        user-select: none;
        z-index: 0;
        font-family: 'Outfit', sans-serif;
    }

    /* Icon inside card */
    .use-step-icon {
        background: linear-gradient(145deg, #2A2725 0%, #1A1815 100%);
        border: 1px solid #2A2725;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    /* Connector line between cards on desktop */
    @media (min-width: 1024px) {
        .use-step-card::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -14px;
            width: 14px;
            height: 1px;
            background: linear-gradient(90deg, rgba(247, 189, 113, 0.3), transparent);
            z-index: 5;
            transform: translateY(-50%);
        }
        .use-step-card:last-child::after {
            display: none;
        }
    }

 /* Category filter items */
    .trouble-cat {
        transition: all 0.2s ease;
        position: relative;
        cursor: pointer;
    }
    .trouble-cat:hover:not(.active) {
        background-color: rgba(42, 39, 37, 0.5);
    }
    .trouble-cat.active {
        background: linear-gradient(90deg, rgba(247, 189, 113, 0.08) 0%, rgba(247, 189, 113, 0.02) 100%);
        border-color: rgba(247, 189, 113, 0.25) !important;
    }
    .trouble-cat.active::before {
        content: '';
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        width: 3px; height: 55%;
        background: #F7BD71;
        border-radius: 0 2px 2px 0;
        box-shadow: 0 0 8px rgba(247, 189, 113, 0.5);
    }
    .trouble-cat.active .cat-icon {
        background: rgba(247, 189, 113, 0.1);
        border-color: rgba(247, 189, 113, 0.3);
        color: #F7BD71;
    }
    .trouble-cat.active .cat-label {
        color: #F5F0EB;
    }
    .trouble-cat.active .cat-count {
        background: rgba(247, 189, 113, 0.15);
        color: #F7BD71;
    }

    /* Accordion */
    .trouble-item {
        transition: border-color 0.3s ease;
    }
    .trouble-item.open {
        border-color: rgba(247, 189, 113, 0.3);
    }
    .trouble-item.open .trouble-question-num {
        background: rgba(247, 189, 113, 0.15);
        color: #F7BD71;
        border-color: rgba(247, 189, 113, 0.3);
    }
    .trouble-item.open .trouble-chevron {
        transform: rotate(180deg);
        color: #F7BD71;
    }

    .trouble-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
    }
    .trouble-chevron {
        transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Answer step numbering */
    .answer-step {
        position: relative;
        padding-left: 28px;
    }
    .answer-step-num {
        position: absolute;
        left: 0; top: 1px;
        width: 18px; height: 18px;
        border-radius: 4px;
        background: rgba(247, 189, 113, 0.1);
        border: 1px solid rgba(247, 189, 113, 0.25);
        color: #F7BD71;
        font-size: 10px;
        font-weight: 700;
        font-family: 'Outfit', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Severity badges */
    .sev-low    { color: #27C93F; background: rgba(39, 201, 63, 0.08);  border-color: rgba(39, 201, 63, 0.22); }
    .sev-med    { color: #F7BD71; background: rgba(247, 189, 113, 0.08); border-color: rgba(247, 189, 113, 0.22); }
    .sev-high   { color: #FF5F56; background: rgba(255, 95, 86, 0.08);  border-color: rgba(255, 95, 86, 0.22); }
    .sev-info   { color: #60A5FA; background: rgba(96, 165, 250, 0.08); border-color: rgba(96, 165, 250, 0.22); }

    /* Trouble code block */
    .trouble-code {
        background: #0D0D0C;
        border: 1px solid #2A2725;
        font-family: 'JetBrains Mono', 'Fira Code', monospace;
        font-size: 11px;
        line-height: 1.65;
        color: rgba(245, 240, 235, 0.7);
    }
    .trouble-code .cm-com { color: rgba(245, 240, 235, 0.35); }
    .trouble-code .cm-key { color: #F7BD71; }
    .trouble-code .cm-err { color: #FF7A6A; }
    .trouble-code .cm-ok  { color: #27C93F; }

    /* Status widget mini */
    .status-mini-pulse {
        animation: mini-pulse 2s infinite;
    }
    @keyframes mini-pulse {
        0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.5); }
        50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(39, 201, 63, 0); }
    }

  .faq-card {
        background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
        border: 1px solid #2A2725;
        transition: border-color 0.3s ease;
        overflow: hidden;
    }
    .faq-card:hover:not(.open) {
        border-color: rgba(247, 189, 113, 0.15);
    }
    .faq-card.open {
        border-color: rgba(247, 189, 113, 0.3);
    }

    .faq-icon-box {
        background: linear-gradient(145deg, #2A2725 0%, #1A1815 100%);
        border: 1px solid #2A2725;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        transition: all 0.3s ease;
    }
    .faq-card.open .faq-icon-box {
        background: linear-gradient(145deg, rgba(247, 189, 113, 0.15) 0%, rgba(247, 189, 113, 0.05) 100%);
        border-color: rgba(247, 189, 113, 0.3);
        color: #F7BD71;
    }

    .faq-plus {
        transition: transform 0.35s ease, color 0.3s ease;
    }
    .faq-card.open .faq-plus {
        transform: rotate(45deg);
        color: #F7BD71;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    /* Accent link inside answers */
    .faq-answer a, .faq-answer strong {
        color: #F7BD71;
    }
    .faq-answer strong { font-weight: 600; }

    /* Chip inside answer */
    .faq-chip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 2px 6px;
        border-radius: 4px;
        background: rgba(247, 189, 113, 0.08);
        border: 1px solid rgba(247, 189, 113, 0.2);
        color: #F7BD71;
        font-family: 'JetBrains Mono', 'Fira Code', monospace;
        font-size: 10px;
        font-weight: 600;
    }

 /* Security trust bar */
    .trust-bar {
        background: linear-gradient(90deg, rgba(247, 189, 113, 0.03) 0%, transparent 50%, rgba(39, 201, 63, 0.03) 100%);
        border-top: 1px solid #2A2725;
        border-bottom: 1px solid #2A2725;
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(245, 240, 235, 0.55);
        font-size: 11px;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
    }
    .trust-item svg {
        color: #27C93F;
    }

    /* Link styles */
    .footer-link {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(245, 240, 235, 0.55);
        font-size: 12.5px;
        font-weight: 500;
        transition: color 0.2s ease;
        padding: 3px 0;
    }
    .footer-link:hover {
        color: #F7BD71;
    }
    .footer-link svg {
        width: 11px;
        height: 11px;
        opacity: 0.4;
        transition: opacity 0.2s ease;
    }
    .footer-link:hover svg {
        opacity: 1;
    }
    .footer-col-title {
        font-size: 10px;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(245, 240, 235, 0.4);
        margin-bottom: 14px;
    }

    /* Social share icon */
    .social-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
        border: 1px solid #2A2725;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(245, 240, 235, 0.4);
        transition: all 0.2s ease;
    }
    .social-btn:hover {
        border-color: rgba(247, 189, 113, 0.35);
        color: #F7BD71;
        background: linear-gradient(180deg, #2A2622 0%, #1D1A17 100%);
        transform: translateY(-1px);
    }
    .social-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Trust seal card */
    .trust-seal {
        background: linear-gradient(180deg, #23211E 0%, #1D1A17 100%);
        border: 1px solid #2A2725;
    }

    .status-dot-live {
        animation: status-pulse 2s infinite;
    }
    @keyframes status-pulse {
        0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.5); }
        50% { opacity: 0.5; box-shadow: 0 0 0 3px rgba(39, 201, 63, 0); }
    }




