body {
    background-color: #fff7fa;
}

#splash-container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#splash-image {
    max-width: 80vw;
    height: auto;
    display: block;
}

#loader {
    margin: 24px;
    width: 50px;
    height: 50px;
    border: 6px solid rgba(123, 78, 127, 0.2);
    box-shadow: 0 0 8px rgba(123, 78, 127, 0.2);
    border-top-color: #7b4e7f;
    border-radius: 50%;
    animation: spin 0.6s ease-in-out infinite;
    display: inline-block;
}

#splash-message {
    font-family: sans-serif;
    font-size: 15px;
    color: #7b4e7f;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #171216;
    }

    #loader {
        border: 6px solid rgba(235, 181, 237, 0.2);
        box-shadow: 0 0 8px rgba(235, 181, 237, 0.2);
        border-top-color: #ebb5ed;
    }

    #splash-message {
        color: #ebb5ed;
    }
}