/* 首頁樣式 */
html,
body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  background: #f5f5f5;
}

/* 防止文字選取 */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.home-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-cont {
  position: absolute;
  pointer-events: none;
}

.img-earth-man {
  position: absolute;
  background-image: url("../svg/地球人.svg");
  background-size: cover;
  left: -12vh;
  top: -16vh;
  width: 24vh;
  height: 28vh;
}

.earth-top {
  left: 50%;
  top: 0;
}

.earth-bottom {
  left: 50%;
  top: 100%;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vh;
}

.menu-btn {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.menu-btn:hover {
  transform: scale(1.05);
}

.menu-btn:active {
  transform: scale(0.95);
}

.img-big-singers,
.img-big-cabaret {
  width: 30vh;
  height: 12vh;
}

.img-big-singers img,
.img-big-cabaret img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 手機版調整 */
@media (max-width: 768px) {
  .img-earth-man {
    left: -18vw;
    top: -24vw;
    width: 36vw;
    height: 42vw;
  }

  .img-big-singers,
  .img-big-cabaret {
    width: 60vw;
    height: 24vw;
  }

  .menu-buttons {
    gap: 6vh;
  }
}
