.spur {
  --wood: #6b3a1e;
  --dust: #c4a06a;
  --star: #e8d7a3;
  background:
    repeating-linear-gradient(90deg, #5a3018 0 12px, #6b3a1e 12px 24px);
  padding: 20px 16px 28px;
  color: #f4ead8;
}

.spur__wheel-wrap {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto 20px;
  aspect-ratio: 1;
}

.spur__wheel-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(6px 6px 0 #14161c);
}

.spur__pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #ff5348;
  z-index: 2;
  filter: drop-shadow(2px 2px 0 #14161c);
}

.spur__bets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 16px;
}

.spur__bets button {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 3px solid #14161c;
  background: #e8d7a3;
  color: #14161c;
  padding: 12px 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #14161c;
}

.spur__bets button[aria-pressed="true"] {
  background: #ff5348;
  color: #fff;
}

.spur__bets button:disabled { opacity: 0.5; cursor: not-allowed; }

.spur h2 {
  text-align: center;
  color: #f4ead8;
  margin: 0 0 12px;
  font-size: 1.6rem;
}
