/* StartScreen component styles */
.start-screen {
  position: fixed;
  flex-direction: column;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(20, 20, 20, 0.7);
  display: flex;
  justify-content: flex-start; /* Changed from center to flex-start */
  align-items: center;
  z-index: 1000;
}

.menu-container {
  height: 312px;
  width: 90%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

.menu-container canvas {
  border: none !important;
  height: 312px;
}

.game-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

.upcoming-text {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 10px;
  color: #888;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* Specific styles for start screen tank canvas */
.start-screen-tank-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background-color: transparent;
}

.start-screen-button {
  margin-bottom: 15px;
}