.gardensun-video-section {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.gardensun-video-section video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gardensun-video-section .gardensun-video-mask {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}
.gardensun-video-section .gardensun-video-content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 16px;
}
.gardensun-video-section .gardensun-video-btn {
  margin-top: 24px;
  padding: 10px 32px;
  background: #fff;
  color: #222;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.gardensun-video-section .gardensun-video-btn:hover {
  background: #222;
  color: #fff;
}

/* 按钮区域 */
.gardensun-video-section .gardensun_banner_actions {
  text-align: center;   
}

/* 主要按钮 */
.gardensun-video-section .gardensun_banner_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary, #E60012);
  color: #F6F5F1;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  padding: 8px 20px;
  border-radius: var(--button-radius, 6px);
  text-decoration: none;
  transition: all 0.3s ease;
  height: 42px;
  min-width: 160px;
  justify-content: center;
  white-space: nowrap;
  margin-top: 40px;
}

.gardensun-video-section .gardensun_banner_btn:hover {
  background-color: var(--btn-hover, #CC0010);
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid #E60012;
}

/* 按钮图标 */
.gardensun-video-section .gardensun_btn_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.gardensun-video-section .gardensun_banner_btn:hover svg path {
  fill: #E60012;
}

.gardensun-video-title {
  color: #F6F5F1;
  text-align: center;
  font-family: var(--font-family);
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 70px;
}
.gardensun-video-description {
  color: #F6F5F1;
  text-align: center;
  font-family: var(--font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

@media (max-width: 768px) {
  .gardensun-video-section {
    height: 260px;
  }
  .gardensun-video-content h2 {
    font-size: 26px;
    line-height: normal;
  }
  .gardensun-video-content p {
    font-size: 14px;
    line-height: normal;
  }
  .gardensun-video-btn {
    font-size: 15px;
    padding: 8px 20px;
  }

  .gardensun-video-section .gardensun_banner_btn {
    margin-top: 13px;
  }
} 