/* 리플렉스 전용 스타일 */
#stage {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0d1220;
  transition: background 0.06s linear;
  color: #fff;
}

#stage.wait { background: #b91c3c; }
#stage.fake { background: #eab308; }
#stage.go   { background: #16a34a; }
#stage.early { background: #4c1d2e; }

#stage-round { font-size: 15px; font-weight: 700; opacity: 0.75; letter-spacing: 0.2em; }
#stage-main  { font-size: clamp(44px, 13vw, 72px); font-weight: 800; }
#stage-sub   { font-size: 17px; opacity: 0.85; min-height: 22px; }

#ready h1 {
  font-size: clamp(40px, 12vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #facc15, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hint { font-size: 17px; color: #aab4d4; line-height: 1.6; }
.hint .red { color: #ff5d73; font-weight: 700; }
.hint .green { color: #4ade80; font-weight: 700; }
.hint .yellow { color: #facc15; font-weight: 700; }

.final-score .ms { font-size: 0.35em; font-weight: 700; margin-left: 4px; color: #8b96b8; }
#grade { font-size: 22px; font-weight: 800; }
