.wheel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 1 / 1;
}

.wheel-container.slide-in {
  animation: wheel-slide-in 0.35s ease;
}

@keyframes wheel-slide-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

#wheel-canvas {
  filter: drop-shadow(0 0 24px rgba(255, 215, 0, 0.25));
}

.pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
  z-index: 5;
}

.btn-stop {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-1), var(--red-2));
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 30px rgba(255, 23, 68, 0.5);
  animation: stop-pulse 1s ease-in-out infinite;
}

@keyframes stop-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.current-name {
  min-height: 1.3em;
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 12px;
}

.current-name.pop {
  animation: current-name-pop 0.28s ease;
}

@keyframes current-name-pop {
  0% { transform: scale(1.4); opacity: 0.35; }
  100% { transform: scale(1); opacity: 1; }
}

.shake {
  animation: wheel-shake 0.5s ease;
}

@keyframes wheel-shake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4px, 2px); }
  40% { transform: translate(4px, -2px); }
  60% { transform: translate(-3px, 1px); }
  80% { transform: translate(3px, -1px); }
}
