/* STREAMZONE 2.0 — LIGHT SKELETON SHIMMER */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #e2e8f0 !important;
  border-radius: 8px;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: sz-shimmer 1.5s infinite;
}

@keyframes sz-shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(200%); }
}

.skeleton-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04) !important;
  min-width: 200px;
  flex: 0 0 calc(20% - 14.4px);
}

.skeleton-img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  max-height: 180px !important;
  border-radius: 0 !important;
  background: #e2e8f0 !important;
}

.skeleton-card .info {
  padding: 12px 14px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.skeleton-text {
  height: 14px !important;
  margin: 0 !important;
  border-radius: 6px !important;
  background: #e2e8f0 !important;
  width: 85% !important;
}

.skeleton-text.small {
  width: 45% !important;
  height: 12px !important;
}

.skeleton-btn {
  height: 36px !important;
  margin-top: 8px !important;
  border-radius: 8px !important;
  background: #e2e8f0 !important;
  width: 100% !important;
}
