/* ===== DESIGN TOKENS (Shift5-inspired) ===== */
:root {
    --color-accent: #FF5841;
    --color-dark: #202020;
    --color-light-gray: #B9B9B9;
    --color-mid-gray: #8B8B8B;
    --color-dark-gray: #4D4D4D;
    --color-off-white: #F8F4EB;
    --color-white: #FFFFFF;
    --color-black: #000000;

    --font-display: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow: hidden;
    font-family: var(--font-display);
    color: var(--color-white);
}

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

/* ===== UI OVERLAY STYLES (Shift5-inspired) ===== */

h1, h2, h3, h4, h5, p {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: normal;
    color: var(--color-white);
    font-size: 16px;
}

@media only screen and (max-width: 768px) {
    h1, h2, h3, h4, h5, p {
        font-size: 12px;
    }
}

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

/* ===== Loading animations ===== */
.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 ===== */
.blinking-cursor {
    background-color: var(--color-white);
    width: 0.8em;
    height: 0.15em;
    animation: blink 0.65s step-end infinite;
}

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

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

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

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

/* ===== Info overlay positioning ===== */
.info-wrapper {
    top: 64px;
    left: 64px;
}

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

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

    .blinking-cursor {
        width: 0.4em;
        height: 0.08em;
    }

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

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

/* ===== Progress bar animation ===== */
@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== Reticle spin ===== */
@keyframes reticleSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ===== Navbar item link (used in menu panel) ===== */
.navbar-link {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-dark);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.navbar-link:hover {
    opacity: 0.6;
}

@media only screen and (max-width: 768px) {
    .navbar-link {
        font-size: 32px;
    }
}

/* ===== Footer nav item hover ===== */
.footer-nav-link:hover {
    opacity: 0.7;
}

/* ===== Legal modal scrollbar ===== */
.legal-modal-content::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-content::-webkit-scrollbar-track {
    background: #202020;
}

.legal-modal-content::-webkit-scrollbar-thumb {
    background: #4D4D4D;
    border-radius: 3px;
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
    background: #8B8B8B;
}

/* ===== Subscribe input placeholder ===== */
input::placeholder {
    color: rgba(32, 32, 32, 0.5);
    font-family: var(--font-display);
}

/* ===== Burger hover line shifts (CSS fallback) ===== */
.burger-button:hover .burger-line-1 {
    transform: translateX(4px);
}

.burger-button:hover .burger-line-2 {
    transform: translateX(-4px);
}


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