@charset "utf-8";
* { box-sizing: border-box; }
html, body { width: 100%; min-width: 320px; min-height: 100%; margin: 0; }
body {
  background: #000;
  color: #fff;
  font-family: Arial, Verdana, "Microsoft JhengHei", sans-serif;
  overflow: hidden;
}
a { color: #fff; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
.home-slider { position: fixed; inset: 0; background: #000; }
.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 0s linear 1.1s;
}
.home-slide.is-active { opacity: 1; visibility: visible; transition-delay: 0s; }
.home-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 22px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 22px;
  /*background: linear-gradient(transparent, rgba(0,0,0,.86) 42%);*/
  text-shadow: 0 1px 4px #000;
}
.home-enter {
  flex: 0 0 auto;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  font-size: 18px;
  letter-spacing: .14em;
}
.home-enter:hover,
.home-enter:focus-visible { color: #d5db00; border-color: #d5db00; text-decoration: none; }
.home-contact { font-size: 13px; line-height: 1.7; }
.home-contact p { margin: 0; }
.home-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 6;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}
.home-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  cursor: pointer;
}
.home-dot.is-active { background: #d5db00; border-color: #d5db00; }
@media (max-width: 700px) {
  .home-slide img { object-position: 55% center; }
  .home-overlay { padding: 54px 18px 18px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .home-enter { font-size: 16px; }
  .home-contact { font-size: 14px; }
  /*.home-contact__credit { display: none; }*/
  .home-dots { right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-slide { transition: none; }
}

/* 2026-07-14 v4: restore the original desktop entry/contact block position. */
@media (min-width: 901px) {
  .home-overlay {
    left: 51vw;
    right: auto;
    top: 59.5vh;
    bottom: auto;
    width: min(650px, 47vw);
    padding: 10px 14px;
    gap: 18px;
    /*background: rgba(0,0,0,.52);*/
    /*border: 1px solid rgba(255,255,255,.12);*/
  }
  .home-contact {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .home-overlay {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 18px;
    width: auto;
  }
}
