/* VRGoo Live Activity Widget */
.vrgoo-la-widget {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}

.vrgoo-la-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.vrgoo-la-title {
  font-weight: 700;
  font-size: 14px;
}

.vrgoo-la-online {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.9;
}

.vrgoo-la-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: vrgoo-pulse 2s ease-in-out infinite;
}

@keyframes vrgoo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.vrgoo-la-feed {
  overflow: hidden;
  position: relative;
  height: 384px;
}

.vrgoo-la-slot {
  height: 64px;
  overflow: hidden;
}

.vrgoo-la-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f3f4f6;
  height: 63px;
  box-sizing: border-box;
  overflow: hidden;
}

.vrgoo-la-item:hover {
  background: #f9fafb;
}

.vrgoo-la-item:last-child {
  border-bottom: none;
}

@keyframes vrgoo-slide-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.vrgoo-la-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.vrgoo-la-content {
  flex: 1;
  font-size: 12px;
  line-height: 1.5;
  color: #4b5563;
}

.vrgoo-la-user {
  font-weight: 600;
  color: #1f2937;
}

.vrgoo-la-action {
  color: #6b7280;
}

.vrgoo-la-target {
  color: #2563eb;
  font-weight: 500;
}

.vrgoo-la-time {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

/* VIP special styling */
.vrgoo-la-type-vip .vrgoo-la-content {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 6px;
  padding: 4px 8px;
  margin: -4px 0;
}

.vrgoo-la-vip-text {
  color: #b45309 !important;
  font-weight: 600 !important;
}

.vrgoo-la-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: 4px;
}

/* Online type */
.vrgoo-la-type-online .vrgoo-la-action {
  color: #059669;
}
.vrgoo-la-type-online .vrgoo-la-avatar {
  position: relative;
}
.vrgoo-la-type-online .vrgoo-la-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* Comment type */
.vrgoo-la-type-comment .vrgoo-la-action::before {
  content: '💬 ';
}

/* Forum type */
.vrgoo-la-type-forum .vrgoo-la-action::before {
  content: '📝 ';
}

/* Download type */
.vrgoo-la-type-download .vrgoo-la-action::before {
  content: '⬇️ ';
}
.vrgoo-la-type-download .vrgoo-la-action {
  color: #059669;
  font-weight: 500;
}
