.homeHero {
    height: 59.167rem;
    position: relative;
    display: flex;
    overflow: hidden;
}
.homeHero .videoContainer {
    position: absolute;
    width: 100vw;
    height: 59.167rem;
}
.homeHero .videoContainer video {
    width: 100vw;
    height: 59.167rem;
    -o-object-fit: cover;
    object-fit: cover;
}
.globalHomepageContainer {
    width: 85%;
    max-width: 89.31rem;
    margin: 0 auto;
}
.homeHero .contentContainerMobile {
    display: none;
}
.homeHero .contentContainer {
    z-index: 2;
}
.globalHomepageContainer {
    width: 85%;
    max-width: 89.31rem;
    margin: 0 auto;
}
.homeHero .contentContainer .content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 4.583rem auto 0;
    text-align: center;
}
.homeHero .contentContainer .content h1 {
    font-size: 5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.066;
    text-shadow: 0 2px 2px rgba(0,0,0,.08235);
}

.videoContainer {
    position: relative;
  }
  
  .videoContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明的黑色 */
    pointer-events: none; /* 確保暗色層不會阻擋視頻控制 */
  }
  