/* This layer belongs to the homepage alone. */
.has-ascii-snake {
    position: relative;
    isolation: isolate;
}

#ascii-snake {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    animation: snake-arrival 1.8s ease-out both;
}

@keyframes snake-arrival {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    #ascii-snake {
        animation: none;
    }
}
