* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f1115;
    color: #e8eaed;
    font-family: "DM Sans", system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.loader {
    text-align: center;
}

.loader-brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.loader-brand span {
    color: #e8eaed;
    font-weight: 700;
}

.loader-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid #2a2f38;
    border-top-color: #8b919a;
    border-radius: 50%;
    animation: x-default-spin 0.7s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-size: 0.875rem;
    color: #5f646d;
}

@keyframes x-default-spin {
    to {
        transform: rotate(360deg);
    }
}
