/* ... keep everything from before, just add/replace these */

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.screen.active {
  opacity: 1;
  pointer-events: all;
}

.logo {
  font-size: 8rem;
  margin: 1rem 0;
  color: #f7931a;
}

.instructions {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

.btn.start {
  background: #f7931a;
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  margin: 2rem 0;
  box-shadow: 0 0 25px rgba(247,147,26,0.6);
}

.highscore-display {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f7931a;
}

.prices {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.price-box {
  text-align: center;
}

.price {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.price.locked { color: #888; }
.price.live   { color: #f7931a; font-size: 3.2rem; }

.timer {
  font-size: 5rem;
  margin: 1rem 0 1.5rem;
}