.skeleton-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0e14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .3s;
}

.skeleton-screen.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.skeleton-line {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.5s infinite;
}

.skeleton-line.wide {
  width: 260px;
}

.skeleton-line.medium {
  width: 180px;
}

.skeleton-line.short {
  width: 110px;
}

@keyframes sk-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
