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

        body {
            font-family: 'Comic Sans MS', 'Comic Neue', 'Chalkboard SE', 'Segoe UI', 'Arial', sans-serif;
            background: white;
            background-image:
                repeating-linear-gradient(90deg, transparent, transparent 50px, #00ffff 50px, #00ffff 51px),
                repeating-linear-gradient(0deg, transparent, transparent 50px, #ff00ff 50px, #ff00ff 51px);
            overflow-x: hidden;
        }

        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.03),
                rgba(0, 0, 0, 0.03) 1px,
                transparent 1px,
                transparent 2px
            );
            pointer-events: none;
            z-index: 999;
        }

        .background-words {
            position: fixed;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .background-word {
            position: absolute;
            font-family: 'Comic Sans MS', 'Comic Neue', 'Chalkboard SE', 'Segoe UI', 'Arial', sans-serif;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.08em;
            opacity: 0.08;
            mix-blend-mode: screen;
            white-space: nowrap;
            user-select: none;
            will-change: transform, opacity, text-shadow;
            text-shadow: 0 0 30px currentColor;
        }

        .style-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1200;
            background: #ffff00;
            border: 4px solid #000;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 6px 6px 0 #000;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .style-toggle:hover,
        .style-toggle:focus {
            transform: translate(-3px, -3px);
            box-shadow: 9px 9px 0 #000;
            outline: none;
        }

        .style-toggle:active {
            transform: translate(0, 0);
            box-shadow: 4px 4px 0 #000;
        }

        .style-toggle.rolling {
            animation: dice-roll 0.6s ease;
        }

        @keyframes dice-roll {
            0% {
                transform: rotate(0deg) scale(1);
            }
            30% {
                transform: rotate(120deg) scale(1.08);
            }
            60% {
                transform: rotate(240deg) scale(0.92);
            }
            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        .word-inspire {
            top: 6%;
            left: -6%;
            font-size: clamp(7rem, 18vw, 21rem);
            color: #ff00ff;
            transform: rotate(-18deg);
            animation: word-drift-1 14s ease-in-out infinite alternate, word-glow 3.8s linear infinite;
        }

        .word-create {
            bottom: 18%;
            right: -10%;
            font-size: clamp(6rem, 16vw, 18rem);
            color: #00ffff;
            transform: rotate(22deg);
            animation: word-drift-2 17s ease-in-out infinite alternate, word-glow 4.2s linear infinite reverse;
        }

        .word-anteater {
            top: 55%;
            left: 18%;
            font-size: clamp(5rem, 14vw, 17rem);
            color: #ffff00;
            opacity: 0.06;
            transform: rotate(-8deg);
            animation: word-drift-3 20s ease-in-out infinite alternate, word-glow 5s linear infinite;
        }

        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .logo-container {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
        }

        .logo-image {
            height: 80px;
            width: auto;
            filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5))
                    drop-shadow(0 0 40px rgba(255, 0, 255, 0.3));
            animation: logo-float 6s ease-in-out infinite;
        }

        @keyframes logo-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        h1 {
            font-size: 4.5rem;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: -3px;
            position: relative;
            display: inline-block;
            color: #000;
            text-shadow:
                3px 3px 0px #ffff00,
                6px 6px 0px #00ffff,
                9px 9px 0px #ff00ff,
                12px 12px 20px rgba(0,0,0,0.2);
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }

        h1:hover {
            transform: rotate(-1deg) scale(1.05);
        }

        .glitch {
            position: relative;
            display: inline-block;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
        }

        .glitch:hover::before {
            animation: glitch-1 0.3s infinite;
            color: #00ffff;
            z-index: -1;
            opacity: 0.8;
        }

        .glitch:hover::after {
            animation: glitch-2 0.3s infinite;
            color: #ff00ff;
            z-index: -2;
            opacity: 0.8;
        }

        @keyframes glitch-1 {
            0%, 100% {
                clip: rect(30px, 9999px, 10px, 0);
                transform: translate(-2px, -2px);
            }
            25% {
                clip: rect(70px, 9999px, 90px, 0);
                transform: translate(2px, 2px);
            }
            50% {
                clip: rect(50px, 9999px, 60px, 0);
                transform: translate(-2px, 2px);
            }
            75% {
                clip: rect(10px, 9999px, 85px, 0);
                transform: translate(2px, -2px);
            }
        }

        @keyframes glitch-2 {
            0%, 100% {
                clip: rect(65px, 9999px, 119px, 0);
                transform: translate(2px, -2px);
            }
            25% {
                clip: rect(15px, 9999px, 75px, 0);
                transform: translate(-2px, 2px);
            }
            50% {
                clip: rect(85px, 9999px, 145px, 0);
                transform: translate(2px, 2px);
            }
            75% {
                clip: rect(25px, 9999px, 115px, 0);
                transform: translate(-2px, -2px);
            }
        }

        .marquee-container {
            background: #ff00ff;
            padding: 10px 0;
            margin: 20px 0;
            border: 5px solid #000;
            position: relative;
            overflow: hidden;
        }

        .marquee {
            white-space: nowrap;
            animation: scroll 15s linear infinite;
            font-size: 1.2rem;
            color: #ffff00;
            text-transform: uppercase;
            font-weight: bold;
        }

        @keyframes scroll {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .flash-text {
            animation: flash 0.5s infinite;
            display: inline-block;
        }

        @keyframes flash {
            0%, 50%, 100% {
                opacity: 1;
            }
            25%, 75% {
                opacity: 0;
            }
        }

        .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
        }

        .card {
            background: #ffff00;
            border: 5px solid #000;
            padding: 30px;
            width: 300px;
            position: relative;
            transform: rotate(-2deg);
            transition: all 0.2s;
        }

        .card:nth-child(2) {
            background: #00ffff;
            transform: rotate(1deg);
        }

        .card:nth-child(3) {
            background: #ff00ff;
            transform: rotate(-1deg);
        }

        .card:hover {
            transform: rotate(0deg) scale(1.05);
            z-index: 10;
            box-shadow: 10px 10px 0px #000;
        }

        .card h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
        }

        .card p {
            font-size: 1.1rem;
            line-height: 1.4;
            font-weight: bold;
        }

        .rainbow-border {
            background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
            padding: 5px;
            animation: rainbow 3s linear infinite;
        }

        @keyframes rainbow {
            0% {
                filter: hue-rotate(0deg);
            }
            100% {
                filter: hue-rotate(360deg);
            }
        }

        .inspiration-zone {
            background: #00ff00;
            border: 10px solid #000;
            padding: 40px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .inspiration-zone::before {
            content: "INSPIRATION ZONE";
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffff00;
            padding: 5px 20px;
            border: 3px solid #000;
            font-weight: 900;
            font-size: 1.2rem;
        }

        #inspiration-display {
            background: white;
            border: 5px solid #000;
            padding: 30px;
            margin: 20px 0;
            min-height: 100px;
            position: relative;
        }

        #inspiration-text {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            color: #000;
            text-transform: uppercase;
            animation: bounce 1s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .big-button {
            background: linear-gradient(45deg, #ff00ff, #ffff00);
            border: 8px solid #000;
            color: #000;
            padding: 25px 60px;
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.1s;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 30px rgba(255, 0, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
            }
        }

        .big-button:hover {
            transform: translate(-5px, -5px);
            box-shadow: 5px 5px 0px #000;
        }

        .big-button:active {
            transform: translate(0, 0);
            box-shadow: none;
        }

        .connect-link {
            background: #ffff00;
            border: 3px solid #000;
            color: #000;
            padding: 8px 16px;
            font-weight: 900;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
            opacity: 1 !important;
            transform: rotate(-1deg);
            box-shadow: 4px 4px 0 #00ffff;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .connect-link:hover {
            transform: rotate(1deg) translateY(-2px);
            box-shadow: 6px 6px 0 #ff00ff;
            opacity: 1 !important;
            background: #00ffff;
        }

        .connect-link:active {
            transform: rotate(0deg) translate(1px, 1px);
            box-shadow: 2px 2px 0 #ff00ff;
        }

        .spinning-star {
            display: inline-block;
            animation: spin 2s linear infinite;
            font-size: 2rem;
            margin: 0 10px;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .api-section {
            background: white;
            border: 5px dashed #000;
            padding: 30px;
            margin-top: 60px;
        }

        .api-section h3 {
            font-size: 2.5rem;
            color: #ff00ff;
            text-shadow: 2px 2px 0px #00ffff;
            margin-bottom: 20px;
        }

        .code-block {
            background: #000;
            color: #00ff00;
            padding: 20px;
            font-family: 'Courier New', monospace;
            font-size: 1.3rem;
            border: 3px solid #00ff00;
            overflow-x: auto;
        }

        .blink {
            animation: blink 1s step-start infinite;
        }

        @keyframes blink {
            0%, 50% {
                opacity: 1;
            }
            50.01%, 100% {
                opacity: 0;
            }
        }

        .counter {
            background: #000;
            color: #00ff00;
            padding: 10px 20px;
            display: inline-block;
            font-family: 'Courier New', monospace;
            font-size: 1.2rem;
            border: 3px solid #00ff00;
            margin: 20px;
        }

        @keyframes word-drift-1 {
            0% {
                transform: rotate(-18deg) translate3d(0, 0, 0) scale(1);
            }
            25% {
                transform: rotate(-16deg) translate3d(2%, 3%, 0) scale(1.01);
            }
            50% {
                transform: rotate(-13deg) translate3d(6%, 8%, 0) scale(1.03);
            }
            75% {
                transform: rotate(-15deg) translate3d(3%, 4%, 0) scale(1.015);
            }
            100% {
                transform: rotate(-18deg) translate3d(0, 0, 0) scale(1);
            }
        }

        @keyframes word-drift-2 {
            0% {
                transform: rotate(22deg) translate3d(0, 0, 0) scale(1);
            }
            25% {
                transform: rotate(24deg) translate3d(-2%, -3%, 0) scale(1.01);
            }
            50% {
                transform: rotate(27deg) translate3d(-6%, -9%, 0) scale(1.04);
            }
            75% {
                transform: rotate(23deg) translate3d(-3%, -4%, 0) scale(1.015);
            }
            100% {
                transform: rotate(22deg) translate3d(0, 0, 0) scale(1);
            }
        }

        @keyframes word-drift-3 {
            0% {
                transform: rotate(-8deg) translate3d(0, 0, 0) scale(1);
            }
            25% {
                transform: rotate(-6deg) translate3d(2%, -2%, 0) scale(1.008);
            }
            50% {
                transform: rotate(-3deg) translate3d(5%, -6%, 0) scale(1.02);
            }
            75% {
                transform: rotate(-6deg) translate3d(1%, -3%, 0) scale(1.01);
            }
            100% {
                transform: rotate(-8deg) translate3d(0, 0, 0) scale(1);
            }
        }

        @keyframes word-glow {
            0% {
                opacity: 0.06;
                text-shadow: 0 0 25px currentColor, 0 0 0 rgba(0, 0, 0, 0);
            }
            40% {
                opacity: 0.12;
                text-shadow: 0 0 55px currentColor, -12px 12px 0 rgba(0, 0, 0, 0.25);
            }
            50% {
                opacity: 0.15;
                text-shadow: 0 0 70px currentColor, 14px -14px 0 rgba(0, 0, 0, 0.2);
            }
            90% {
                opacity: 0.1;
                text-shadow: 0 0 45px currentColor, -6px 6px 0 rgba(0, 0, 0, 0.15);
            }
            100% {
                opacity: 0.06;
                text-shadow: 0 0 25px currentColor, 0 0 0 rgba(0, 0, 0, 0);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 3rem;
            }

            .card {
                width: 100%;
            }

            .big-button {
                font-size: 1.5rem;
                padding: 20px 40px;
            }
        }
        p {
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        ul,
        ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .retro-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .retro-nav a {
            background: #ffff00;
            border: 4px solid #000;
            padding: 10px 24px;
            text-transform: uppercase;
            font-weight: 900;
            color: #000;
            text-decoration: none;
            box-shadow: 5px 5px 0 #000;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .retro-nav a:hover,
        .retro-nav a:focus {
            transform: translate(-3px, -3px);
            box-shadow: 8px 8px 0 #000;
        }

        .retro-nav a.active {
            background: #ff00ff;
        }

        .hero-tagline {
            font-size: 1.4rem;
            font-weight: 900;
            background: #ffff00;
            border: 5px solid #000;
            padding: 18px 24px;
            display: inline-block;
            box-shadow: 8px 8px 0 #000;
            text-transform: uppercase;
            letter-spacing: -1px;
            max-width: 920px;
        }

        .hero-subheadline {
            background: white;
            border: 4px solid #000;
            padding: 15px 20px;
            display: inline-block;
            margin-top: 20px;
            box-shadow: 6px 6px 0 #00ffff;
            font-size: 1.1rem;
            max-width: 820px;
        }

        .hero-cta {
            margin-top: 30px;
            display: flex;
            justify-content: center;
        }

        .big-button {
            text-decoration: none;
        }

        .content-stack {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 40px 0;
        }

        .neon-panel {
            background: white;
            border: 6px solid #000;
            padding: 35px;
            position: relative;
            box-shadow: 12px 12px 0 #00ffff;
        }

        .neon-panel h2 {
            font-size: 1.8rem;
            text-transform: uppercase;
            margin-bottom: 20px;
            background: #ffff00;
            color: #000;
            display: inline-block;
            padding: 5px 15px;
            transform: rotate(-1deg);
            box-shadow: 4px 4px 0 #ff00ff;
            font-weight: 900;
            letter-spacing: 1px;
        }

        .neon-panel em {
            font-style: italic;
        }

        .retro-list {
            list-style: square;
        }

        .retro-list li {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .closing-note {
            margin: 60px auto 40px;
            max-width: 720px;
            background: #00ffff;
            border: 5px solid #000;
            padding: 25px 30px;
            box-shadow: 10px 10px 0 #ff00ff;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .inspiration-zone .hero-cta {
            margin-top: 10px;
        }

        .code-block pre {
            margin: 0;
            white-space: pre-wrap;
        }

        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 1.1rem;
                padding: 14px 18px;
            }

            .hero-subheadline {
                font-size: 1rem;
            }

            .neon-panel {
                padding: 25px;
            }
        }
        .card p {
            margin-bottom: 0;
        }
        ol.retro-ordered {
            list-style: decimal-leading-zero;
        }

        ol.retro-ordered li {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .help-link {
            display: inline-block;
            margin-top: 10px;
            font-weight: 700;
            color: #000;
            background: #ffff00;
            border: 3px solid #000;
            padding: 8px 14px;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: 4px 4px 0 #000;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .help-link:hover,
        .help-link:focus {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000;
        }

        .path-callout {
            margin-top: 15px;
            background: #ffff00;
            border: 4px solid #000;
            padding: 15px 20px;
            box-shadow: 6px 6px 0 #ff00ff;
        }

        .path-callout p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
