html, body {
    overscroll-behavior: none;
    touch-action: none;
}

body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
}

#app {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Teleport effect */
#pixi-container {
    transition: none;
}

#pixi-container.teleporting {
    animation: teleport-fade-in 0.75s ease-out;
}

@keyframes teleport-fade-in {
    0% {
        filter: blur(30px) brightness(2);
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        filter: blur(0px) brightness(1);
        transform: scale(1);
        opacity: 1;
    }
}
