/* welcome.css */
#welcomeScreen {
  position: fixed;
  inset: 0;
  background-color: #18222d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: scaleIn 0.6s ease-out;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#welcomeScreen .game-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #3390ec;
  text-align: center;
}

#welcomeScreen .logo-placeholder {
  width: 100px;
  height: 100px;
  background: #333;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888;
}

#welcomeScreen .high-score-text {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 16px;
}

#welcomeScreen #startButton {
  padding: 12px 24px;
  font-size: 18px;
  background: #3390ec;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 2px 8px #3390ecaa;
}

#welcomeScreen #startButton:hover {
  background: #4ca0ff;
}
