html,
body,
#app {
    min-height: 100%;
    margin: 0;
    background: #0a0a0c;
}

.app-shell-loading {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
    background:
        radial-gradient(circle at 22% 18%, rgba(104, 112, 255, 0.22), transparent 34%),
        radial-gradient(circle at 78% 26%, rgba(34, 211, 238, 0.14), transparent 32%),
        linear-gradient(135deg, #070810 0%, #101426 48%, #080a12 100%);
}

.app-shell-brand {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
}

.app-shell-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
}

.app-shell-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: #70e0ff;
    border-radius: 50%;
    animation: app-shell-spin 0.8s linear infinite;
}

@keyframes app-shell-spin {
    to {
        transform: rotate(360deg);
    }
}
