  :root {
            --toxic: #39FF14;
        }
        
        body {
            background-color: #050505;
            color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Alien Tech Utilities */
        .text-glow {
            text-shadow: 0 0 8px rgba(57, 255, 20, 0.6), 0 0 20px rgba(57, 255, 20, 0.2);
        }
        
        .box-glow {
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.15), inset 0 0 10px rgba(57, 255, 20, 0.05);
        }
        
        .box-glow:hover {
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.4), inset 0 0 15px rgba(57, 255, 20, 0.1);
        }

        .clip-angled {
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }

        .clip-angled-reverse {
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        }

        .border-toxic-thin {
            border: 1px solid rgba(57, 255, 20, 0.3);
        }
        
        .border-toxic-thin:hover {
            border-color: rgba(57, 255, 20, 0.8);
        }

        /* Glitch Effect */
        .glitch-wrapper {
            position: relative;
        }
        .glitch {
            position: relative;
            color: var(--toxic);
            animation: glitch-skew 2s infinite linear alternate-reverse;
        }
        .glitch::before, .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .glitch::before {
            left: 2px;
            text-shadow: -1px 0 red;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }
        .glitch::after {
            left: -2px;
            text-shadow: -1px 0 blue;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim2 5s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim {
            0% { clip: rect(13px, 9999px, 83px, 0); transform: skew(0.5deg); }
            5% { clip: rect(65px, 9999px, 99px, 0); transform: skew(0.3deg); }
            10% { clip: rect(5px, 9999px, 23px, 0); transform: skew(0.8deg); }
            15% { clip: rect(81px, 9999px, 15px, 0); transform: skew(0.1deg); }
            20% { clip: rect(42px, 9999px, 56px, 0); transform: skew(0.5deg); }
            100% { clip: rect(13px, 9999px, 83px, 0); transform: skew(0deg); }
        }

        /* Scanlines for Terminal */
        .scanlines {
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
            background-size: 100% 4px;
            pointer-events: none;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #050505; }
        ::-webkit-scrollbar-thumb { background: rgba(57, 255, 20, 0.3); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--toxic); }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-item.active .faq-content {
            max-height: 300px;
        }
        .faq-item.active .chevron {
            transform: rotate(180deg);
            color: var(--toxic);
        }
        
        /* Pulse Animation */
        .pulse-toxic {
            animation: pulse-glow 2s infinite;
        }
        @keyframes pulse-glow {
            0% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
            50% { box-shadow: 0 0 25px rgba(57, 255, 20, 0.8); }
            100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
        }

        /* Terminal Floating Animation */
        .float-anim {
            animation: floating 4s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0px); }
        }


 .chart-line-path {
        stroke-dasharray: 300;
        stroke-dashoffset: 300;
        animation: drawLine 4s ease-in-out infinite alternate;
    }
    @keyframes drawLine { 0% { stroke-dashoffset: 300; } 100% { stroke-dashoffset: 0; } }


.feature-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateZ(0);
        border-radius: 0;     }
    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px -10px rgba(57, 255, 20, 0.2);
        border-color: rgba(57, 255, 20, 0.6);
    }
    .feature-bg-fx {
        background-image: radial-gradient(rgba(57, 255, 20, 0.1) 1px, transparent 1px);
        background-size: 12px 12px;
        transition: opacity 0.4s ease;
    }
    .feature-card:hover .feature-bg-fx {
        opacity: 0.3;
    }
    .feature-card:hover .icon-box {
        background-color: #39FF14;
        color: #000;
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    }
    .feature-card:hover .feature-num {
        color: rgba(57, 255, 20, 0.1);
        transform: scale(1.1) rotate(-5deg);
    }
    .feature-num {
        transition: all 0.4s ease;
        line-height: 0.8; 
    }

    .icon-box {
        border-radius: 0;
    }
  
      .feature-card:hover .scan-line {
        animation: scanline 1.5s ease-in-out infinite;
        opacity: 1;
    }
    @keyframes scanline {
        0% { transform: translateY(-10px); }
        100% { transform: translateY(300px); }
    }

 /* Tabs Navigation */
    .dl-tab-btn {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .dl-tab-btn.active {
        background-color: rgba(57, 255, 20, 0.15);
        border-color: #39FF14;
        color: #fff;
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    }
    .dl-tab-btn.active::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #39FF14;
        box-shadow: 0 0 10px #39FF14;
    }
    
    /* Content Panels */
    .dl-content {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .dl-content.active {
        display: grid;
        opacity: 1;
        transform: translateY(0);
        animation: fadeIn 0.4s ease-out forwards;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* List Animations */
    .step-list li {
        opacity: 0;
        transform: translateX(-10px);
    }
    .dl-content.active .step-list li {
        animation: slideInRight 0.4s ease forwards;
    }
    .dl-content.active .step-list li:nth-child(1) { animation-delay: 0.1s; }
    .dl-content.active .step-list li:nth-child(2) { animation-delay: 0.2s; }
    .dl-content.active .step-list li:nth-child(3) { animation-delay: 0.3s; }
    .dl-content.active .step-list li:nth-child(4) { animation-delay: 0.4s; }

    @keyframes slideInRight {
        to { opacity: 1; transform: translateX(0); }
    }

    /* Step Numbering */
    .step-num {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background-color: rgba(57, 255, 20, 0.1);
        border: 1px solid rgba(57, 255, 20, 0.4);
        color: #39FF14;
        font-family: 'Orbitron', sans-serif;
        font-size: 12px;
        font-weight: bold;
        flex-shrink: 0;
    }


  /* Card Hover Animations */
    .dl-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateZ(0);
        border-radius: 0; 
    }
    .dl-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px -10px rgba(57, 255, 20, 0.2);
        border-color: rgba(57, 255, 20, 0.6);
    }
    
    /* Background FX */
    .dl-bg-fx {
        background-image: radial-gradient(rgba(57, 255, 20, 0.1) 1px, transparent 1px);
        background-size: 12px 12px;
        transition: opacity 0.4s ease;
    }
    .dl-card:hover .dl-bg-fx {
        opacity: 0.3;
    }

    /* Icon Animation */
    .dl-icon-box {
        transition: all 0.4s ease;
        border-radius: 0;
    }
    .dl-card:hover .dl-icon-box {
        background-color: #39FF14;
        color: #000;
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    }

    /* Button Glow Effect */
    .dl-btn {
        position: relative;
        overflow: hidden;
    }
    .dl-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
        transform: rotate(45deg);
        transition: all 0.3s;
        opacity: 0;
    }
    .dl-btn:hover::after {
        animation: shimmer 1s infinite;
        opacity: 1;
    }
    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }


 /* Card Animations & Styling */
    .script-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateZ(0);
        position: relative;
        overflow: hidden;
    }
    .script-card:hover {
        transform: translateY(-5px);
        border-color: rgba(57, 255, 20, 0.8);
        box-shadow: 0 10px 20px -5px rgba(57, 255, 20, 0.15), inset 0 0 15px rgba(57, 255, 20, 0.05);
    }
    
    /* Dynamic Background for Cards */
    .script-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(57,255,20,0.05), transparent);
        transition: all 0.5s ease;
    }
    .script-card:hover::before {
        left: 100%;
    }

    /* Icon Box glow on hover */
    .script-card:hover .icon-wrapper {
        background-color: rgba(57, 255, 20, 0.15);
        color: #39FF14;
        box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
    }
    
    /* Plus 5k Card Special Styling */
    .plus-card {
        background: radial-gradient(circle at center, rgba(57,255,20,0.1) 0%, #0a0a0a 70%);
        border: 1px dashed rgba(57, 255, 20, 0.4);
    }
    .plus-card:hover {
        background: radial-gradient(circle at center, rgba(57,255,20,0.2) 0%, #0a0a0a 70%);
        border: 1px solid #39FF14;
        box-shadow: 0 0 25px rgba(57,255,20,0.2);
    }


   /* ================= MAC WINDOW STYLES (FULL WIDTH) ================= */
    .mac-window-full {
        border-radius: 12px;
        background: #000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(57, 255, 20, 0.1);
        overflow: hidden;
        position: relative;
        width: 100%; 
    }
    
    .mac-header-full {
        background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 20px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .mac-buttons-full {
        display: flex;
        gap: 8px;
    }

    .mac-btn-full {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }
    .mac-btn-full.close { background-color: #ff5f56; }
    .mac-btn-full.min { background-color: #ffbd2e; }
    .mac-btn-full.max { background-color: #27c93f; }

    .mac-title-full {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #a1a1aa;
        font-size: 13px;
        font-weight: 500;
    }

    .changelog-content-full {
        padding: 30px;
        max-height: 600px;
        overflow-y: auto;
        background-color: #0d0d0d;
        text-align: left;
    }


    .changelog-content-full::-webkit-scrollbar {
        width: 8px;
    }
    .changelog-content-full::-webkit-scrollbar-track {
        background: #0a0a0a;
    }
    .changelog-content-full::-webkit-scrollbar-thumb {
        background: rgba(57, 255, 20, 0.3);
        border-radius: 4px;
    }

    .update-item-full {
        position: relative;
        padding-left: 30px;
        margin-bottom: 40px;
    }

    .update-item-full::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 8px;
        bottom: -48px; 
        width: 2px;
        background: rgba(57, 255, 20, 0.2);
    }
    .update-item-full:last-child::before {
        display: none;
    }

    .update-dot-full {
        position: absolute;
        left: -1px;
        top: 6px;
        width: 14px;
        height: 14px;
        background: #000;
        border: 2px solid #39FF14;
        border-radius: 50%;
        box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
        z-index: 2;
    }

    .tag-full {
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        flex-shrink: 0;
    }
    .tag-full.added { background: rgba(57, 255, 20, 0.1); color: #39FF14; border: 1px solid rgba(57, 255, 20, 0.3); }
    .tag-full.fixed { background: rgba(59, 130, 246, 0.1); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
    .tag-full.improved { background: rgba(168, 85, 247, 0.1); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

    /* ================= TROUBLESHOOTING CARDS (FULL WIDTH, LEFT ALIGN) ================= */
    .ts-card-full {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border-left: 3px solid transparent;
    }
    
    .ts-card-full:hover {
        transform: translateX(5px);
        background-color: rgba(255, 255, 255, 0.03);
        border-left-color: #39FF14;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .ts-icon-box-full {
        transition: all 0.3s ease;
    }
    .ts-card-full:hover .ts-icon-box-full {
        transform: scale(1.1);
    }


  /* ================= FAQ ACCORDION STYLES ================= */
    .faq-accordion-item {
        border-bottom: 1px solid rgba(57, 255, 20, 0.15);
        background: rgba(10, 10, 10, 0.6);
        transition: all 0.3s ease;
    }
    
    .faq-accordion-item:first-child {
        border-top: 1px solid rgba(57, 255, 20, 0.15);
    }

    .faq-accordion-item:hover {
        background: rgba(57, 255, 20, 0.02);
    }

    .faq-accordion-header {
        cursor: pointer;
        padding: 24px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-number {
        font-family: 'Orbitron', sans-serif;
        color: #39FF14;
        font-weight: 900;
        font-size: 1.25rem;
        opacity: 0.5;
        transition: opacity 0.3s ease;
        margin-right: 20px;
    }

    .faq-accordion-item.active .faq-number,
    .faq-accordion-header:hover .faq-number {
        opacity: 1;
    }

    .faq-accordion-title {
        flex-grow: 1;
        font-family: 'Orbitron', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #e4e4e7;
        transition: color 0.3s ease;
    }

    .faq-accordion-item.active .faq-accordion-title,
    .faq-accordion-header:hover .faq-accordion-title {
        color: #fff;
    }

    .faq-icon-wrapper {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(57, 255, 20, 0.3);
        background: rgba(57, 255, 20, 0.05);
        color: #39FF14;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .faq-accordion-item.active .faq-icon-wrapper {
        background: #39FF14;
        color: #000;
        transform: rotate(135deg);
        box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    }

    .faq-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        opacity: 0;
    }

    .faq-accordion-item.active .faq-accordion-content {
        max-height: 500px;
        transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out 0.1s;
        opacity: 1;
    }

    .faq-inner-text {
        padding: 0 20px 24px 60px; 

        font-family: 'Exo 2', sans-serif;
        color: #a1a1aa;
        font-size: 0.95rem;
        line-height: 1.6;
    }


  /* ================= FOOTER STYLES ================= */
    .footer-wrapper {
        background-color: #050505;
        border-top: 1px solid rgba(57, 255, 20, 0.2);
        position: relative;
        overflow: hidden;
    }

  
    .footer-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #39FF14, transparent);
        box-shadow: 0 0 20px 2px rgba(57, 255, 20, 0.4);
    }

    .footer-link {
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }
    
    .footer-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -2px;
        left: 0;
        background-color: #39FF14;
        transition: width 0.3s ease;
    }

    .footer-link:hover {
        color: #fff;
        transform: translateX(3px);
    }

    .footer-link:hover::after {
        width: 100%;
    }


    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #a1a1aa;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-btn:hover {
        background-color: rgba(57, 255, 20, 0.1);
        border-color: #39FF14;
        color: #39FF14;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
    }

    .share-tag {
        font-family: 'Share Tech Mono', monospace;
        font-size: 10px;
        color: #52525b;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
        display: block;
    }

