.wechat-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  backdrop-filter: blur(10px);
  position: relative;
  min-height: 100vh;
  padding-bottom: 30px;
}

/* 炫彩背景光晕 */
.wechat-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(7,193,96,0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(102,126,234,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* 返回链接 - 炫酷版 */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(7,193,96,0.2);
  position: relative;
  overflow: hidden;
}

.back-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(7,193,96,0.2), transparent);
  transition: left 0.4s ease;
}

.back-link:hover::before {
  left: 100%;
}

.back-link:hover {
  background: rgba(7,193,96,0.1);
  color: var(--wechat-color);
  transform: translateX(-4px);
  border-color: var(--wechat-color);
  box-shadow: 0 4px 12px rgba(7,193,96,0.2);
}

.back-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.back-link:hover .back-icon {
  transform: translateX(-3px);
}

/* 微信卡片 - 超级炫酷 */
.wechat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(7,193,96,0.2);
  position: relative;
  overflow: hidden;
  animation: cardFloat 0.6s ease;
}

@keyframes cardFloat {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 卡片炫彩边框效果 */
.wechat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #07c160, #10b981, #34d399, #10b981, #07c160);
  background-size: 200% 100%;
  animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* 卡片内部扫光效果 */
.wechat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.wechat-card:hover::after {
  left: 100%;
}

.wechat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(7,193,96,0.4);
}

/* 微信标题 */
.wechat-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #07c160;
  background: linear-gradient(135deg, #07c160, #059669, #10b981);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGradient 3s ease infinite;
  display: block;
}

.wechat-title .title-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-size: 1.6rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #07c160;
}

@keyframes titleGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 二维码区域 - 炫酷版 */
.qrcode-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.qrcode-box {
  display: inline-block;
  padding: 16px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.qrcode-box:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* 二维码呼吸光效 */
.qrcode-box::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #07c160, #10b981, #34d399);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qrcode-box:hover::before {
  opacity: 1;
  animation: borderSpin 1.5s linear infinite;
}

@keyframes borderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.qrcode-img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qrcode-tip {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.qrcode-tip::before {
  content: '💡';
  font-size: 0.9rem;
}

/* 微信号信息 - 炫酷版 */
.wechat-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(7,193,96,0.08), rgba(16,185,129,0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(7,193,96,0.15);
  backdrop-filter: blur(5px);
}

.info-label {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
}

.info-value {
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #07c160, #059669);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

/* 复制按钮 - 炫酷版 */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #07c160, #059669);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(7,193,96,0.3);
}

.copy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.4s ease;
}

.copy-btn:hover::before {
  left: 100%;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7,193,96,0.4);
}

.copy-btn:active {
  transform: translateY(0);
}

.copy-btn .btn-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.copy-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* 复制提示 */
.copy-tip {
  text-align: center;
  color: var(--success-color);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-tip.show {
  opacity: 1;
  animation: tipPop 0.3s ease;
}

@keyframes tipPop {
  0% { transform: scale(0.8); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* 复制链接按钮容器 */
.copy-link-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

/* 复制链接按钮 */
.action-btn.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  box-shadow: var(--shadow-sm);
}

.action-btn.secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(7,193,96,0.15), transparent);
  transition: left 0.4s ease;
}

.action-btn.secondary:hover::before {
  left: 100%;
}

.action-btn.secondary:hover {
  background: linear-gradient(135deg, #07c160, #059669);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.action-btn.secondary:hover .btn-icon {
  filter: brightness(0) invert(1);
}

.action-btn.secondary:active {
  transform: translateY(0);
}

.action-btn.secondary .btn-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.action-btn.secondary:hover .btn-icon {
  transform: scale(1.1);
}

/* 隐藏旧的按钮组 */
.action-buttons {
  display: none;
}

/* 其他微信客服 */
.other-wechats {
  margin-bottom: 24px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(5px);
}

.other-wechats .section-title {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  text-align: center;
}

.wechat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.wechat-item {
  padding: 8px 18px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.wechat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(7,193,96,0.2), transparent);
  transition: left 0.3s ease;
}

.wechat-item:hover::before {
  left: 100%;
}

.wechat-item:hover {
  background: linear-gradient(135deg, #07c160, #059669);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7,193,96,0.3);
}

/* 返回首页 */
.back-home {
  text-align: center;
  margin-top: 20px;
}

.home-link {
  display: inline-block;
  padding: 10px 24px;
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(5px);
}

.home-link:hover {
  background: rgba(7,193,96,0.1);
  color: var(--wechat-color);
  transform: translateY(-2px);
}

/* ========== 弹窗样式 - 超级炫酷 ========== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.8));
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: 300px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  border: 1px solid rgba(7,193,96,0.2);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--gray-800);
  transform: rotate(90deg);
}

.modal-content {
  text-align: center;
}

.modal-text {
  font-size: 1rem;
  color: var(--gray-800);
  margin: 16px 0 20px;
  line-height: 1.5;
}

.modal-btn {
  background: linear-gradient(135deg, #07c160, #059669);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(7,193,96,0.3);
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(7,193,96,0.4);
}

/* 顶部提示条 */
.wechat-container .top-banner {
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

/* 响应式 */
@media (max-width: 480px) {
  .wechat-card {
    padding: 20px 16px;
  }
  
  .wechat-title {
    font-size: 1.5rem;
  }
  
  .qrcode-img {
    width: 220px;
  }
  
  .wechat-info {
    flex-direction: column;
    padding: 12px 16px;
  }
  
  .info-value {
    font-size: 1rem;
  }
  
  .action-btn.secondary {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
  }
  
  .back-link {
    margin-bottom: 16px;
  }
}

@media (max-width: 380px) {
  .qrcode-img {
    width: 200px;
  }
  
  .wechat-title {
    font-size: 1.3rem;
  }
}