#rcg-rocket {
  width: 40px;
  height: 80px;
  background: url('rocket.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.3s ease-in-out;
}

#rcg-bar-container {
  width: 100%;
  height: 10px;
  background: #eee;
  margin-top: 10px;
  position: relative;
}

#rcg-bar-progress {
  height: 100%;
  width: 0;
  background: #4caf50;
  transition: width 0.3s ease;
}

#rcg-game {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: 1px solid #ccc;
  padding-top: 100px;
  margin-bottom: 2rem;
}

#rcg-multiplier {
  font-weight: bold;
  font-size: 1.5rem;
  color: #222;
  text-align: center;
  margin-bottom: 1rem;
}

#rcg-result {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}

#rcg-start,
#rcg-cashout {
  margin: 5px auto;
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}