* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
}

.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) {
    .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);
    }
}

h1,
h2,
h3,
h4,
h5,
p {
    /* font-family: ocr-a-std, monospace; */
    font-family: monospace;
    font-weight: 400;
    font-style: normal;
    color: white;
    /* mobile friendly font size */
    font-size: 16px;
}

/* if on mobile */
@media only screen and (max-width: 768px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    p {
        font-size: 10px;
    }
}

br {
    padding-top: 8px;
    padding-bottom: 8px;
    height: 16px;
}

.loading::after {
    display: inline-block;
    animation: dotty steps(1, end) 1s infinite;
    content: '';
}

@keyframes dotty {
    0% {
        content: '   ';
    }
    25% {
        content: '. ';
    }
    50% {
        content: '.. ';
    }
    75% {
        content: '...';
    }
    100% {
        content: '   ';
    }
}
.blinking-cursor {
    background-color: #fff;
    width: 0.8em;
    height: 0.15em;
    -webkit-animation: 0.65s blink step-end infinite;
    -moz-animation: 0.65s blink step-end infinite;
    -ms-animation: 0.65s blink step-end infinite;
    -o-animation: 0.65s blink step-end infinite;
    animation: 0.65s blink step-end infinite;
}

@keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-moz-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-webkit-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-ms-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

@-o-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: white;
    }
}

.bios-start-button {
    background-color: #000;
    border: 4px solid #fff;
    border-width: 4px 3px 4px 3px;
}

.bios-start-button p {
    box-sizing: border-box;
    padding: 8px;
}

.bios-start-button:hover p {
    background-color: #fff;
    cursor: pointer;
    color: #000;
}

.loading-screen-header {
    padding: 48px;
}

.loading-screen-body {
    padding-left: 48px;
    padding-right: 48px;
}

.loading-screen-footer {
    padding: 48px;
    padding-bottom: 64px;
}

.bios-parallax-shell {
    --parallax-x: 0;
    --parallax-y: 0;
}

.bios-depth-layer,
.bios-crt-scanlines,
.bios-noise-overlay,
.bios-vignette-overlay {
    position: absolute;
    inset: -8%;
    pointer-events: none;
}

.bios-depth-layer {
    opacity: 0.45;
    mix-blend-mode: screen;
}

.bios-depth-layer-far {
    z-index: 1;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(18, 176, 196, 0.03) 0px,
            rgba(18, 176, 196, 0.03) 1px,
            transparent 1px,
            transparent 4px
        ),
        radial-gradient(circle at 25% 20%, rgba(0, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 78% 76%, rgba(43, 106, 255, 0.07), transparent 40%);
    transform: translate3d(
        calc(var(--parallax-x) * -12px),
        calc(var(--parallax-y) * -12px),
        0
    );
    animation: biosFloatFar 14s ease-in-out infinite alternate;
}

.bios-depth-layer-mid {
    z-index: 2;
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(151, 247, 255, 0.06) 0px,
            rgba(151, 247, 255, 0.06) 1px,
            transparent 1px,
            transparent 6px
        ),
        linear-gradient(125deg, rgba(0, 255, 247, 0.06), transparent 40%);
    transform: translate3d(
        calc(var(--parallax-x) * -22px),
        calc(var(--parallax-y) * -22px),
        0
    );
    animation: biosFloatMid 9s ease-in-out infinite alternate;
}

.bios-depth-layer-near {
    z-index: 3;
    background-image: linear-gradient(
        150deg,
        rgba(0, 255, 255, 0.08) 0%,
        transparent 35%,
        rgba(123, 246, 255, 0.06) 70%,
        transparent 100%
    );
    transform: translate3d(
        calc(var(--parallax-x) * -34px),
        calc(var(--parallax-y) * -34px),
        0
    );
    animation: biosFloatNear 7s ease-in-out infinite alternate;
}

.bios-crt-scanlines {
    z-index: 4;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.25;
    animation: scanlineDrift 10s linear infinite;
}

.bios-noise-overlay {
    z-index: 5;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.5px, transparent 0.5px);
    background-size: 3px 3px;
    opacity: 0.12;
    animation: screenNoise 0.25s steps(2, end) infinite;
}

.bios-vignette-overlay {
    z-index: 6;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.loading-screen-overlay-text {
    width: 100%;
    height: 100%;
}

.truck-loader-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(60, 110, 180, 0.45), rgba(8, 22, 44, 0.9)),
        linear-gradient(180deg, #0d1d37 0%, #091426 100%);
}

.truck-loader-screen .container {
    width: 350px;
    height: 300px;
    padding: 30px;
    border-radius: 20px;
    background-color: rgba(122, 143, 174, 0.36);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(210, 226, 255, 0.28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    gap: 14px;
}

.truckWrapper {
    width: 100%;
    height: 244px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.road {
    width: 100%;
    height: 2.25px;
    background-color: #282828;
    position: relative;
    bottom: 0;
    align-self: flex-end;
    border-radius: 4.5px;
}

.road::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    background-color: #282828;
    right: -50%;
    border-radius: 4.5px;
    animation: roadAnimation 1.4s linear infinite;
    border-left: 15px solid white;
}

.road::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 100%;
    background-color: #282828;
    right: -65%;
    border-radius: 4.5px;
    animation: roadAnimation 1.4s linear infinite;
    border-left: 6px solid white;
}

.lampPost {
    position: absolute;
    right: -90%;
    height: 135px;
    width: 7.5px;
    background: linear-gradient(to top, #2c3e50, #1a2530);
    animation: roadAnimation 1.4s linear infinite;
    z-index: 5;
}

.lampPost::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -75px;
    width: 75px;
    height: 135px;
    border: 7.5px solid #2c3e50;
    border-top: none;
    border-right: none;
    transform: rotate(-180deg);
    border-radius: 0 50% 50% 40%;
}

.lampHead {
    position: absolute;
    top: -18px;
    left: -88.5px;
    width: 45px;
    height: 28.5px;
    border: 3px solid #2c3e50;
    background-color: transparent;
    border-radius: 0 0 50% 50%;
    z-index: 7;
}

.lampLight {
    position: absolute;
    top: -18px;
    left: -72px;
    background-color: #ffe600;
    width: 15px;
    height: 15px;
    border-radius: 0 0 50% 50%;
    z-index: 6;
    box-shadow:
        0 18px 18px 10px rgba(255, 230, 0, 0.6),
        0 36px 36px 18px rgba(255, 230, 0, 0.25),
        0 54px 54px 26px rgba(255, 230, 0, 0.2);
}

.lightBeam {
    position: absolute;
    top: 12px;
    left: -45px;
    width: 90px;
    height: 0;
    border-top: 105px solid rgba(255, 230, 0, 0.12);
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    z-index: 4;
    pointer-events: none;
    filter: blur(13px);
}

.lampBase {
    position: absolute;
    bottom: 0;
    left: -18px;
    width: 42px;
    height: 7.5px;
    background-color: #2c3e50;
    border-radius: 50% 50% 30% 30% / 80% 80% 30% 30%;
    box-shadow:
        inset 0 3px 6px rgba(255, 255, 255, 0.2),
        inset -3px 6px rgba(0, 0, 0, 0.6),
        inset 0 4.5px 9px rgba(0, 0, 0, 0.7);
}

.lampBase::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 10.5px;
    width: 22.5px;
    height: 24px;
    background-color: #2c3e50;
    border-radius: 9px;
    box-shadow:
        inset 0 3px 4.5px rgba(255, 255, 255, 0.2),
        inset -3px -1px 4.5px rgba(0, 0, 0, 0.6);
}

.questionDot {
    position: absolute;
    top: -22.5px;
    left: -94.5px;
    width: 60px;
    height: 6px;
    background-color: #2c3e50;
    border-radius: 100% 100% 0 0;
    z-index: 6;
}

.truckBody {
    width: 210px;
    height: 112px;
    margin-bottom: 0;
    position: relative;
    animation: motion 1s linear infinite;
}

.truckCab {
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 68%;
    height: 100%;
    background-color: #dfdfdf;
    border: 2.8px solid #282828;
    border-radius: 4.2px 0 0 0;
}

.truckTrailer {
    display: none;
    position: absolute;
    top: 0;
    left: 67.2px;
    width: 112px;
    height: 84px;
    border: 2.8px solid #282828;
    background-color: #282828;
    border-left: none;
}

.truckCargo {
    position: absolute;
    background-color: #282828;
    left: 149.8px;
    bottom: 14px;
    width: 35%;
    height: 86.9px;
    z-index: 1;
    clip-path: polygon(0% 0%, 60% 0%, 100% 45%, 100% 100%, 0% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.truckCargo-inner {
    background-color: #f83d3d;
    width: 92%;
    height: 93%;
    clip-path: polygon(0% 0%, 60% 0%, 100% 45%, 100% 100%, 0% 100%);
}

.truckWindow {
    position: absolute;
    left: 159.6px;
    top: 18.2px;
    background-color: #282828;
    width: 64.4px;
    height: 32.2px;
    z-index: 10;
    clip-path: polygon(0% 0%, 62% 0%, 100% 100%, 0% 100%);
}

.truckWindow-inner {
    background-color: #7d7c7c;
    width: 92%;
    height: 85%;
    clip-path: polygon(0% 0%, 58% 0%, 94% 100%, 0% 100%);
}

.truckHeadlight {
    z-index: 10;
    position: absolute;
    left: 214.2px;
    bottom: 47.7px;
    background-color: #fffcab;
    width: 8.4px;
    height: 7px;
    border-radius: 1.4px;
    border: 1.4px solid #282828;
    box-shadow:
        5px 0 10px 3px rgba(255, 252, 171, 0.8),
        10px 0 20px 6px rgba(255, 252, 171, 1.6),
        15px 0 30px 9px rgba(255, 252, 171, 0.4);
}

.truckOpener {
    z-index: 10;
    position: absolute;
    left: 161px;
    bottom: 47.6px;
    width: 14px;
    height: 7px;
    background-color: #282828;
    border: 1.4px solid black;
}

.truckExhaust {
    z-index: -1;
    position: absolute;
    background-color: #fefefe;
    left: -4.2px;
    bottom: 19.6px;
    width: 14px;
    height: 7px;
    border: 1.4px solid #282828;
}

.truckTires {
    width: 182px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 0 21px;
    position: absolute;
    bottom: 0;
}

.tire {
    width: 33.6px;
    height: 33.6px;
    background-color: #282828;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: tireRotation 1s linear infinite;
}

.tire-inner {
    width: 19.6px;
    height: 19.6px;
    border-radius: 50%;
    background-color: #dfdfdd;
}

@keyframes roadAnimation {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-650px);
    }
}

@keyframes motion {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(4.2px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes tireRotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.bios-computer-stage {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate3d(
            calc(var(--parallax-x) * 22px),
            calc(var(--parallax-y) * 14px),
            0
        )
        rotateX(calc(var(--parallax-y) * -1.8deg))
        rotateY(calc(var(--parallax-x) * 2.2deg));
    transform-style: preserve-3d;
    transition: transform 120ms linear;
}

.bios-computer-frame {
    position: relative;
    width: min(1100px, 86vw);
    height: min(760px, 82vh);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bios-computer-shadow {
    position: absolute;
    width: min(900px, 72vw);
    height: min(180px, 16vh);
    border-radius: 50%;
    filter: blur(18px);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translateY(min(300px, 30vh));
}

.bios-screen-bezel {
    width: 100%;
    height: min(650px, 68vh);
    background: linear-gradient(160deg, #c7c8c9 0%, #93979d 30%, #8f9399 100%);
    border: 10px solid #73777d;
    border-radius: 18px;
    box-shadow:
        inset 0 0 0 3px #d6d8db,
        inset 0 -14px 24px rgba(0, 0, 0, 0.35),
        0 22px 40px rgba(0, 0, 0, 0.45);
    padding: clamp(12px, 1.6vw, 18px);
}

.bios-screen-glass {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 20%, rgba(16, 27, 31, 0.85), #020708 75%);
    border: 8px solid #1f2428;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bios-screen-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        140deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.03) 16%,
        transparent 38%,
        transparent 100%
    );
    z-index: 11;
}

.bios-computer-neck {
    width: clamp(130px, 13vw, 160px);
    height: clamp(20px, 2.2vh, 28px);
    margin-top: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #9ca1a8 0%, #737982 100%);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.35);
}

.bios-computer-base {
    width: clamp(430px, 38vw, 520px);
    height: clamp(68px, 7vh, 86px);
    margin-top: 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, #b0b5bc 0%, #858b94 75%);
    box-shadow:
        inset 0 3px 3px rgba(255, 255, 255, 0.35),
        inset 0 -6px 8px rgba(0, 0, 0, 0.25);
}

.bios-keyboard {
    width: clamp(520px, 48vw, 640px);
    height: clamp(30px, 3.2vh, 40px);
    margin-top: 22px;
    border-radius: 6px;
    background: linear-gradient(180deg, #d2d5da 0%, #8f9399 100%);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.35);
}

.bios-screen-glass .loading-screen-header {
    padding: clamp(16px, 1.9vw, 24px);
}

.bios-screen-glass .loading-screen-body {
    padding-left: clamp(16px, 1.9vw, 24px);
    padding-right: clamp(16px, 1.9vw, 24px);
}

.bios-screen-glass .loading-screen-footer {
    padding: clamp(16px, 1.9vw, 24px);
    padding-bottom: clamp(20px, 2.4vw, 30px);
}

.bios-screen-glass p {
    font-size: clamp(11px, 0.9vw, 16px);
}

@keyframes biosFloatFar {
    from {
        transform: translate3d(
            calc(var(--parallax-x) * -12px),
            calc(var(--parallax-y) * -12px),
            0
        );
    }
    to {
        transform: translate3d(
            calc(var(--parallax-x) * -12px),
            calc(var(--parallax-y) * -12px - 14px),
            0
        );
    }
}

@keyframes biosFloatMid {
    from {
        transform: translate3d(
            calc(var(--parallax-x) * -22px),
            calc(var(--parallax-y) * -22px),
            0
        );
    }
    to {
        transform: translate3d(
            calc(var(--parallax-x) * -22px + 10px),
            calc(var(--parallax-y) * -22px - 10px),
            0
        );
    }
}

@keyframes biosFloatNear {
    from {
        transform: translate3d(
            calc(var(--parallax-x) * -34px),
            calc(var(--parallax-y) * -34px),
            0
        );
    }
    to {
        transform: translate3d(
            calc(var(--parallax-x) * -34px - 8px),
            calc(var(--parallax-y) * -34px + 12px),
            0
        );
    }
}

@keyframes scanlineDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 120px;
    }
}

@keyframes screenNoise {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-1px, 1px, 0);
    }
}

.info-wrapper {
    top: 64px;
    left: 64px;
}

/* if on mobile make all loading screen elements have a padding of 16 */
@media only screen and (max-width: 768px) {
    .loading-screen-header {
        padding: 16px;
    }

    .info-wrapper {
        top: 16px;
        left: 16px;
    }

    .blinking-cursor {
        background-color: #fff;
        width: 0.4em;
        height: 0.08em;
        -webkit-animation: 0.65s blink step-end infinite;
        -moz-animation: 0.65s blink step-end infinite;
        -ms-animation: 0.65s blink step-end infinite;
        -o-animation: 0.65s blink step-end infinite;
        animation: 0.65s blink step-end infinite;
    }
    
    .loading-screen-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .loading-screen-footer {
        padding: 16px;
        padding-bottom: 32px;
    }

    .bios-depth-layer-far {
        transform: translate3d(
            calc(var(--parallax-x) * -8px),
            calc(var(--parallax-y) * -8px),
            0
        );
    }

    .bios-depth-layer-mid {
        transform: translate3d(
            calc(var(--parallax-x) * -14px),
            calc(var(--parallax-y) * -14px),
            0
        );
    }

    .bios-depth-layer-near {
        transform: translate3d(
            calc(var(--parallax-x) * -20px),
            calc(var(--parallax-y) * -20px),
            0
        );
    }

    .truck-loader-screen .container {
        width: 86vw;
        height: min(300px, 46vh);
        padding: 22px;
    }

    .truckWrapper {
        transform: scale(0.84);
        transform-origin: center;
    }

    .bios-computer-stage {
        transform: none;
    }

    .bios-computer-frame {
        width: 96vw;
        height: 92vh;
    }

    .bios-screen-bezel {
        height: 76vh;
        border-width: 6px;
        padding: 8px;
    }

    .bios-screen-glass p {
        font-size: 10px;
    }

    .bios-computer-base {
        width: 74vw;
        height: 44px;
    }

    .bios-keyboard {
        width: 82vw;
        height: 22px;
        margin-top: 10px;
    }
}


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