        .bg-mesh {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.05), transparent 40%),
                        radial-gradient(circle at 80% 70%, rgba(157, 80, 187, 0.05), transparent 40%);
            z-index: -1;
        }

        .wp-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 90px 20px !important;
        }

        .sidebar-index {
            position: sticky;
            top: 40px;
            height: calc(100vh - 80px);
            overflow-y: auto;
            padding: 30px;
            background: var(--glass-bg);
            border: 1px solid var(--border-white);
            border-radius: 24px;
            backdrop-filter: blur(20px);
        }

        .index-link {
            display: block;
            color: #666;
            text-decoration: none;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            padding: 8px 0;
            transition: 0.3s;
            border-left: 2px solid transparent;
            padding-left: 15px;
            text-transform: uppercase;
        }

        .index-link:hover, .index-link.active {
            color: var(--neon-blue);
            border-left: 2px solid var(--neon-blue);
            background: linear-gradient(90deg, rgba(0, 210, 255, 0.1), transparent);
        }

        .content-card {
            background: var(--glass-bg);
            border: 1px solid var(--border-white);
            border-radius: 32px;
            padding: 60px;
            margin-bottom: 40px;
            backdrop-filter: blur(20px);
        }
        
        .content-card p {
            font-size: 1.05rem;
            color: #cbd5e1;
            text-wrap: pretty;
        }

        .hero-title, h2, h3 {
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 800;
            background: linear-gradient(to right, #fff, var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }

        .section-header {
            font-family: 'Orbitron', sans-serif;
            color: var(--neon-blue);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            display: block;
        }

        .manifesto-quote {
            border-left: 4px solid var(--neon-blue);
            padding: 20px 40px;
            font-style: italic;
            background: rgba(0, 210, 255, 0.02);
            border-radius: 0 15px 15px 0;
        }

        .mono { 
            font-family: 'JetBrains Mono', monospace; 
            letter-spacing: 0.03em;
            color: #22d3ee;
            font-weight: 500;
        }
        
        .highlight { color: var(--neon-blue); font-weight: 700; }
        .legal-note { font-size: 0.8rem; color: #777; line-height: 1.4; }

        .btn-coinbase {
            background: #2b52f3;
            color: white;
            border-radius: 100px;
            padding: 12px 30px;
            font-weight: 700;
            transition: 0.3s;
            border: none;
        }
        .btn-coinbase:hover { background: #1a3ab1; color: white; transform: translateY(-2px); }

        @media (max-width: 992px) {
            .sidebar-index { position: relative; height: auto; top: 0; margin-bottom: 30px; }
        }