body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #222;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
#splash-screen {
  text-align: center;
}
#splash-animation {
  width: 200px;
  height: 200px;
  margin: 40px auto;
  background: #444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
#login-buttons button {
  margin: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #3a3a3a;
  color: #fff;
  transition: background 0.2s;
}
#login-buttons button:hover {
  background: #5a5a5a;
}
#game-screen {
  text-align: center;
  margin-top: 40px;
}
#street-view-placeholder {
  width: 600px;
  height: 400px;
  margin: 0 auto 20px auto;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
}
#game-ui {
  margin-top: 20px;
} 