   /* Base Styles */
        body {
            background-color: #13111D;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        /* Hero Specific Background Pattern */
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
            background-size: 24px 24px;
            /* Fades in from the top, solid in the middle, fades out at the bottom */
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 70%, transparent 100%);
            z-index: -1;
            pointer-events: none;
        }

      
        /* Glitch Effect for H1 */
        .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%;
            opacity: 0.8;
            pointer-events: none;
        }
        
        .glitch-text::before {
            left: 2px;
            text-shadow: -2px 0 rgba(168, 85, 247, 0.6);
            clip-path: inset(20% 0 80% 0);
            animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
        }
        
        .glitch-text::after {
            left: -2px;
            text-shadow: -2px 0 rgba(255, 255, 255, 0.6);
            clip-path: inset(80% 0 5% 0);
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-anim-1 {
            0% { clip-path: inset(20% 0 80% 0); transform: translate(0); }
            20% { clip-path: inset(60% 0 10% 0); transform: translate(-2px, 1px); }
            40% { clip-path: inset(40% 0 50% 0); transform: translate(2px, -1px); }
            60% { clip-path: inset(80% 0 5% 0); transform: translate(-1px, 2px); }
            80% { clip-path: inset(10% 0 70% 0); transform: translate(1px, -2px); }
            100% { clip-path: inset(30% 0 50% 0); transform: translate(0); }
        }
        
        @keyframes glitch-anim-2 {
            0% { clip-path: inset(10% 0 60% 0); transform: translate(0); }
            20% { clip-path: inset(30% 0 20% 0); transform: translate(2px, -1px); }
            40% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 1px); }
            60% { clip-path: inset(20% 0 50% 0); transform: translate(1px, -2px); }
            80% { clip-path: inset(50% 0 30% 0); transform: translate(-1px, 2px); }
            100% { clip-path: inset(5% 0 80% 0); transform: translate(0); }
        }

        /* Component Classes */
        .glass-panel {
            background: linear-gradient(to right, #11101C, #181324);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .action-btn {
            background: linear-gradient(to right, #322B57, #252040);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .action-btn:hover {
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* FAQ Accordion */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin 0.4s ease-out;
            opacity: 0;
        }
        .faq-item.active .faq-content {
            max-height: 200px;
            opacity: 1;
            margin-top: 1rem;
        }
        .faq-icon {
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Pulse Animation */
        @keyframes pulse-dot {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
        .status-dot {
            animation: pulse-dot 2s infinite;
        }



.card-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 16px 16px;
    z-index: 0;
    pointer-events: none;
}

@keyframes bar-pulse {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}
.animate-bar-1 { animation: bar-pulse 1.2s ease-in-out infinite; }
.animate-bar-2 { animation: bar-pulse 1.5s ease-in-out infinite 0.2s; }
.animate-bar-3 { animation: bar-pulse 1.1s ease-in-out infinite 0.4s; }
.animate-bar-4 { animation: bar-pulse 1.4s ease-in-out infinite 0.1s; }
.animate-bar-5 { animation: bar-pulse 1.3s ease-in-out infinite 0.5s; }
.animate-bar-6 { animation: bar-pulse 1.6s ease-in-out infinite 0.3s; }

@keyframes progress-load {
    0% { width: 0%; opacity: 1; }
    80% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}
.animate-progress {
    animation: progress-load 3s ease-out infinite;
}

@keyframes wave-shift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-wave {
    animation: wave-shift 3s linear infinite;
    width: 200%;
}

/* Features Section Styles - GPU Optimized */
.large-grid-bg {
    position: absolute;
    inset: 0;
    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: 3.5rem 3.5rem;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom right, black 10%, transparent 90%);
    mask-image: linear-gradient(to bottom right, black 10%, transparent 90%);
}

.huge-number {
    position: absolute;
    bottom: -10px;
    right: 2px;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    pointer-events: none;
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: -0.05em;
    will-change: transform, color;
}

.glass-panel {
    will-change: transform;
}

.glass-panel:hover .huge-number {
    color: rgba(168, 85, 247, 0.05);
    transform: translate3d(0, -4px, 0) scale(1.02);
}

/* Optimized Micro-animations */
@keyframes term-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.animate-blink { animation: term-blink 1s step-end infinite; }

@keyframes scan-line-optimized {
    0% { transform: translate3d(0, -5px, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate3d(0, 25px, 0); opacity: 0; }
}
.animate-scan-opt { 
    animation: scan-line-optimized 2s linear infinite; 
    will-change: transform, opacity; 
}

@keyframes float-x-opt {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-6px, 0, 0); }
}
.animate-float-x-opt { 
    animation: float-x-opt 3s ease-in-out infinite; 
    will-change: transform; 
}

@keyframes spin-slow-opt {
    100% { transform: rotate(360deg); }
}
.animate-spin-slow-opt { 
    animation: spin-slow-opt 8s linear infinite; 
    will-change: transform; 
}
/* Changelog specific styles */
@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.changelog-content.active {
    display: block;
    animation: fade-in-up 0.4s ease-out forwards;
}
.changelog-content {
    display: none;
}
/* Custom scrollbar for changelog */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.2);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.4);
}
/* Modern FAQ Accordion Styles */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-content > div {
    overflow: hidden;
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    color: rgba(168, 85, 247, 1); /* purple-500 */
}

.faq-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(4px);
}

.faq-item.active {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.03);
    transform: translateX(4px);
    box-shadow: -4px 0 0 0 rgba(168, 85, 247, 0.5);
}

/* Modern FAQ Accordion Styles */
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-content > div {
    overflow: hidden;
}

.faq-item.active .faq-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    color: rgba(168, 85, 247, 1);
}

.faq-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(4px);
}

.faq-item.active {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.03);
    transform: translateX(4px);
    box-shadow: -4px 0 0 0 rgba(168, 85, 247, 0.5);
}
