     /* Base & Resets */
        body {
            background-color: #090909;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* Hero Dot Grid Background */
        .hero-dot-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
            background-size: 32px 32px;
            /* Маска для плавного скрытия сверху и снизу */
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
            z-index: 0;
            pointer-events: none;
        }

        /* Typography & Glows */
        .h1-glow {
            text-shadow: 0 0 15px rgba(255, 144, 0, 0.5), 0 0 30px rgba(255, 144, 0, 0.2);
            animation: pulse-glow 3s infinite alternate ease-in-out;
        }

        @keyframes pulse-glow {
            0% {
                text-shadow: 0 0 15px rgba(255, 144, 0, 0.4), 0 0 25px rgba(255, 144, 0, 0.1);
                transform: scale(1);
            }
            100% {
                text-shadow: 0 0 20px rgba(255, 144, 0, 0.7), 0 0 40px rgba(255, 144, 0, 0.3);
                transform: scale(1.01);
            }
        }
        /* Glitch Effect for H1 */
        .glitch-wrapper {
            position: relative;
            display: inline-block;
        }
        .glitch-text {
            position: relative;
            color: #FF9000; /* Orange color */
            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;
            pointer-events: none;
        }
        .glitch-text::before {
            left: 2px;
            text-shadow: -1px 0 rgba(255, 255, 255, 0.8);
            animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
        }
        .glitch-text::after {
            left: -2px;
            text-shadow: 1px 0 rgba(255, 255, 255, 0.4);
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim-1 {
            0% { clip-path: inset(20% 0 80% 0); transform: translate(-2px, 1px); }
            20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
            40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); }
            60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
            80% { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 1px); }
            100% { clip-path: inset(30% 0 50% 0); transform: translate(1px, -1px); }
        }
        @keyframes glitch-anim-2 {
            0% { clip-path: inset(10% 0 60% 0); transform: translate(2px, 1px); }
            20% { clip-path: inset(30% 0 20% 0); transform: translate(-2px, -1px); }
            40% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
            60% { clip-path: inset(20% 0 50% 0); transform: translate(-2px, 2px); }
            80% { clip-path: inset(50% 0 30% 0); transform: translate(1px, 1px); }
            100% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, -1px); }
        }

        /* Floating Animation for Terminal */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        /* Component Styles */
        .panel-gradient {
            background: linear-gradient(135deg, #111111 0%, #222222 100%);
            border: 1px solid rgba(255, 144, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .btn-primary {
            background: #FF9000;
            color: #000000; /* Чёрный текст на ярком оранжевом фоне для контраста */
            box-shadow: 0 0 15px rgba(255, 144, 0, 0.3);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(255, 144, 0, 0.6);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid rgba(255, 144, 0, 0.5);
            color: #FF9000;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: rgba(255, 144, 0, 0.1);
            border-color: #FF9000;
            transform: translateY(-2px);
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* FAQ Accordion */
        .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s ease-out;
        }
        .faq-content.open {
            grid-template-rows: 1fr;
        }
        .faq-inner {
            overflow: hidden;
        }
        .faq-icon {
            transition: transform 0.3s ease;
        }
        .faq-btn[aria-expanded="true"] .faq-icon {
            transform: rotate(45deg);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #070707;
        }
        ::-webkit-scrollbar-thumb {
            background: #372916;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #FF9000;
        }

/* Custom Scrollbar for Code Editor */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}


  /* Telemetry Animations */
        @keyframes bar-1 { 0% { height: 30%; } 50% { height: 90%; } 100% { height: 40%; } }
        @keyframes bar-2 { 0% { height: 50%; } 50% { height: 30%; } 100% { height: 80%; } }
        @keyframes bar-3 { 0% { height: 80%; } 50% { height: 40%; } 100% { height: 60%; } }
        @keyframes bar-4 { 0% { height: 20%; } 50% { height: 70%; } 100% { height: 30%; } }
        @keyframes bar-5 { 0% { height: 60%; } 50% { height: 100%; } 100% { height: 50%; } }
        
        .anim-bar-1 { animation: bar-1 1.2s ease-in-out infinite alternate; }
        .anim-bar-2 { animation: bar-2 1.5s ease-in-out infinite alternate; }
        .anim-bar-3 { animation: bar-3 1.1s ease-in-out infinite alternate; }
        .anim-bar-4 { animation: bar-4 1.4s ease-in-out infinite alternate; }
        .anim-bar-5 { animation: bar-5 1.3s ease-in-out infinite alternate; }

        @keyframes dash-flow {
            to { stroke-dashoffset: -20; }
        }
        .anim-dash {
            stroke-dasharray: 4 4;
            animation: dash-flow 1s linear infinite;
        }

        @keyframes shimmer-x {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(200%); }
        }
        .anim-shimmer {
            animation: shimmer-x 2s infinite linear;
        }


        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .anim-scroll-up {
            animation: scroll-up 10s linear infinite;
        }

