• /* RESET STRIKINGLY SPACING */

    #section-custom-html {

    padding: 0 !important;

    margin: 0 !important;

    }

    /* FULL SCREEN CANVAS */

    .ms-container {

    width: 100vw;

    height: 100vh;

    overflow: hidden;

    background: #000;

    color: white;

    font-family: Arial, sans-serif;

    position: relative;

    }

    /* SCREENS */

    .screen {

    display: none;

    width: 100%;

    height: 100%;

    padding: 40px;

    box-sizing: border-box;

    text-align: center;

    }

    .active {

    display: block;

    }

    /* BUTTONS */

    button {

    background: #222;

    border: 1px solid #555;

    padding: 12px 20px;

    margin: 10px;

    color: white;

    cursor: pointer;

    border-radius: 6px;

    transition: 0.3s;

    }

    button:hover {

    background: #444;

    }

    /* SIGILS */

    .sigils button {

    font-size: 20px;

    padding: 20px 30px;

    border-radius: 50px;

    }

    .ascend { border-color: #ff00ff; }

    .descend { border-color: #ffffff; }

    .transcend { border-color: #00e0ff; }

    /* GATES */

    .gates {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

    }

    .gate {

    width: 160px;

    height: 160px;

    border: 2px solid #666;

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    cursor: pointer;

    transition: 0.3s;

    }

    .gate:hover {

    border-color: #fff;

    transform: scale(1.05);

    }

    /* ARTIST OPTIONS */

    .artist-options button {

    display: block;

    margin: 10px auto;

    width: 60%;

    }

    /* TRANSIT KEY */

    .transit-key {

    margin-top: 40px;

    padding: 14px 30px;

    border-radius: 50px;

    border: 2px solid #888;

    }

    Galactic Dome Transit Hub

    Select your sigil to begin your journey.

    ASCEND △

    DESCEND ▽

    TRANSCEND ◇

    Vivid Colored Hub (ASCEND)

    Explosive neon gradients. Bold energy.

    Enter Galaxy Gates

    Return to Dome

    Black & White Hub (DESCEND)

    Monochrome elegance. Archival depth.

    Enter Galaxy Gates

    Return to Dome

    Futuristic Steampunk Hub (TRANSCEND)

    Brass, neon, plasma arcs, alchemical invention.

    Enter Galaxy Gates

    Return to Dome

    Galaxy Gates

    Choose an artist portal.

    Artist A

    Artist B

    Artist C

    Artist D

    Return to Dome

    Artist Domain

    Select your landing point.

    Spotlight Zone Alcove

    Planet Orbit View

    Return to Dome

    Spotlight Zone Alcove

    Obsidian arch. Planet-colored lighting. Shrine atmosphere.

    Explore Moons

    View Rings

    Enter Steampunk Relic

    Return to Dome

    Planet Orbit View

    Orbiting planet. Moons and rings visible.

    Explore Moons

    View Rings

    Enter Steampunk Relic

    Return to Dome

    Moons (Projects)

    Project details, audio/video embeds.

    Back to Artist Domain

    Return to Dome

    Rings (Revenue Streams)

    Hover overlays with metadata.

    Back to Artist Domain

    Return to Dome

    Steampunk Relic

    Artist-specific mechanical artifact in the Inspiration Chamber.

    Back to Artist Domain

    Return to Dome

    function goTo(screenId) {

    document.querySelectorAll('.screen').forEach(s => s.classList.remove('active'));

    document.getElementById(screenId).classList.add('active');

    }