@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');

body {
  background: #000;
  color: #ff69b4;
  font-family: 'Cherry Bomb One', monospace;
  padding: 30px;
  text-align: center;
}

.title {
  font-size: 36px;
  margin-bottom: 0;
}

.artist {
  font-size: 18px;
  margin-top: 4px;
  margin-bottom: 20px;
  color: #ff9ad5;
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

#timer {
  font-size: 18px;
}

button {
  background: #ff69b4;
  color: #000;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  font-family: inherit;
}

#guessInput {
  display: block;
  margin: 0 auto 20px auto;
  padding: 10px;
  font-size: 16px;
  background: #111;
  color: #ff69b4;
  border: 2px solid #ff69b4;
}

#progress {
  margin-bottom: 15px;
}

/* ---- CENTERED GRID LAYOUT ---- */
.center-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.side-box {
  width: 150px;
  height: 400px;
  border: 2px dashed #ff69b4;
  border-radius: 8px;
}

#lyrics-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- LYRICS GRID ---- */
.line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
}

.word-box {
  padding: 6px 10px;
  border: 2px solid #ff69b4;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}

.hidden {
  color: transparent;
}

.hidden::after {
  content: "";
  display: block;
  margin-top: 6px;
  border-bottom: 2px solid #ff69b4;
}

.revealed {
  color: #ff69b4;
}
