* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background: #1a1a2e; color: #e0e0e0; display: flex; align-items: center; justify-content: center; min-height: 100vh; } #loading, #error { text-align: center; padding: 2rem; } .spinner { width: 48px; height: 48px; border: 4px solid #333; border-top-color: #6c63ff; border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1.5rem; } @keyframes spin { to { transform: rotate(360deg); } } #status { font-size: 1.1rem; color: #aaa; } #error h2 { color: #ff6b6b; margin-bottom: 0.75rem; } #error-message { color: #ccc; margin-bottom: 1.5rem; max-width: 400px; } #retry-btn { background: #6c63ff; color: #fff; border: none; padding: 0.6rem 1.5rem; border-radius: 6px; font-size: 1rem; cursor: pointer; transition: background 0.2s; } #retry-btn:hover { background: #5a52d5; }