@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.st-gaming-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.st-gaming-header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 20px;
}

.st-gaming-header h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.st-live-dot {
  width: 8px;
  height: 8px;
  background: #1cf011;
  border-radius: 50%;
  margin-right: 10px;
  animation: live-pulse 2s ease-in-out infinite;
}

.st-online-count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.st-player-card {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s ease;
}

.st-player-card:last-child {
  border-bottom: none;
}

.st-player-card:hover {
  background: #f8fafc;
}

.st-game-cover {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.st-player-info {
  flex: 1;
  min-width: 0;
}

.st-player-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.st-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.st-player-link {
  color: #0f172a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.st-player-link:hover {
  color: #3b82f6;
  text-decoration: none;
}

.st-playing-text {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.st-game-link {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.st-game-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.st-empty-state {
  padding: 48px 20px;
  text-align: center;
  color: #94a3b8;
}

.st-empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.3;
}