html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0d0906;
}

#out {
    width: 100%;
    height: 100%;
}

#splash {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    color: #d9d4cf;
    font-family: system-ui, sans-serif;
}

.purple-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid #6f42c1;
    border-top-color: transparent;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
