/* 星溯智填 - 补丁样式 */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

#qq-group-float {
  animation: slideUp 0.5s ease-out, pulse 2s ease-in-out 5s infinite;
}

/* QQ群引流按钮（嵌入页面中） */
.qq-group-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.qq-group-banner a {
  background: white;
  color: #667eea;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.qq-group-banner a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 生成文档按钮 */
.btn-generate-doc {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.btn-generate-doc:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-generate-doc:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
