* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

body {
    background: #000;
}

#experience-choice {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    min-width: 320px;
    padding: 24px;
    background:
        linear-gradient(rgba(0, 255, 0, 0.035) 1px, transparent 1px),
        #000;
    background-size: 100% 4px;
    color: #fff;
    font-family: monospace;
    transition: opacity 180ms ease, transform 180ms ease;
}

#experience-choice.experience-choice--leaving {
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
}

.experience-choice__panel {
    width: min(100%, 620px);
    padding: clamp(24px, 6vw, 48px);
    border: 4px solid #fff;
    background: #000;
    box-shadow: 14px 14px 0 #00ff00;
}

.experience-choice__eyebrow,
.experience-choice__hint,
.experience-choice__noscript {
    font-size: 0.875rem;
    line-height: 1.5;
}

.experience-choice__eyebrow {
    margin: 0 0 16px;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#experience-choice-title {
    margin: 0;
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.experience-choice__copy {
    max-width: 52ch;
    margin: 22px 0 0;
    color: #d7d7d7;
    font-size: 1rem;
    line-height: 1.65;
}

.experience-choice__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.experience-choice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 16px;
    border: 3px solid #fff;
    border-radius: 0;
    background: #000;
    color: #fff;
    font: 700 0.9375rem/1.25 monospace;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.experience-choice__button--primary {
    border-color: #00ff00;
    color: #00ff00;
}

.experience-choice__button:hover,
.experience-choice__button:focus-visible {
    background: #fff;
    color: #000;
    outline: 3px solid #00ff00;
    outline-offset: 3px;
}

.experience-choice__button:disabled {
    cursor: wait;
}

.experience-choice__hint {
    margin: 18px 0 0;
    color: #ffff00;
}

.experience-choice__noscript {
    margin-top: 18px;
}

.experience-choice__noscript a {
    color: #00ff00;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.jitter {
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: jittery;
    z-index: -10;
}

.interface-wrapper {
    width: 100%;
    top: 64px;
    left: 64px;
}

.icon-control-container {
    height: 26.5px;
    width: 26.5px;
}

@media only screen and (max-width: 768px) {
    #experience-choice {
        padding: 18px;
    }

    .experience-choice__panel {
        padding: 26px 22px;
        box-shadow: 8px 8px 0 #00ff00;
    }

    .experience-choice__actions {
        grid-template-columns: 1fr;
    }

    .experience-choice__button {
        min-height: 58px;
    }

    .interface-wrapper {
        width: 100%;
        top: 24px;
        left: 24px;
    }

    .icon-control-container {
        height: 19.5px;
        width: 19.5px;
    }
}

@keyframes jittery {
    10% {
        transform: translate(-0.1px, -0.15px) scale(1, 1);
    }

    20% {
        transform: translate(0.15px, 0.1px) scale(1, 1);
    }

    30% {
        transform: translate(-0.2px, -0.25px) scale(1, 1);
    }

    40% {
        transform: translate(0.05px, 0.1px) scale(1, 1);
    }

    50% {
        transform: translate(-0.025px, -0.05px) scale(1, 1);
    }

    60% {
        transform: translate(0px, 0.075px) scale(1, 1);
    }

    70% {
        transform: translate(-0.075px, -0.1px) scale(1, 1);
    }

    80% {
        transform: translate(0.075px, 0.125px) scale(1, 1);
    }

    90% {
        transform: translate(-0.125px, -0.075px) scale(1, 1);
    }

    100% {
        transform: translate(0.075px, 0.025px) scale(1, 1);
    }
}


/*# sourceMappingURL=main.css.map*/