* {
    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-cyan: #ff2d95;
    --neon-magenta: #ff6ec7;
    --neon-pink: #ff007f;
    --neon-green: #ff4fa3;
    --neon-yellow: #ffb3de;
    --dark-bg: #120009;
    --grid-color: rgba(255, 45, 149, 0.05);
}


h1,
h2,
h3,
h4,
h5,
p {
    /* font-family: ocr-a-std, monospace; */
    font-family: 'Courier New', monospace;
    font-weight: 400;
    font-style: normal;
    color: var(--neon-cyan);
    /* mobile friendly font size */
    font-size: 16px;
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
}

/* 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: var(--neon-cyan);
    width: 0.8em;
    height: 0.15em;
    box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    -webkit-animation: 0.65s blink-cyber step-end infinite;
    -moz-animation: 0.65s blink-cyber step-end infinite;
    -ms-animation: 0.65s blink-cyber step-end infinite;
    -o-animation: 0.65s blink-cyber step-end infinite;
    animation: 0.65s blink-cyber step-end infinite;
}

@keyframes blink-cyber {
    from,
    to {
        background-color: transparent;
        box-shadow: none;
    }
    50% {
        background-color: var(--neon-cyan);
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    }
}

@-moz-keyframes blink-cyber {
    from,
    to {
        background-color: transparent;
        box-shadow: none;
    }
    50% {
        background-color: var(--neon-cyan);
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    }
}

@-webkit-keyframes blink-cyber {
    from,
    to {
        background-color: transparent;
        box-shadow: none;
    }
    50% {
        background-color: var(--neon-cyan);
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    }
}

@-ms-keyframes blink-cyber {
    from,
    to {
        background-color: transparent;
        box-shadow: none;
    }
    50% {
        background-color: var(--neon-cyan);
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    }
}

@-o-keyframes blink-cyber {
    from,
    to {
        background-color: transparent;
        box-shadow: none;
    }
    50% {
        background-color: var(--neon-cyan);
        box-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    }
}

/* DIVE IN Button */
.dive-in-button {
    position: relative;
    padding: 14px 40px;
    background: rgba(255, 45, 149, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dive-in-text {
    position: relative;
    z-index: 2;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    color: var(--neon-cyan);
    letter-spacing: 6px;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.dive-in-glow {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 149, 0.4), transparent);
    transform: translateY(-50%) skewX(-20deg);
    transition: left 0.5s ease;
}

.dive-in-button:hover {
    background: rgba(255, 45, 149, 0.2);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.4), inset 0 0 20px rgba(255, 45, 149, 0.1);
}

.dive-in-button:hover .dive-in-text {
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan), 0 0 45px var(--neon-cyan);
}

.dive-in-button:hover .dive-in-glow {
    left: 100%;
}

.dive-in-button:active {
    transform: scale(0.98);
}

.dive-in-button-wrapper {
    margin-top: 24px;
}

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

/* 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: var(--neon-cyan);
        width: 0.4em;
        height: 0.08em;
        -webkit-animation: 0.65s blink-cyber step-end infinite;
        -moz-animation: 0.65s blink-cyber step-end infinite;
        -ms-animation: 0.65s blink-cyber step-end infinite;
        -o-animation: 0.65s blink-cyber step-end infinite;
        animation: 0.65s blink-cyber step-end infinite;
    }

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

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

    .dive-in-button-wrapper {
        margin-top: 16px;
    }
}

/* Cyberpunk Effects */
.cyber-overlay {
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 50%, #0a0a0f 100%);
}

.cyber-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 45, 149, 0.03) 2px,
            rgba(255, 45, 149, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.cyber-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

.cyber-content {
    position: relative;
    z-index: 3;
}

.cyber-title {
    color: var(--neon-magenta) !important;
    text-shadow:
        0 0 5px var(--neon-magenta),
        0 0 10px var(--neon-magenta),
        0 0 20px var(--neon-magenta),
        0 0 40px var(--neon-magenta) !important;
    animation: flicker 3s infinite;
}

.cyber-subtitle {
    color: var(--neon-cyan) !important;
    text-shadow:
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan) !important;
}

.cyber-warning {
    color: var(--neon-yellow) !important;
    text-shadow:
        0 0 5px var(--neon-yellow),
        0 0 10px var(--neon-yellow) !important;
}

.cyber-success {
    color: var(--neon-green) !important;
    text-shadow:
        0 0 5px var(--neon-green),
        0 0 10px var(--neon-green) !important;
}

.glitch {
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
        text-shadow:
            0 0 5px var(--neon-magenta),
            0 0 10px var(--neon-magenta),
            0 0 20px var(--neon-magenta);
    }
    92% {
        transform: translate(-2px, 1px);
        text-shadow:
            -2px 0 var(--neon-cyan),
            2px 0 var(--neon-magenta);
    }
    94% {
        transform: translate(2px, -1px);
        text-shadow:
            2px 0 var(--neon-cyan),
            -2px 0 var(--neon-magenta);
    }
    96% {
        transform: translate(-1px, 2px);
        text-shadow:
            -2px 0 var(--neon-magenta),
            2px 0 var(--neon-cyan);
    }
    98% {
        transform: translate(1px, -2px);
        text-shadow:
            2px 0 var(--neon-magenta),
            -2px 0 var(--neon-cyan);
    }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow:
            0 0 5px var(--neon-magenta),
            0 0 10px var(--neon-magenta),
            0 0 20px var(--neon-magenta),
            0 0 40px var(--neon-magenta);
    }
    20%, 24%, 55% {
        opacity: 0.8;
        text-shadow: none;
    }
}

.cyber-border {
    border: 1px solid var(--neon-cyan) !important;
    box-shadow:
        0 0 10px var(--neon-cyan),
        0 0 20px rgba(255, 45, 149, 0.3),
        inset 0 0 10px rgba(255, 45, 149, 0.1) !important;
}

.cyber-grid {
    background-image:
        linear-gradient(rgba(255, 45, 149, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 149, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.loading-bar {
    height: 4px;
    background: linear-gradient(90deg,
        var(--neon-cyan),
        var(--neon-magenta),
        var(--neon-cyan));
    box-shadow:
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-magenta);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-magenta);
    }
    50% {
        box-shadow:
            0 0 20px var(--neon-cyan),
            0 0 40px var(--neon-magenta),
            0 0 60px var(--neon-cyan);
    }
}

/* VIRALITY IS EVERYTHING - Tagline Animation */
.tagline-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 60px;
}

.ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
}

@keyframes ripple-color-sync {
    0%, 100% {
        border-color: var(--neon-cyan);
        box-shadow: 0 0 10px var(--neon-cyan);
    }
    50% {
        border-color: #ffffff;
        box-shadow: 0 0 20px #ffffff, 0 0 40px var(--neon-cyan);
    }
}

.ripple-1 {
    animation: ripple-expand 3s ease-out 0.5s infinite, ripple-color-sync 2.5s ease-in-out infinite;
}

.ripple-2 {
    animation: ripple-expand 3s ease-out 1.25s infinite, ripple-color-sync 2.5s ease-in-out infinite;
}

.ripple-3 {
    animation: ripple-expand 3s ease-out 2s infinite, ripple-color-sync 2.5s ease-in-out infinite;
}

.ripple-4 {
    animation: ripple-expand 3s ease-out 2.75s infinite, ripple-color-sync 2.5s ease-in-out infinite;
}

@keyframes ripple-expand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.9;
        border-width: 2px;
    }
    100% {
        width: 1500px;
        height: 1500px;
        opacity: 0;
        border-width: 1px;
    }
}

.tagline-virality {
    position: relative;
    z-index: 1;
    font-size: 28px;
    color: var(--neon-cyan);
    letter-spacing: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    animation: tagline-fade-in 1s ease-out forwards, tagline-glow-pulse 2.5s ease-in-out 1s infinite;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes tagline-fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tagline-glow-pulse {
    0%, 100% {
        text-shadow:
            0 0 5px var(--neon-cyan),
            0 0 10px var(--neon-cyan),
            0 0 20px rgba(255, 45, 149, 0.5);
        color: var(--neon-cyan);
    }
    50% {
        text-shadow:
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan),
            0 0 40px var(--neon-cyan),
            0 0 60px rgba(255, 45, 149, 0.4);
        color: #ffffff;
    }
}

@media only screen and (max-width: 768px) {
    .tagline-wrapper {
        padding: 20px 20px;
    }

    .tagline-virality {
        font-size: 22px;
        letter-spacing: 6px;
        white-space: normal;
        text-align: center;
        line-height: 1.6;
    }

    @keyframes ripple-expand {
        0% {
            width: 80px;
            height: 80px;
            opacity: 0.9;
            border-width: 2px;
        }
        100% {
            width: 1000px;
            height: 1000px;
            opacity: 0;
            border-width: 1px;
        }
    }
}


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

/* HACK branding */
.hack-logo {
    display: block;
    margin: 0 auto 18px auto;
    width: 190px;
    max-width: 55vw;
    filter: drop-shadow(0 0 18px rgba(255, 45, 149, 0.55));
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 768px) {
    .hack-logo {
        width: 130px;
        margin-bottom: 12px;
    }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('/__l5e/assets-v1/223d69bc-df26-4438-a1f0-03ff99d72519/floki-uni-logo.png');
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: min(60vh, 70vw);
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.tagline-wrapper {
    flex-direction: column;
}

/* FLOKI UNI — typewriter tagline, two-tone (logo pink + horn gold) */
.tagline-wrapper {
    flex-direction: column;
}

.tagline-virality {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #ffc93c;
    padding-right: 4px;
    opacity: 1;
    transform: none;
    font-weight: 700;
    letter-spacing: 10px;
    background: linear-gradient(90deg, #ff2d95 0%, #ff6ec7 35%, #ffc93c 70%, #ff2d95 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(255, 45, 149, 0.55)) drop-shadow(0 0 22px rgba(255, 201, 60, 0.3));
    width: calc(16ch + 170px);
    animation:
        floki-typing 2.4s steps(16, end) 0.3s both,
        floki-caret 0.7s step-end infinite,
        floki-shimmer 4s linear 2.7s infinite;
}

@keyframes floki-typing {
    from { width: 0; }
    to { width: calc(16ch + 170px); }
}

@keyframes floki-caret {
    from, to { border-right-color: transparent; }
    50% { border-right-color: #ffc93c; }
}

@keyframes floki-shimmer {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}

@media only screen and (max-width: 768px) {
    .tagline-virality {
        font-size: 20px;
        letter-spacing: 5px;
        white-space: nowrap;
    }
}

/* Monitor intro — typewriter look */
#ui p {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-shadow: 0 0 4px var(--neon-cyan), 0 0 12px rgba(255, 45, 149, 0.5);
    white-space: pre;
}
