@font-face {
    font-family: 'Gothic';
    src: url('../fonts/Angel\ wish.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gothic', cursive;
    overflow: hidden;
}

.vortex-link {
    text-decoration: none;
    display: block;
}

.void-container {
    position: relative;
    width: 80vmin;
    height: 80vmin;
    max-width: 600px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#vortex {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: brightness(0.4);
    animation:
        spin 20s linear infinite,
        lightning 7s infinite;
}

.ghost-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #fff;
    font-size: 8vmin;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
    animation: ghostFade 4s ease-in-out infinite;
    white-space: nowrap;
}

#sprite-orbit-container {
    position: absolute;
    inset: 0;
}

.sprite-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: orbit 20s linear infinite;
}

.sprite-wrapper:nth-child(1) { animation-delay: 0s; }
.sprite-wrapper:nth-child(2) { animation-delay: -5s; }
.sprite-wrapper:nth-child(3) { animation-delay: -10s; }
.sprite-wrapper:nth-child(4) { animation-delay: -15s; }

.sprite {
    width: 70px;

    transform: translate(-50%, -50%) translateY(-20vmin);

    animation:
        pulse 4s ease-in-out infinite alternate;
}

@media (max-width: 600px) {
    .sprite { width: 50px; }
}