@import url(https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&display=swap);
* {
    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);
    }
}

:root {
    --neon-blue: #00d4ff;
    --purple-glow: #7b2fff;
    --dark-void: #020208;
    --cyber-white: #e8f0fe;
    --cyber-gray: #8892a4;
}

h1,
h2,
h3,
h4,
h5,
p {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-style: normal;
    color: var(--cyber-white);
    font-size: 16px;
    margin: 0;
}

/* 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: '   ';
    }
}

/* Neon blinking cursor */
.blinking-cursor {
    background-color: var(--neon-blue);
    width: 0.8em;
    height: 0.12em;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.8);
    -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;
        box-shadow: none;
    }
    50% {
        background-color: var(--neon-blue);
        box-shadow: 0 0 6px rgba(0, 212, 255, 0.8);
    }
}

@-moz-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: var(--neon-blue);
    }
}

@-webkit-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: var(--neon-blue);
    }
}

@-ms-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: var(--neon-blue);
    }
}

@-o-keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: var(--neon-blue);
    }
}

/* BIOS Start Button — cyberpunk neon style */
.bios-start-button {
    background-color: transparent;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.4), inset 0 0 12px rgba(0, 212, 255, 0.05);
    transition: all 0.2s ease;
}

.bios-start-button p {
    box-sizing: border-box;
    padding: 10px 24px;
    color: var(--neon-blue);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.bios-start-button:hover {
    background-color: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), inset 0 0 20px rgba(0, 212, 255, 0.1);
    cursor: pointer;
}

.bios-start-button:hover p {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.9);
}

/* Loading screen sections */
.loading-screen-header {
    padding: 48px;
}

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

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

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

/* Neon text glow utility */
.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
}

.purple-text {
    color: var(--purple-glow);
    text-shadow: 0 0 8px rgba(123, 47, 255, 0.7);
}

/* Neon scan line animation */
@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* Mobile overrides */
@media only screen and (max-width: 768px) {
    .loading-screen-header {
        padding: 16px;
    }

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

    .blinking-cursor {
        background-color: var(--neon-blue);
        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;
    }
}


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