body {
  margin: 0;
  text-align: center;
  background: url("images/bg.png") no-repeat center 30%;
  background-size: cover;
  color: white;
}

.gachaWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

#gachaBtn {
  width: 180px;
  cursor: pointer;
}

#gachaBtn:active {
  transform: scale(0.95);
}

#ticketDisplay {
  font-size: 22px;
  color: yellow;
  font-weight: bold;
}

#result img {
  width: 180px;
  margin-top: 20px;
}

.spinning {
  width: 120px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
