/* Global Styles */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

#loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 108px;
    height: 16px;
    background:
        radial-gradient(circle 8px at 8px center, #FFF 100%, transparent 0),
        radial-gradient(circle 8px at 8px center, #FFF 100%, transparent 0);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    position: relative;
    animation: ballX 1s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFF;
    inset: 0;
    margin: auto;
    animation: moveX 1s cubic-bezier(0.5, 300, 0.5, -300) infinite;
}

@keyframes ballX {
    0%, 25%, 50%, 75%, 100% {
        background-position: 25% 0, 75% 0;
    }
    40% {
        background-position: 25% 0, 85% 0;
    }
    90% {
        background-position: 15% 0, 75% 0;
    }
}

@keyframes moveX {
    100% {
        transform: translate(0.15px);
    }
}

/* Safari Warning Styles */
.safari-warning {
    max-width: 600px;
    padding: 20px;
}
