        :root {
            --color-bg: #040010;
            --color-bg-darker: #020008;
            --color-bg-lighter: #0a0420;
            --color-blue: #08A9C9;
            --color-blue-dark: #007799;
            --color-purple: #8A2BE2;
            --color-purple-light: #ae5eff;
            --color-pink: #FF69B4;
            --color-white: #FFFFFF;
            --color-text: #E0E0E0;
            --color-text-dim: #a0a0b0;
            --color-terminal: #1a1a2e;
            --color-terminal-header: #2a2a4e;
            --color-glow-blue: rgba(0, 191, 255, 0.5);
            --color-glow-purple: rgba(138, 43, 226, 0.5);

            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-mono: 'Fira Code', 'Roboto Mono', monospace;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--color-bg);
            color: var(--color-text);
            font-family: var(--font-main);
            overflow-x: hidden;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        html::-webkit-scrollbar {
            display: none;
        }

        body {
            overflow-x: hidden;
            position: relative;
        }

        #star-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        #aurora-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            opacity: 0.5;
        }

        .background-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -4;
            background: radial-gradient(ellipse at bottom, var(--color-bg-lighter) 0%, var(--color-bg) 70%, var(--color-bg-darker) 100%);
        }

        .hero-section {
            height: 100vh;
            width: 100vw;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .animation-world {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            top: 50vh;
            left: 50vw;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
        }

        .particle-purple {
            background: radial-gradient(circle, var(--color-purple-light), var(--color-purple) 70%);
        }

        .particle-blue {
            background: radial-gradient(circle, var(--color-blue), var(--color-blue-dark) 70%);
        }

        .flash-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: black;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
        }

        .main-title {
            font-size: 5rem;
            font-weight: 500;
            color: var(--color-white);
            font-family: var(--font-main);
            z-index: 5;
            letter-spacing: -2px;
            position: relative;
        }

        .main-title span {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
        }

        .hero-title-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #hero-logo-canvas {
            opacity: 0;
            transform: translateY(20px);
            width: 100px;
            height: auto;
        }

        .tagline {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--color-text-dim);
            margin-top: 0.5rem;
            z-index: 5;
            opacity: 0;
            transform: translateY(20px);
        }

        .cta-buttons-container {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(20px);
            z-index: 5;
            position: relative;
        }

        .cta-button {
            display: inline-block;
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-white);
            background: linear-gradient(45deg, var(--color-blue), var(--color-purple));
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .discord-button {
            background: linear-gradient(45deg, #7289DA, #5B6FB3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .main-content {
            position: relative;
            z-index: 1;
            padding-top: 6rem;
            overflow: hidden;
        }

        .content-section {
            margin: 0 4rem 6rem 4rem;
            padding: 0 2rem;
        }

        .content-section h2 {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--color-white);
            background: linear-gradient(90deg, var(--color-blue), var(--color-purple-light));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .content-section > p {
            text-align: center;
            font-size: 1.1rem;
            color: var(--color-text-dim);
            max-width: 600px;
            margin: 0 auto 2.5rem auto;
        }

        .terminal-box {
            background: transparent;
            border: 1px solid var(--color-terminal-header);
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            margin: 0 auto;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            max-width: 760px;
        }

        .terminal-header {
            background: var(--color-terminal-header);
            padding: 0.75rem;
            display: flex;
            gap: 0.5rem;
        }

        .terminal-header span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .terminal-header span:nth-child(1) {
            background: #ff5f56;
        }

        .terminal-header span:nth-child(2) {
            background: #ffbd2e;
        }

        .terminal-header span:nth-child(3) {
            background: #27c93f;
        }

        .terminal-body {
            padding: 1.5rem;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-family: var(--font-mono);
            font-size: 1rem;
            background: none;
        }

        .prompt-dollar {
            color: var(--color-blue);
            font-weight: 700;
            margin-right: 0.5rem;
        }

        #install-command {
            color: var(--color-text);
            word-break: break-all;
        }
        
        p.node-note {
            margin-top: 1rem;
            font-size: small;
        }

        .node-note a {
            color: var(--color-blue);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .node-note a:hover {
            color: var(--color-purple-light);
        }

        .node-note {
            text-align: center;
            color: var(--color-text-dim);
            margin-top: 1rem;
        }

        .copy-button {
            background: var(--color-terminal-header);
            border: 1px solid var(--color-terminal-header);
            color: var(--color-text-dim);
            padding: 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            margin-left: auto;
            transition: all 0.2s ease;
            position: relative;
        }

        .copy-button svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .copy-button:hover {
            color: var(--color-white);
            border-color: var(--color-blue);
        }

        .copy-button .tooltip-text {
            visibility: hidden;
            width: 80px;
            background-color: var(--color-blue);
            color: var(--color-bg);
            text-align: center;
            border-radius: 4px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 125%;
            left: 50%;
            margin-left: -40px;
            opacity: 0;
            transition: opacity 0.3s;
            font-family: var(--font-main);
            font-size: 0.8rem;
        }

        .copy-button .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--color-blue) transparent transparent transparent;
        }

        .copy-button.copied .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        .terminal-body .cursor {
            background: var(--color-blue);
            animation: blink 1s steps(1) infinite;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            perspective: 1000px;
        }

        .feature-card {
            background: linear-gradient(145deg, var(--color-terminal), var(--color-bg-lighter));
            border: 1px solid var(--color-terminal-header);
            border-radius: 12px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            flex: 1 1 calc(25% - 1.125rem);
            min-width: 280px;
            will-change: transform;
        }

        .feature-card > * {
            position: relative;
            z-index: 2;
        }

        .feature-card .icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            color: var(--color-blue);
            filter: drop-shadow(0 0 6px var(--color-glow-blue));
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            font-size: 1rem;
            color: var(--color-text-dim);
            line-height: 1.6;
        }

        .site-footer {
            position: relative;
            z-index: 1;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid var(--color-terminal-header);
            background: var(--color-bg-darker);
        }

        .footer-logo {
            width: 60px;
            height: auto;
            margin: 0 auto 1rem auto;
            opacity: 0.7;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-nav a {
            color: var(--color-text-dim);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-nav a:hover {
            color: var(--color-blue);
        }

        .site-footer p {
            font-size: 0.9rem;
            color: var(--color-text-dim);
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 0 1rem;
            }

            .main-title {
                font-size: 3.5rem;
                margin-top: 80px;
            }

            .tagline {
                font-size: 1.1rem;
            }

            .content-section {
                padding: 0 1rem;
                margin-bottom: 4rem;
            }

            .content-section h2 {
                font-size: 2rem;
            }

            .terminal-body {
                font-size: 0.8rem;
                padding: 1rem;
            }

            .feature-card {
                flex: 1 1 calc(50% - 0.75rem);
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1rem;
            }

            .terminal-body {
                flex-direction: column;
                align-items: flex-start;
            }

            .copy-button {
                margin-left: 0;
                margin-top: 1rem;
            }

            .feature-card {
                flex: 1 1 100%;
            }
        }
    
