:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  background: #ccefff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ccefff;
}

body {
  display: flex;
  justify-content: center;
}

.poster {
  position: relative;
  width: min(100%, 540px);
  min-height: 100vh;
  overflow: hidden;
  background: #ccefff;
}

.poster-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 3%;
  -webkit-tap-highlight-color: transparent;
}

.page-nav {
  position: fixed;
  z-index: 10;
  right: max(12px, calc((100vw - 540px) / 2 + 12px));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
}

.page-nav a {
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 999px;
  color: #fff;
  background: rgb(14 106 165 / 82%);
  box-shadow: 0 2px 10px rgb(0 69 115 / 18%);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.countdown-value {
  position: absolute;
  top: 9%;
  left: 11.2%;
  width: 77.6%;
  color: #1573ad;
  font-size: clamp(16px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.countdown-card {
  position: relative;
}

.home-countdown {
  position: absolute;
  z-index: 3;
  top: 21.3%;
  left: 6%;
  width: 88%;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
