body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url("img/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.game-container {
  text-align: center;
  color: #fff;
}

h1 {
  margin-bottom: 20px;
  color: #ff4081;
  text-shadow: 2px 2px 5px #000;
}

.circle {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  border-radius: 50%;
}

#bottle {
  width: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 3s ease-out;
}

.player {
  position: absolute;
  width: 80px;
  text-align: center;
  font-weight: bold;
  color: yellow;
  transform: rotate(calc(var(--i) * 30deg)) translate(180px) rotate(calc(var(--i) * -30deg));
}

button {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background: #ff4081;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

button:hover {
  background: #e73370;
}

#result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}