body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

#controls-wrapper {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10000;
}

#camera-controls,
#target-controls {
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#camera-controls {
  border: 1px solid #888;
}

#target-controls {
  border: 1px dashed #888;
}

button {
  margin: 2px;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
}

#countdown-overlay {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  pointer-events: none;
}

#countdown-number {
  font-size: 48px;
  font-weight: bold;
  color: #ff4444;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: Arial, sans-serif;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.countdown-complete {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
