body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #3a3978;
}

#snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.snowflake {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


@keyframes fall {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(100vh);
    }
}

.center-game {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}


@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.font-press-start {
    font-family: 'Press Start 2P', cursive;
}


.retro-text-shadow {
    text-shadow:
        1px 1px 0 #00f,
        2px 2px 0 #f00,
        3px 3px 0 #000;
}

.vucko-logo {
    animation: bounce-logo 2s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@keyframes bounce-logo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(85px, 450px, 100px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(24px, 9999px, 42px, 0);
        transform: skew(0.5deg);
    }

    10% {
        clip: rect(62px, 9999px, 73px, 0);
        transform: skew(0deg);
    }

    20% {
        clip: rect(38px, 9999px, 51px, 0);
        transform: skew(1deg);
    }

    30% {
        clip: rect(89px, 9999px, 100px, 0);
        transform: skew(-0.5deg);
    }

    40% {
        clip: rect(50px, 9999px, 60px, 0);
        transform: skew(-1deg);
    }

    50% {
        clip: rect(72px, 9999px, 83px, 0);
        transform: skew(0.5deg);
    }

    60% {
        clip: rect(10px, 9999px, 20px, 0);
        transform: skew(0deg);
    }

    70% {
        clip: rect(40px, 9999px, 50px, 0);
        transform: skew(-0.5deg);
    }

    80% {
        clip: rect(80px, 9999px, 90px, 0);
        transform: skew(1deg);
    }

    90% {
        clip: rect(5px, 9999px, 15px, 0);
        transform: skew(0.5deg);
    }

    100% {
        clip: rect(95px, 9999px, 105px, 0);
        transform: skew(0deg);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(95px, 9999px, 105px, 0);
        transform: skew(0deg);
    }

    10% {
        clip: rect(5px, 9999px, 15px, 0);
        transform: skew(0.5deg);
    }

    20% {
        clip: rect(80px, 9999px, 90px, 0);
        transform: skew(1deg);
    }

    30% {
        clip: rect(40px, 9999px, 50px, 0);
        transform: skew(-0.5deg);
    }

    40% {
        clip: rect(10px, 9999px, 20px, 0);
        transform: skew(0deg);
    }

    50% {
        clip: rect(72px, 9999px, 83px, 0);
        transform: skew(0.5deg);
    }

    60% {
        clip: rect(50px, 9999px, 60px, 0);
        transform: skew(-1deg);
    }

    70% {
        clip: rect(89px, 9999px, 100px, 0);
        transform: skew(-0.5deg);
    }

    80% {
        clip: rect(38px, 9999px, 51px, 0);
        transform: skew(1deg);
    }

    90% {
        clip: rect(62px, 9999px, 73px, 0);
        transform: skew(0deg);
    }

    100% {
        clip: rect(24px, 9999px, 42px, 0);
        transform: skew(0.5deg);
    }
}