.wheel-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}
.wheel-section .roue-test-wrapper {
  text-align: center;
  margin: 50px auto;
  max-width: 600px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.wheel-section .roue-test-wrapper .roue-zone {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.wheel-section .roue-test-wrapper .roue-zone #svg-wheel {
  display: block;
  margin: 0 auto;
  transform-origin: center center;
}
.wheel-section .roue-test-wrapper .roue-zone .svg-pointer {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 25px solid black;
  z-index: 10;
}
.wheel-section .roue-test-wrapper #svg-spin-btn {
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 18px;
  background: #e30613;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.wheel-section .roue-test-wrapper #svg-spin-btn:hover {
  background: #d81b60;
}
.wheel-section .roue-test-wrapper #svg-wheel-result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  min-height: 30px;
}

@keyframes pointer-bounce {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) rotate(-15deg);
  }
}
.pointer-active {
  animation: pointer-bounce 0.1s ease-in-out infinite;
}

button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto;
}
