/* QQ群弹窗样式 */
#qqModal {
  z-index: 50;
}

#qqModal .max-w-md {
  max-width: 90vw;
  margin: 0 10px;
}

#qqModal .bg-gray-100 {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 16px;
}

#qqModal .bg-green-500 {
  background-color: #10b981;
  transition: all 0.3s ease;
}

#qqModal .bg-green-500:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
  #qqModal .flex {
    flex-direction: column;
    gap: 20px;
  }
  
  #qqModal .bg-gray-100 {
    display: flex;
    justify-content: center;
  }
  
  #qqModal .flex-col {
    align-items: center;
  }
  
  #qqModal .text-left {
    text-align: center;
  }
}