﻿body {
    margin: 0;
    padding: 0;
    background-color: #111;
    font-family: system-ui, sans-serif;
    color: #fff;
    text-align: center;
}

canvas {
    background-color: #231F20;
    border: none;
    outline: none;
}

#mada-loader {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    font-family: system-ui, sans-serif;
}

#mada-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #555;
    border-top: 4px solid #1e90ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

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