html,
body {
  height: 100%;
  margin: 0;
  background: #050713;
}

body {
  color: #f8fafc;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.app-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.24), transparent 30%),
    radial-gradient(circle at 70% 28%, rgba(34, 211, 238, 0.12), transparent 26%),
    linear-gradient(135deg, #050713 0%, #111936 52%, #050713 100%);
  z-index: 2147483647;
}

.app-loader__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #8b5cf6;
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.34);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.app-loader__title {
  color: #f8fafc;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.app-loader__text {
  margin-top: 6px;
  color: #a6b2c7;
  font-size: 14px;
}

.app-loader--error .app-loader__mark {
  background: #ef4444;
}

.app-loader__retry {
  margin-left: 4px;
  border: 1px solid #27314e;
  border-radius: 8px;
  background: #151b31;
  color: #f8fafc;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}

.app-loader__retry:hover {
  background: #0d1224;
}

noscript {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: #a6b2c7;
  font-size: 14px;
  z-index: 2147483647;
}
