:root {
            --bg: #0b0f14;
            --panel: rgba(255, 255, 255, 0.06);
            --text: #e8edf2;
            --muted: #aab9c6;
            --brand: #7c3aed;
            --brand2: #06b6d4;
            --radius: 18px;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            background:
                radial-gradient(1200px 800px at 80% 10%, rgba(124, 58, 237, .25), transparent 60%),
                radial-gradient(1000px 700px at 10% 90%, rgba(6, 182, 212, .22), transparent 55%),
                var(--bg);
            color: var(--text);
            font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
            /* Big body height for scrolling */
            height: 600vh;
            overflow-x: hidden;
        }

a {
  color: #e8edf2;
}

        /* STARS ANIMATION STYLES */
        #star-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            /* Behind content */
            overflow: hidden;
            /* mix-blend-mode: overlay; REMOVED to make stars white */
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.8;
            animation: twinkle var(--duration, 3s) infinite ease-in-out;
            will-change: transform, opacity;
        }

        @keyframes twinkle {

            0%,
            100% {
                opacity: 0.3;
                transform: scale(0.8);
            }

            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        /* Demo Content Styling */
        .content {
            position: relative;
            z-index: 1;
            padding: 100px 20px;
            text-align: center;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 30%, var(--brand2) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }