  /* Custom Fonts */
       

        .font-burbank {
            font-family: 'Burbank Big Condensed', 'Inter', sans-serif;
            text-transform: uppercase;
        }

        /* 3D Gradient Text Extrusion Effect - Top to Bottom */
        .text-3d-container {
            position: relative;
            display: inline-block;
            z-index: 10;
        }
        
        .text-3d-gradient-green {
            background: linear-gradient(to bottom, #4ADE00, #A8E000, #94c400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-3d-gradient-white {
            background: linear-gradient(to bottom, #FFFFFF, #B0B0B0, #808080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

       
        .text-3d-container::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            z-index: -1;
            -webkit-text-fill-color: #0A1B00; 
            text-shadow: 
                1px 1px 0px #132E00, 
                2px 2px 0px #132E00, 
                3px 3px 0px #132E00, 
                4px 4px 0px #132E00;
        }

    
        .btn-3d {
            transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            transform: translate(0, 0);
        }
        .btn-3d-primary {
            box-shadow: 4px 4px 0px #1C5300, 4px 8px 15px rgba(74, 222, 0, 0.15);
        }
        .btn-3d-primary:hover, .btn-3d-primary:active {
            transform: translate(4px, 4px);
            box-shadow: 0px 0px 0px #1C5300, 0px 0px 0px rgba(74, 222, 0, 0);
        }

        .btn-3d-secondary {
            box-shadow: 4px 4px 0px #333333;
        }
        .btn-3d-secondary:hover, .btn-3d-secondary:active {
            transform: translate(4px, 4px);
            box-shadow: 0px 0px 0px #333333;
        }

        /* Hero Image 3D Perspective and Fade */
        .perspective-container {
            perspective: 1200px;
        }
        .product-image-3d {
            transform: rotateX(12deg) rotateY(0deg) scale(0.95);
            transform-style: preserve-3d;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: rotateX(12deg) translateY(0px) scale(0.95); }
            50% { transform: rotateX(14deg) translateY(-15px) scale(0.95); }
            100% { transform: rotateX(12deg) translateY(0px) scale(0.95); }
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Accordion transition */
        .accordion-content {
            transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }
        .accordion-item.open .accordion-content {
            opacity: 1;
        }
        
        /* Utility */
        .glass-header {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }


   .bc-bar {
            position: fixed;
            top: 56px;
            left: 0; right: 0;
            z-index: 49;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid #0E0E0E;
            height: 28px;
        }
        .bc-inner {
            max-width: 72rem;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .bc-list {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0; padding: 0;
        }
        .bc-item { display: flex; align-items: center; gap: 0; }
        .bc-link {
            font-size: 10px;
            color: #444;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.15s;
            display: flex;
            align-items: center;
            gap: 3px;
        }
        .bc-link:hover { color: #4ADE00; }
        .bc-link.active { color: #666; pointer-events: none; }
        .bc-sep {
            font-size: 9px;
            color: #2A2A2A;
            margin: 0 6px;
        }
        .bc-ico { width: 10px; height: 10px; flex-shrink: 0; }

        .bc-social {
            display: flex;
            gap: 4px;
        }
        .bc-social-btn {
            width: 20px; height: 20px;
            border-radius: 4px;
            background: #0A0A0A;
            border: 1px solid #1A1A1A;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.15s;
        }
        .bc-social-btn:hover { border-color: #4ADE00; }
        .bc-social-btn svg { width: 10px; height: 10px; fill: #444; transition: fill 0.15s; }
        .bc-social-btn:hover svg { fill: #4ADE00; }

        @media (max-width: 767px) {
            .bc-social { display: none; }
        }


  .status-wrapper {
        position: relative;
        background: #000000;
        overflow: hidden;
    }


 
    .glass-card {
        background: linear-gradient(to bottom, rgba(20, 20, 20, 0.98) 0%, rgba(2, 2, 2, 1) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        z-index: 10;
        min-height: 115px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 14px 16px;
    }
    .glass-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 8px 8px;
        pointer-events: none;
    }
    .glass-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(74, 222, 0, 0.3), transparent);
        opacity: 0.5;
    }

    .value-flash {
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }
    .value-flash.updated {
        color: #D4FF00 !important;
        text-shadow: 0 0 10px rgba(212, 255, 0, 0.5);
    }


    .mini-bar {
        width: 4px;
        border-radius: 2px;
        background: #4ADE00;
        transform-origin: bottom;
        animation: miniEq 1.2s ease-in-out infinite alternate;
        box-shadow: 0 0 5px rgba(74, 222, 0, 0.4);
    }
    .mini-bar:nth-child(1) { animation-delay: 0.1s; }
    .mini-bar:nth-child(2) { animation-delay: 0.4s; }
    .mini-bar:nth-child(3) { animation-delay: 0.2s; }
    .mini-bar:nth-child(4) { animation-delay: 0.5s; }
    .mini-bar:nth-child(5) { animation-delay: 0.3s; }
    .mini-bar:nth-child(6) { animation-delay: 0.6s; }
    .mini-bar:nth-child(7) { animation-delay: 0.1s; }
    .mini-bar:nth-child(8) { animation-delay: 0.4s; }
    .mini-bar:nth-child(9) { animation-delay: 0.2s; }
    .mini-bar:nth-child(10) { animation-delay: 0.5s; }
    .mini-bar:nth-child(11) { animation-delay: 0.1s; }
    .mini-bar:nth-child(12) { animation-delay: 0.4s; }
    @keyframes miniEq {
        0% { transform: scaleY(0.3); opacity: 0.5; }
        100% { transform: scaleY(1); opacity: 1; }
    }

    .smooth-wave-container {
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 200%;
        height: 50px;
        pointer-events: none;
        animation: slideWave 6s linear infinite;
    }
    @keyframes slideWave {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .wave-path {
        fill: none;
        stroke: #A8E000;
        stroke-width: 1.5;
        filter: drop-shadow(0 0 4px rgba(168, 224, 0, 0.6));
    }
    .wave-fill {
        fill: url(#wave-grad);
    }

    .radar-container {
        position: relative;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(74, 222, 0, 0.2);
        background: rgba(0,0,0,0.5);
        box-shadow: 0 0 10px rgba(74, 222, 0, 0.1) inset;
    }
    .radar-sweep {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: conic-gradient(from 0deg, transparent 70%, rgba(74, 222, 0, 0.6) 100%);
        animation: sweep 2s linear infinite;
    }
    .radar-dot {
        position: absolute;
        top: 25%; left: 60%;
        width: 3px; height: 3px;
        background: #D4FF00;
        border-radius: 50%;
        box-shadow: 0 0 4px #D4FF00;
        animation: fadeDot 2s linear infinite;
    }
    @keyframes sweep {
        to { transform: rotate(360deg); }
    }
    @keyframes fadeDot {
        0%, 80%, 100% { opacity: 0.2; }
        90% { opacity: 1; }
    }

    .core-ring-outer {
        position: absolute;
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
    .ring-dashed {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1.5px dashed rgba(74, 222, 0, 0.4);
        animation: spinDashed 8s linear infinite;
    }
    .ring-solid {
        position: absolute;
        inset: 4px;
        border-radius: 50%;
        border: 1.5px solid rgba(168, 224, 0, 0.8);
        border-top-color: transparent;
        border-bottom-color: transparent;
        animation: spinSolid 3s ease-in-out infinite alternate;
        filter: drop-shadow(0 0 3px rgba(168, 224, 0, 0.5));
    }
    .ring-center {
        position: absolute;
        inset: 15px;
        border-radius: 50%;
        background: #D4FF00;
        box-shadow: 0 0 10px #D4FF00;
        animation: pulseCore 2s ease-in-out infinite alternate;
    }
    @keyframes spinDashed {
        to { transform: rotate(360deg); }
    }
    @keyframes spinSolid {
        0% { transform: rotate(0deg) scale(0.9); }
        100% { transform: rotate(180deg) scale(1.1); }
    }
    @keyframes pulseCore {
        0% { transform: scale(0.8); opacity: 0.6; }
        100% { transform: scale(1.2); opacity: 1; }
    }
    
    .status-badge {
        background: rgba(74, 222, 0, 0.1);
        border: 1px solid rgba(74, 222, 0, 0.25);
        color: #4ADE00;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }


 .fc {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid #1A1A1A;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        padding: 16px;
        display: flex;
        flex-direction: column;
        transition: border-color 0.25s ease;
    }
    .fc:hover { border-color: rgba(74,222,0,0.2); }
    .fc::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(74,222,0,0.25), transparent);
        opacity: 0.5;
    }

    .fc-num {
        position: absolute;
        bottom: -14px;
        right: 12px;
        font-family: 'Burbank Big Condensed', sans-serif;
        font-size: 100px;
        line-height: 1;
        color: #0E0E0E;
        z-index: 0;
        pointer-events: none;
        user-select: none;
    }

    .fc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; position: relative; z-index: 1; gap: 8px; }
    .fc-title-row { display: flex; align-items: center; gap: 8px; }
    .fc-ico {
        width: 28px; height: 28px; border-radius: 6px;
        display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .fc-ico svg { width: 14px; height: 14px; }
    .fc-name {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 20px; color: #FFFFFF; letter-spacing: 0.03em;
    }

    .fb {
        padding: 2px 6px; border-radius: 3px;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
        flex-shrink: 0;
    }
    .fb-g { background: #0F2600; color: #4ADE00; border: 1px solid #1E4400; }
    .fb-y { background: #1A1A00; color: #D4FF00; border: 1px solid #333300; }
    .fb-n { background: #151515; color: #777; border: 1px solid #282828; }
    .fb-b { background: #001520; color: #00AAFF; border: 1px solid #002A44; }

    .fc-desc { position: relative; z-index: 1; font-size: 11px; color: #555; line-height: 1.55; margin-top: auto; }
    .fc-desc strong { color: #999; font-weight: 600; }

    /* Live downloads list */
    .live-item-v2 {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: #0C0C0C;
        border: 1px solid #181818;
        border-radius: 6px;
    }
    .live-item-v2-enter { opacity: 0; transform: translateY(-8px) scale(0.98); }
    .live-item-v2-exit { opacity: 0; transform: translateY(8px) scale(0.98); }

    .btn-dl-mini-v2 {
        width: 22px; height: 22px;
        background: #4ADE00; border-radius: 4px;
        display: flex; align-items: center; justify-content: center;
        color: #000;
        transition: background 0.15s ease;
    }
    .btn-dl-mini-v2:hover { background: #D4FF00; }

    /* Pulse ring animation for card 4 */
    .pulse-ring {
        position: absolute;
        right: 16px; bottom: 16px;
        width: 40px; height: 40px;
        z-index: 1;
    }
    .pulse-ring-outer {
        position: absolute; inset: 0;
        border: 1.5px solid rgba(74,222,0,0.15);
        border-radius: 50%;
        animation: pulseRingOut 3s ease-in-out infinite;
    }
    .pulse-ring-inner {
        position: absolute; inset: 12px;
        background: #4ADE00;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(74,222,0,0.4);
        animation: pulseRingIn 3s ease-in-out infinite;
    }
    @keyframes pulseRingOut { 0%,100% { transform: scale(0.9); opacity: 0.4; } 50% { transform: scale(1.15); opacity: 0.8; } }
    @keyframes pulseRingIn { 0%,100% { transform: scale(0.85); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }

    /* Scan line animation for card 5 */
    .scan-bar {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 40px;
        background: linear-gradient(to top, rgba(74,222,0,0.04), transparent);
        z-index: 0;
        pointer-events: none;
    }
    .scan-line {
        position: absolute;
        left: 0; right: 0;
        height: 1px;
        background: rgba(74,222,0,0.2);
        animation: scanMove 4s ease-in-out infinite;
        z-index: 0;
    }
    @keyframes scanMove { 0%,100% { bottom: 0; opacity: 0; } 50% { bottom: 38px; opacity: 1; } }



    .hide-scrollbar::-webkit-scrollbar { display: none; }
    .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

    /* ── OS Tab Switcher ── */
    .os-switcher {
        display: inline-flex;
        background: #0A0A0A;
        border: 1px solid #1E1E1E;
        border-radius: 10px;
        padding: 4px;
        gap: 2px;
    }
    .os-tab {
        padding: 9px 18px;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
        border: 1px solid transparent;
        color: #666666;
        background: transparent;
    }
    .os-tab:hover {
        color: #CCCCCC;
        background: #111111;
    }
    .os-tab.active {
        background: linear-gradient(to bottom, #FFFFFF, #B0B0B0);
        border-color: #444444;
        color: #000000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    .os-tab.active svg {
        color: #000000;
    }

    /* ── Step Cards ── */
    .step-card-v2 {
        background: linear-gradient(to bottom, rgba(20, 20, 20, 0.98) 0%, rgba(2, 2, 2, 1) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 18px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        transition: border-color 0.3s ease;
    }
    .step-card-v2::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(74, 222, 0, 0.3), transparent);
        opacity: 0.5;
    }
    .step-card-v2::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 8px 8px;
        pointer-events: none;
    }
    .step-card-v2:hover {
        border-color: rgba(74, 222, 0, 0.25);
    }

    .step-num {
        background: #112A00;
        color: #4ADE00;
        border: 1px solid #245200;
        width: 26px;
        height: 26px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Burbank Big Condensed', 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 14px;
        flex-shrink: 0;
    }

    /* ── Step Connector Arrow ── */
    .step-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 32px;
    }
    .step-connector-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #245200;
        border: 1px solid #4ADE00;
        box-shadow: 0 0 6px rgba(74, 222, 0, 0.3);
    }
    /* Vertical on mobile */
    @media (max-width: 1023px) {
        .step-connector {
            width: auto;
            height: 24px;
        }
    }

    /* ── Download Strip ── */
    .dl-strip-v2 {
        background: linear-gradient(to bottom, rgba(20, 20, 20, 0.98) 0%, rgba(2, 2, 2, 1) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    .dl-strip-v2::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(74, 222, 0, 0.3), transparent);
        opacity: 0.5;
    }
    @media (min-width: 768px) {
        .dl-strip-v2 {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }
    }

    /* ── Content fade ── */
    .os-content {
        display: none;
        animation: fadeInOS 0.4s ease forwards;
    }
    .os-content.active {
        display: block;
    }
    @keyframes fadeInOS {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }



  /* ── Mac Browser Frame ── */
    .mac-frame {
        background: #0A0A0A;
        border: 1px solid #1E1E1E;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.03);
    }
    .mac-titlebar {
        background: linear-gradient(to bottom, #161616, #0E0E0E);
        border-bottom: 1px solid #1E1E1E;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mac-dots { display: flex; gap: 7px; }
    .mac-dot { width: 11px; height: 11px; border-radius: 50%; }
    .mac-dot-red { background: #FF5F57; box-shadow: 0 0 4px rgba(255,95,87,0.3); }
    .mac-dot-yellow { background: #FFBD2E; box-shadow: 0 0 4px rgba(255,189,46,0.3); }
    .mac-dot-green { background: #28C840; box-shadow: 0 0 4px rgba(40,200,64,0.3); }
    .mac-url {
        background: #000000;
        border: 1px solid #222222;
        border-radius: 6px;
        padding: 5px 14px;
        font-size: 11px;
        color: #555555;
        font-family: 'Inter', monospace;
    }
    .mac-url span { color: #888888; }
    .mac-live-dot {
        display: flex; align-items: center; gap: 6px;
        font-size: 10px; font-weight: 700; color: #4ADE00;
        letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* ── Mac Body ── */
    .mac-body {
        background: linear-gradient(to top, #000000 0%, #050505 100%);
        display: flex;
        min-height: 420px;
    }

    /* ── Version Sidebar ── */
    .ver-sidebar {
        width: 220px; flex-shrink: 0;
        border-right: 1px solid #141414;
        padding: 16px 0;
    }
    .ver-sidebar-head {
        padding: 0 16px 12px;
        display: flex; align-items: center; justify-content: space-between;
        border-bottom: 1px solid #111111;
        margin-bottom: 4px;
    }
    .ver-item {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 16px; cursor: pointer;
        transition: background 0.15s ease;
        border-left: 2px solid transparent;
    }
    .ver-item:hover { background: rgba(255,255,255,0.02); }
    .ver-item.active { background: rgba(74,222,0,0.05); border-left-color: #4ADE00; }
    .ver-item-left { display: flex; flex-direction: column; gap: 2px; }
    .ver-num { font-family: 'Burbank Big Condensed','Inter',sans-serif; font-size: 16px; color: #FFFFFF; }
    .ver-item.active .ver-num { color: #4ADE00; }
    .ver-date { font-size: 10px; color: #444444; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

    .ver-badge { padding: 2px 7px; border-radius: 4px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
    .ver-badge-new { background: #112A00; color: #4ADE00; border: 1px solid #245200; }
    .ver-badge-patch { background: #1A1A00; color: #D4FF00; border: 1px solid #3D3D00; }
    .ver-badge-feature { background: #001A2A; color: #00AAFF; border: 1px solid #003355; }
    .ver-badge-stable { background: #1A1A1A; color: #888888; border: 1px solid #333333; }

    /* ── Main Content ── */
    .cl-main { flex: 1; padding: 24px 28px; overflow-y: auto; }
    .cl-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
    .cl-version-title { font-family: 'Burbank Big Condensed','Inter',sans-serif; font-size: 36px; color: #FFFFFF; line-height: 1; }
    .cl-release-type { font-family: 'Burbank Big Condensed','Inter',sans-serif; font-size: 14px; color: #555555; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
    .cl-date-pill { background: #0A0A0A; border: 1px solid #1E1E1E; border-radius: 6px; padding: 6px 12px; font-size: 11px; color: #666666; font-weight: 600; white-space: nowrap; }

    .cl-stats { display: flex; gap: 1px; background: #141414; border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
    .cl-stat { flex: 1; background: #0A0A0A; padding: 14px 16px; text-align: center; }
    .cl-stat-num { font-family: 'Burbank Big Condensed','Inter',sans-serif; font-size: 26px; color: #FFFFFF; line-height: 1; }
    .cl-stat-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
    .cl-stat-added .cl-stat-label { color: #4ADE00; }
    .cl-stat-fixed .cl-stat-label { color: #D4FF00; }
    .cl-stat-improved .cl-stat-label { color: #00AAFF; }
    .cl-stat-removed .cl-stat-label { color: #FF5F57; }

    .cl-entries { display: flex; flex-direction: column; gap: 10px; }
    .cl-entry { background: #060606; border: 1px solid #141414; border-radius: 8px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px; transition: border-color 0.2s ease; }
    .cl-entry:hover { border-color: #222222; }
    .cl-entry-badge { padding: 3px 8px; border-radius: 4px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; margin-top: 1px; }
    .badge-added { background: #112A00; color: #4ADE00; border: 1px solid #245200; }
    .badge-fixed { background: #1A1A00; color: #D4FF00; border: 1px solid #3D3D00; }
    .badge-improved { background: #001A2A; color: #00AAFF; border: 1px solid #003355; }
    .badge-removed { background: #1A0000; color: #FF5F57; border: 1px solid #440000; }
    .cl-entry-text { font-size: 13px; color: #999999; line-height: 1.6; }
    .cl-entry-text strong { color: #FFFFFF; font-weight: 600; }

    .cl-version-content { display: none; }
    .cl-version-content.active { display: block; }

    .ver-mobile-select {
        display: none; width: 100%;
        background: #0A0A0A; border: 1px solid #1E1E1E; border-radius: 8px;
        padding: 10px 14px; color: #FFFFFF;
        font-family: 'Burbank Big Condensed','Inter',sans-serif; font-size: 15px;
        margin-bottom: 16px; appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 12px center;
    }
    @media (max-width: 767px) {
        .ver-sidebar { display: none; }
        .ver-mobile-select { display: block; }
        .mac-body { flex-direction: column; }
        .cl-main { padding: 16px; }
        .cl-stats { flex-wrap: wrap; }
        .cl-stat { min-width: 45%; }
    }



  .scripts-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    @media (max-width: 1023px) { .scripts-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 639px) { .scripts-grid { grid-template-columns: 1fr; } }

    .sc {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid #1A1A1A;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        transition: border-color 0.25s ease;
    }
    .sc:hover { border-color: #2A2A2A; }
    .sc-body { padding: 14px 14px 10px; flex: 1; display: flex; flex-direction: column; }
    .sc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
    .sc-ico {
        width: 34px; height: 34px; border-radius: 7px;
        display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .sc-ico svg { width: 17px; height: 17px; }
    .sc-name {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 19px; color: #FFFFFF; letter-spacing: 0.03em; line-height: 0.8rem; margin-top: 5px;
    }
    .sc-cat {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 10px; color: #444; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1px;
    }
    .sc-badges { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 10px; }
    .sb {
        padding: 2px 6px; border-radius: 3px;
      
        font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
    }
    .sb-g { background: #0F2600; color: #4ADE00; border: 1px solid #1E4400; }
    .sb-y { background: #1A1A00; color: #D4FF00; border: 1px solid #333300; }
    .sb-b { background: #001520; color: #00AAFF; border: 1px solid #002A44; }
    .sb-r { background: #180000; color: #FF5F57; border: 1px solid #3A0000; }
    .sb-n { background: #151515; color: #777; border: 1px solid #282828; }
    .sc-feats { display: flex; flex-direction: column; gap: 5px; flex: 1; }
    .sc-f { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: #555; line-height: 1.3; }
    .sc-fd { width: 3px; height: 3px; border-radius: 50%; flex-shrink: 0; background: #4ADE00; box-shadow: 0 0 3px rgba(74,222,0,0.3); }
    .sc-foot {
        border-top: 1px solid #111; padding: 8px 14px;
        display: flex; align-items: center; justify-content: space-between;
    }
    .sc-status {
        display: flex; align-items: center; gap: 4px;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 11px; text-transform: uppercase;
    }
    .sc-dot { width: 4px; height: 4px; border-radius: 50%;  margin-top: -3px !important; }
    .sc-status-ok .sc-dot { background: #4ADE00; box-shadow: 0 0 4px rgba(74,222,0,0.5); }
    .sc-status-ok { color: #4ADE00; }
    .sc-time { font-size: 9px; color: #333; font-weight: 600; }

    /* Hub CTA — compact, same height as game cards */
    .sc-hub {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid rgba(74,222,0,0.12);
        border-radius: 10px;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        text-align: center;
        padding: 14px;
        transition: border-color 0.25s ease;
        cursor: pointer;
    }
    .sc-hub:hover { border-color: rgba(74,222,0,0.3); }
    .hub-n {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 42px; line-height: 1;
        background: linear-gradient(to bottom, #4ADE00, #A8E000);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hub-l {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 13px; color: #FFF; letter-spacing: 0.06em; margin: 2px 0 6px;
    }
    .hub-d { font-size: 10px; color: #444; line-height: 1.4; max-width: 160px; margin-bottom: 10px; }



 .ts-layout {
        display: flex;
        gap: 12px;
        align-items: stretch;
    }
    @media (max-width: 767px) {
        .ts-layout { flex-direction: column; }
    }

    /* ── Left Sidebar ── */
    .ts-sidebar {
        width: 240px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    @media (max-width: 767px) { .ts-sidebar { width: 100%; } }

    .ts-cats {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid #1A1A1A;
        border-radius: 10px;
        overflow: hidden;
        flex: 1;
    }
    .ts-cats-head {
        padding: 12px 14px;
        border-bottom: 1px solid #111;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .ts-cat {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        cursor: pointer;
        transition: background 0.15s ease;
        border-left: 2px solid transparent;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #555;
    }
    .ts-cat:hover { background: rgba(255,255,255,0.02); color: #999; }
    .ts-cat.active {
        background: rgba(74,222,0,0.04);
        border-left-color: #4ADE00;
        color: #FFFFFF;
    }
    .ts-cat svg { width: 14px; height: 14px; flex-shrink: 0; }
    .ts-cat.active svg { color: #4ADE00; }
    .ts-cat-count {
        margin-left: auto;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 11px;
        color: #333;
        min-width: 18px;
        text-align: right;
    }
    .ts-cat.active .ts-cat-count { color: #4ADE00; }

    /* ── Status Card ── */
    .ts-status-card {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid #1A1A1A;
        border-radius: 10px;
        padding: 14px;
    }
    .ts-status-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 0;
    }
    .ts-status-row + .ts-status-row { border-top: 1px solid #0E0E0E; }
    .ts-status-label { font-size: 11px; color: #555; font-weight: 600; }
    .ts-status-val {
        display: flex; align-items: center; gap: 4px;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
    }
    .ts-status-dot { width: 5px; height: 5px; border-radius: 50%; }
    .ts-ok .ts-status-dot { background: #4ADE00; box-shadow: 0 0 5px rgba(74,222,0,0.5); }
    .ts-ok { color: #4ADE00; }
    .ts-warn .ts-status-dot { background: #D4FF00; box-shadow: 0 0 5px rgba(212,255,0,0.4); }
    .ts-warn { color: #D4FF00; }

    /* ── Right Accordion Panel ── */
    .ts-main {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
    }

    .ts-item {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid #1A1A1A;
        border-radius: 8px;
        overflow: hidden;
        transition: border-color 0.2s ease;
    }
    .ts-item:hover { border-color: #222; }
    .ts-item.open { border-color: rgba(74,222,0,0.15); }

    .ts-q {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        cursor: pointer;
        transition: background 0.15s ease;
        user-select: none;
    }
    .ts-q:hover { background: rgba(255,255,255,0.01); }

    .ts-q-ico {
        width: 28px; height: 28px; border-radius: 6px;
        display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ts-q-ico svg { width: 14px; height: 14px; }

    .ts-q-text {
        flex: 1;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 15px;
        color: #FFFFFF;
        letter-spacing: 0.02em;
    }

    .ts-q-badge {
        padding: 2px 6px; border-radius: 3px;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
        flex-shrink: 0;
    }
    .tsb-install { background: #001520; color: #00AAFF; border: 1px solid #002A44; }
    .tsb-inject { background: #0F2600; color: #4ADE00; border: 1px solid #1E4400; }
    .tsb-crash { background: #180000; color: #FF5F57; border: 1px solid #3A0000; }
    .tsb-compat { background: #1A1A00; color: #D4FF00; border: 1px solid #333300; }
    .tsb-update { background: #150020; color: #AA66FF; border: 1px solid #2A0044; }
    .tsb-detect { background: #1A0E00; color: #FF8800; border: 1px solid #3A2000; }

    .ts-q-arrow {
        width: 20px; height: 20px; flex-shrink: 0;
        color: #333;
        transition: transform 0.25s ease, color 0.25s ease;
    }
    .ts-item.open .ts-q-arrow { transform: rotate(180deg); color: #4ADE00; }

    .ts-a {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    .ts-item.open .ts-a { opacity: 1; }

    .ts-a-inner {
        padding: 14px 14px 14px 52px;
        font-size: 12px;
        color: #666;
        line-height: 1.65;
    }
    .ts-a-inner strong { color: #CCC; font-weight: 600; }
    .ts-a-inner code {
        background: #111;
        border: 1px solid #222;
        padding: 1px 5px;
        border-radius: 3px;
        font-size: 11px;
        color: #4ADE00;
        font-family: 'Inter', monospace;
    }
    .ts-a-steps {
        margin-top: 8px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .ts-a-step {
        display: flex;
        align-items: flex-start;
        gap: 6px;
    }
    .ts-a-step-num {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 11px;
        color: #4ADE00;
        flex-shrink: 0;
        min-width: 16px;
    }



   .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    @media (max-width: 767px) { .faq-grid { grid-template-columns: 1fr; } }

    .faq-item {
        background: linear-gradient(to bottom, #101010 0%, #050505 100%);
        border: 1px solid #1A1A1A;
        border-radius: 8px;
        overflow: hidden;
        transition: border-color 0.2s ease;
    }
    .faq-item:hover { border-color: #222; }
    .faq-item.open { border-color: rgba(74,222,0,0.15); }

    .faq-q {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 14px;
        cursor: pointer;
        transition: background 0.15s ease;
        user-select: none;
    }
    .faq-q:hover { background: rgba(255,255,255,0.01); }

    .faq-q-ico {
        width: 28px; height: 28px; border-radius: 6px;
        display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        background: #0F2600; border: 1px solid #1E4400;
    }
    .faq-q-ico svg { width: 13px; height: 13px; color: #4ADE00; }

    .faq-q-text {
        flex: 1;
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 15px;
        color: #FFFFFF;
        letter-spacing: 0.02em;
	margin-top: 5px !important;
    }

    .faq-q-arrow {
        width: 18px; height: 18px; flex-shrink: 0;
        color: #333;
        transition: transform 0.25s ease, color 0.25s ease;
    }
    .faq-item.open .faq-q-arrow { transform: rotate(180deg); color: #4ADE00; }

    .faq-a {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    .faq-item.open .faq-a { opacity: 1; }

    .faq-a-inner {
        padding: 14px 14px 14px 52px;
        font-size: 12px;
	
        color: #666;
        line-height: 1.65;
    }
    .faq-a-inner strong { color: #CCC; font-weight: 600; }



 .footer-main {
        background: linear-gradient(to bottom, #080808 0%, #020202 100%);
        border-top: 1px solid #141414;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 32px;
    }
    @media (max-width: 767px) {
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    }
    @media (max-width: 479px) {
        .footer-grid { grid-template-columns: 1fr; }
    }
    .footer-col-title {
        font-family: 'Burbank Big Condensed','Inter',sans-serif;
        font-size: 13px;
        color: #555;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .footer-link {
        display: block;
        font-size: 12px;
        color: #444;
        font-weight: 500;
        padding: 3px 0;
        transition: color 0.15s ease;
    }
    .footer-link:hover { color: #4ADE00; }

    .footer-social {
        display: flex;
        gap: 6px;
        margin-top: 12px;
    }
    .footer-social-btn {
        width: 30px; height: 30px;
        border-radius: 6px;
        background: #111;
        border: 1px solid #1E1E1E;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s ease, background 0.2s ease;
    }
    .footer-social-btn:hover {
        border-color: #4ADE00;
        background: rgba(74,222,0,0.05);
    }
    .footer-social-btn svg {
        width: 14px; height: 14px;
        fill: #444;
        transition: fill 0.2s ease;
    }
    .footer-social-btn:hover svg { fill: #4ADE00; }

    .footer-divider {
        border: none;
        border-top: 1px solid #111;
        margin: 24px 0 16px;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .footer-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer-trust-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .footer-trust-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: #4ADE00;
        box-shadow: 0 0 4px rgba(74,222,0,0.4);
    }

