/* 사이먼 전용 스타일 */
#board {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #eef2ff;
}

#status { font-size: 20px; font-weight: 800; letter-spacing: 0.15em; }

/* ── 입력 제한시간 바 ── */
#timer {
  width: min(76vw, 356px);
  height: 8px;
  border-radius: 999px;
  background: #232c47;
  overflow: hidden;
}

#timer-fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: #22c55e;
}

#timer-fill.urgent { background: #ef4444; }

#pads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pad {
  width: min(38vw, 170px);
  height: min(38vw, 170px);
  border-radius: 24px;
  background: var(--c);
  opacity: 0.35;
  transition: opacity 0.1s ease, transform 0.1s ease;
  padding: 0;
}

.pad.lit {
  opacity: 1;
  transform: scale(1.04);
  box-shadow: 0 0 34px var(--c);
}

.pad:active { transform: scale(0.96); }

#pads.locked .pad { pointer-events: none; }

#hint-line { font-size: 15px; color: #8b96b8; min-height: 20px; }

#btn-replay {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #232c47;
  color: #ffd54a;
}

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

.hint { font-size: 17px; color: #aab4d4; line-height: 1.6; }
.hint .accent { color: #22c55e; font-weight: 700; }
