.hactora-video.video-two-section {
  position: relative;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 190px 0 192px;
}

.hactora-video .video-two-sec-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hactora-video .video-two-sec-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 确保图标容器不被其他元素挤压 */
  flex-shrink: 0;
}

/* 按钮基础样式 */
.hactora-video .video-two-sec-btn {
  height: 180px;
  width: 180px;
  color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
  z-index: 2;
  /* 确保按钮本身不偏移 */
  margin: 0 auto;
}

.hactora-video .video-two-sec-btn:hover {
  border: 4px solid var(--color-primary);
  color: var(--color-primary);
}

/* 外圈呼吸动画 */
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* 内圈脉冲动画 */
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

/* 修正动画伪元素的定位 */
.hactora-video .video-two-sec-btn::before,
.hactora-video .video-two-sec-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  z-index: -1;
}

.hactora-video .video-two-sec-btn::before {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 255, 255, 0.6);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.hactora-video .video-two-sec-btn::after {
  width: 90%;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.1);
  animation: pulse-dot 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

.hactora-video .video-two-sec-content {
  margin-left: 40px;
  text-align: left;
}

.hactora-video .video-two-sec-content h2 {
  font-size: clamp(24px, 2.35vw, 45px);
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  /*text-transform: capitalize;*/
  margin-bottom: 30px;
}

.hactora-video .video-two-sec-content span {
  color: var(--color-primary);
}

.hactora-video .video-two-sec-content p {
  font-size: clamp(14px, 1.05vw, 20px);
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  .hactora-video .video-two-sec-inner {
    flex-direction: column;
  }

  .hactora-video .video-two-sec-content {
    margin-left: 0;
    text-align: center;
    margin-top: 20px;
  }

  .hactora-video.video-two-section {
    padding: 80px 0;
  }
}