/**
 * Splash Screen Styles
 * The Heart of Gold
 */

.splash-screen {
    position: fixed;
    inset: 0;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-splash);
    padding: var(--space-xl);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.unity-logo {
    width: clamp(120px, 30vw, 200px);
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.unity-gif {
    width: clamp(100px, 25vw, 160px);
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
