/* GQLite.com - 英文Follow关注按钮 动感风格 */

/* 导入Google字体以获得更优雅的排版 */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:wght@600&family=Bebas+Neue&display=swap');

/* 英文Follow按钮基础样式 */
.follow-button-en {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding: 10px 20px;
  background: #1DA1F2;
  color: #FFFFFF;
  border: 2px solid #1DA1F2;
  border-radius: 25px;
  box-shadow: 0 4px 0px rgba(29, 161, 242, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-transform: uppercase;
}

/* 按钮内部发光效果 */
.follow-button-en::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}

/* 按钮悬停效果 */
.follow-button-en:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0px rgba(29, 161, 242, 0.5), 0 0 15px rgba(29, 161, 242, 0.5);
}

.follow-button-en:hover::before {
  left: 100%;
}

/* 按钮激活/点击效果 */
.follow-button-en:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0px rgba(29, 161, 242, 0.5);
}

/* 已关注状态 */
.follow-button-en.following {
  background: #657786;
  border-color: #657786;
  box-shadow: 0 4px 0px rgba(101, 119, 134, 0.5);
}

.follow-button-en.following:hover {
  box-shadow: 0 6px 0px rgba(101, 119, 134, 0.5), 0 0 15px rgba(101, 119, 134, 0.5);
}

.follow-button-en.following:active {
  box-shadow: 0 2px 0px rgba(101, 119, 134, 0.5);
}

/* 按钮文字样式 */
.follow-button-en span {
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* 悬停时文字轻微放大 */
.follow-button-en:hover span {
  transform: scale(1.05);
}

/* 按钮点击波纹效果 */
.follow-button-en.animate {
  animation: follow-ripple 0.6s ease-out;
}

@keyframes follow-ripple {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .follow-button-en {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .follow-button-en {
    font-size: 0.9rem;
    padding: 7px 14px;
    border-width: 1.5px;
  }
}

@media (max-width: 480px) {
  .follow-button-en {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-width: 1.5px;
  }
  
  .follow-button-en::before {
    display: none;
  }
}