.site-loader {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: #03041c;
  font-family: 'Inter', sans-serif;
}
.sl-card { text-align: center; max-width: 360px; width: 100%; padding: 0 20px; }
.sl-icon { position: relative; width: 90px; height: 90px; margin: 0 auto 28px; }
.sl-ring-outer {
  position: absolute; inset: 0; width: 90px; height: 90px; transform: rotate(-90deg);
  animation: sl-outer 2s linear infinite;
}
.sl-ring-outer circle {
  fill: none; stroke: rgba(74,124,247,0.15); stroke-width: 3;
  stroke-dasharray: 220; stroke-dashoffset: 40; stroke-linecap: round;
}
.sl-ring-inner {
  position: absolute; inset: 8px; width: 74px; height: 74px; transform: rotate(90deg);
  animation: sl-inner 1.6s linear infinite;
}
.sl-ring-inner circle {
  fill: none; stroke: url(#slGrad); stroke-width: 3;
  stroke-dasharray: 180; stroke-dashoffset: 120; stroke-linecap: round;
}
@keyframes sl-outer { 100% { transform: rotate(270deg); } }
@keyframes sl-inner { 100% { transform: rotate(-270deg); } }
.sl-pct {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, #4a7cf7, #8f49ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sl-bar-track {
  height: 3px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden;
  margin-bottom: 18px; position: relative;
}
.sl-bar-fill {
  height: 100%; position: relative;
  background: linear-gradient(90deg, #4a7cf7, #8f49ff);
  border-radius: 4px; transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sl-bar-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: sl-shine 2s ease-in-out infinite;
}
@keyframes sl-shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.sl-status-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; }
.sl-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4a7cf7; display: inline-block;
  animation: sl-dot 1.4s ease-in-out infinite;
}
.sl-dot:nth-child(2) { animation-delay: 0.2s; }
.sl-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes sl-dot {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}
.sl-status { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; }
.site-offline {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: #03041c;
}
.so-card { text-align: center; max-width: 340px; width: 100%; padding: 0 20px; }
.so-icon {
  font-size: 56px; margin-bottom: 20px; display: inline-block;
  animation: so-float 3s ease-in-out infinite;
}
@keyframes so-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.so-card h2 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.so-card p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 24px; line-height: 1.6; }
.so-btn {
  padding: 12px 32px; background: #4a7cf7; color: #fff; border: none; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.25s, transform 0.15s;
}
.so-btn:hover { background: #3a6ae0; transform: translateY(-1px); }
