* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: #050505;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  overflow: hidden;
}

.bg-photo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.dim {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  padding: 8px 14px 18px;
}

.arrow {
  position: fixed;
  top: 2px;
  right: 14px;
  z-index: 6;
  animation: bounce .75s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.7));
  pointer-events: none;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(9px); }
}

.hint {
  margin-top: 4px;
  padding: 16px 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,16,28,.94), rgba(10,10,16,.92));
  text-align: center;
}

.hint h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 23px;
  font-weight: 800;
}

.ico { font-size: 20px; }

.line {
  width: 54px;
  height: 2px;
  margin: 8px auto 12px;
  background: #f0d27a;
}

.hint p { font-size: 16.5px; line-height: 1.4; font-weight: 600; }
.hint b { color: #fff; }
.gold { color: #FFD100; }
.step2 { margin-top: 12px; font-weight: 700; }

.clip {
  width: min(280px, 72vw);
  aspect-ratio: 1 / 1;
  margin: 28px auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  border: 6px solid #fff;
  pointer-events: none;
}

.clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

.label { color: #FFD100; font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.time { font-size: 48px; font-weight: 800; line-height: 1; }
.live { margin-top: 8px; font-size: 15px; font-weight: 700; }

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #31d158;
  border-radius: 50%;
  margin-right: 6px;
}

@media (max-height: 700px) {
  .clip { width: min(220px, 62vw); margin-top: 16px; }
  .time { font-size: 40px; }
}