/* 컬러 헌트 전용 스타일 */
#board {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #eef2ff;
}

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

#timer {
  width: min(80vw, 380px);
  height: 8px;
  border-radius: 999px;
  background: #232c47;
  overflow: hidden;
}

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

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

#grid {
  display: grid;
  gap: 6px;
  width: min(86vw, 400px);
  height: min(86vw, 400px);
}

#grid.shake { animation: gridshake 0.3s ease; }

@keyframes gridshake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.tile {
  border-radius: 12px;
  padding: 0;
  transition: transform 0.06s ease;
}

.tile:active { transform: scale(0.94); }

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

#ready h1 {
  font-size: clamp(40px, 12vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f472b6, #4aa8ff);
  -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: #f472b6; font-weight: 700; }
