 @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600;700&family=Inter:wght@400;500;600;800&display=swap');

        body {
            background-color: #000000;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* Status Section Animations */
        @keyframes scanline-vertical {
            0% { top: -10%; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { top: 110%; opacity: 0; }
        }
        .animate-scan-vertical {
            animation: scanline-vertical 3s linear infinite;
        }
        
        @keyframes pulse-ring {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
            70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }
        .animate-pulse-ring {
            animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }

        @keyframes fill-bar {
            0% { width: 0%; }
            100% { width: 99.8%; }
        }
        .animate-fill-bar {
            animation: fill-bar 1.5s ease-out forwards;
        }

        @keyframes eq-bounce {
            0%, 100% { height: 4px; }
            50% { height: 16px; }
        }
        .animate-eq-1 { animation: eq-bounce 1.2s infinite ease-in-out; }
        .animate-eq-2 { animation: eq-bounce 0.8s infinite ease-in-out alternate-reverse; }
        .animate-eq-3 { animation: eq-bounce 1s infinite ease-in-out 0.3s; }
        .animate-eq-4 { animation: eq-bounce 1.5s infinite ease-in-out 0.1s; }
        .animate-eq-5 { animation: eq-bounce 0.9s infinite ease-in-out 0.5s; }

      /* Deployment Steps Animations & Styling */
            .step-line {
                position: absolute;
                left: 23px; /* Centers the line under the 48px circle (24px minus 1px line width) */
                top: 48px;
                bottom: -24px;
                width: 1px;
                background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.02) 100%);
                z-index: 0;
            }
        /* Changelog Section Custom Styles */
        
        /* Custom Terminal Scrollbar */
        .changelog-scroll::-webkit-scrollbar {
            width: 4px; /* Тонкий скроллбар */
        }
        .changelog-scroll::-webkit-scrollbar-track {
            background: #000000;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
        }
        .changelog-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            /* Без скруглений (rounded-none) для терминального стиля */
        }
        .changelog-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        /* Timeline Line Configuration */
        .timeline-line {
            position: absolute;
            left: 3.5px; /* Выровнено строго по центру квадратных маркеров */
            top: 12px;
            bottom: -15px;
            width: 1px;
            /* Пунктирная линия в стиле консоли */
            background-image: linear-gradient(to bottom, rgba(255,255,255,0.15) 50%, transparent 50%);
            background-size: 1px 6px;
            z-index: 0;
        }
        /* Убираем хвост линии у последнего элемента */
        .changelog-item:last-child .timeline-line {
            display: none;
        }
        
        /* Mac Window Glare (Эффект отражения) */
        .mac-window-glare {
            background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%, transparent 100%);
            pointer-events: none;
        }


            /* Hide line on the last step */
            .step-item:last-child .step-line {
                display: none;
            }
            
            .fade-in-up {
                animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
                opacity: 0;
            }
            
            @keyframes fadeInUp {
                from { opacity: 0; transform: translateY(15px); }
                to { opacity: 1; transform: translateY(0); }
            }

            /* Tab Active States */
            .platform-tab-active {
                background-color: #ffffff;
                color: #000000 !important;
            }
            .os-tab-active {
                border-bottom-color: #ffffff !important;
                color: #ffffff !important;
            }
        /* Matrix Canvas Background */
        #matrix-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            opacity: 0.15;
        }

        .content-wrapper {
            position: relative;
            z-index: 10;
        }

  /* Supported Scripts Section Effects */
        .script-card {
            background-color: #050505;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: center center;
            transition: all 0.4s ease;
        }

        .script-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .script-card:hover {
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px -10px rgba(255,255,255,0.05);
        }

        .script-card:hover::after {
            opacity: 1;
        }

        /* Glitch effect on hover for card icons */
        @keyframes icon-glitch {
            0% { transform: translate(0) }
            20% { transform: translate(-2px, 2px) }
            40% { transform: translate(-2px, -2px) }
            60% { transform: translate(2px, 2px) }
            80% { transform: translate(2px, -2px) }
            100% { transform: translate(0) }
        }
        .script-card:hover .icon-glitch {
            animation: icon-glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
            color: #ffffff;
        }

        /* Final card animated background */
        .final-card-bg {
            background: linear-gradient(45deg, #000000, #111111, #000000);
            background-size: 200% 200%;
            animation: gradientMove 4s ease infinite;
        }
        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Glitch Text Effect (Applied only to main title) */
        .glitch-text {
            position: relative;
            display: inline-block;
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
        }

        /* Floating Animation for Product Box */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }


        .glitch-text::before {
            left: 2px;
            text-shadow: -1px 0 rgba(255, 255, 255, 0.7);
            clip: rect(24px, 550px, 90px, 0);
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }

        .glitch-text::after {
            left: -2px;
            text-shadow: -1px 0 rgba(150, 150, 150, 0.7);
            clip: rect(85px, 550px, 140px, 0);
            animation: glitch-anim 2.5s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim {
            0% { clip: rect(15px, 9999px, 44px, 0); }
            20% { clip: rect(65px, 9999px, 86px, 0); }
            40% { clip: rect(3px, 9999px, 110px, 0); }
            60% { clip: rect(89px, 9999px, 13px, 0); }
            80% { clip: rect(52px, 9999px, 74px, 0); }
            100% { clip: rect(10px, 9999px, 98px, 0); }
        }

        @keyframes glitch-anim-2 {
            0% { clip: rect(25px, 9999px, 94px, 0); }
            20% { clip: rect(75px, 9999px, 16px, 0); }
            40% { clip: rect(13px, 9999px, 80px, 0); }
            60% { clip: rect(99px, 9999px, 33px, 0); }
            80% { clip: rect(42px, 9999px, 54px, 0); }
            100% { clip: rect(30px, 9999px, 68px, 0); }
        }

        /* IDE Window Enhancements */
        .ide-window {
            background: linear-gradient(145deg, #0A0A0A 0%, #030303 100%);
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.8);
        }

        .blinking-cursor::after {
            content: '|';
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Sharp minimalistic components */
        .sharp-card {
            background-color: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(5px);
            border: 1px solid #1a1a1a;
            transition: all 0.3s ease;
        }

        .sharp-card:hover {
            border-color: #444;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #222; }
        ::-webkit-scrollbar-thumb:hover { background: #444; }


        /* FAQ Accordion Styling */
        .faq-item {
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            background-color: rgba(255, 255, 255, 0.02);
            border-left-color: #ffffff;
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 10px 10px;
        }
        /* Rotates the SVG icon when accordion is open */
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: #ffffff;
        }
        .faq-item.active {
            border-left-color: #ffffff;
            background-color: rgba(255, 255, 255, 0.02);
        }

