html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
  overflow: hidden;
}

/* KARTTA */
#map {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.leaflet-container,
.leaflet-pane {
  z-index: 1 !important;
}

/* HUD */
#hud {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  z-index: 99999;
}

#cameraBtn {
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  background: #ffcc00;
  font-weight: 600;
}

#cameraBtn:disabled {
  background: #777;
  color: #ccc;
}

/* KAMERA */
#cameraContainer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  z-index: 100000;
}

#cameraView {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hahmo ruudun keskellä */
#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100001;
  display: none;
}

#collectBtn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background: #00cc66;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  color: white;
  z-index: 100002;
}

#closeCameraBtn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  z-index: 100002;
}

/* LOPPUNÄKYMÄ */
#endScreen {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  color: white;
  z-index: 200000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#endContent {
  text-align: center;
  animation: pop 0.5s ease-out;
}

/* ETUSIVU */
#startScreen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  color: white;
  z-index: 300000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#startContent {
  text-align: center;
  animation: pop 0.5s ease-out;
}

#playerNameInput {
  padding: 10px;
  width: 200px;
  font-size: 18px;
  border-radius: 6px;
  border: none;
  margin-top: 10px;
  margin-bottom: 15px;
}

#startBtn {
  padding: 10px 20px;
  background: #00cc66;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  color: white;
}

/* POP-ANIMAATIO */
@keyframes pop {
  0% { transform: translate(-50%, -50%) scale(0.1); opacity: 0; }
  60% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
