* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Lexend', system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #2c3234;
  color: #ffffff;
}
.container {
  text-align: center;
  padding: 2rem;
}
.logo {
  width: 200px;
  margin-bottom: 2.5rem;
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: #1795d4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#status {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
#detail {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}
.error-icon {
  font-size: 36px;
  margin-bottom: 1.5rem;
  display: none;
}
.spinner.hidden, .error-icon.hidden { display: none; }
.error-icon.visible { display: block; }
#status.error { color: #ff6b6b; }
#retry {
  display: none;
  margin-top: 1.5rem;
  padding: 0.6rem 2rem;
  background: #1795d4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Lexend', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
}
#retry:hover { background: #1480b8; }
