.video-background__button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 60em;
  margin: 0 auto;
  padding: 0 2em;
}

/* 移动端 */
@media (max-width: 959px) {
  .video-background__button-wrapper {
    max-width: 100%;
    padding: 0 1.5em;
  }
}

.video-background__button {
  display: inline-block;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-style: solid;
}

/* 按钮样式1：实心白底黑字 */
.button-style-1 .video-background__button {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
}

.button-style-1 .video-background__button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 按钮样式2：镂空白边白字 */
.button-style-2 .video-background__button {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

.button-style-2 .video-background__button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* 按钮样式3：半透明白底白字 */
.button-style-3 .video-background__button {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.button-style-3 .video-background__button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* 移动端调整 */
@media (max-width: 959px) {
  .video-background__button {
    padding: 12px 32px;
    font-size: 14px;
  }
}

