
.game-title {
  text-align: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.2rem;
  color: #FFD700;
  text-shadow: 3px 3px 0 #8B6914, -1px -1px 0 #3D2B00;
  margin-bottom: 20px;
}

.game-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#game-canvas {
  position: relative;
  overflow: hidden;
}

#game-canvas canvas {
  cursor: none;
}

.fullscreen-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.fullscreen-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: #3D7A33;
  border: 3px solid #2D5A27;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.fullscreen-btn:hover {
  background: #4CAF50;
  transform: translateY(-2px);
}

.fullscreen-btn:active {
  transform: translateY(0);
}

.fullscreen-icon {
  width: 18px;
  height: 18px;
}



@media (max-width: 600px) {
}
