:root {
  --orange-1: #ff8a00;
  --orange-2: #ff5a00;
  --orange-3: #d94300;
  --cream: #fff8f0;
  --ink: #221b18;
  --muted: #786a63;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(137, 55, 0, 0.18);
}

* { box-sizing: border-box; }

html { min-height: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .95) 0 8%, transparent 25%),
    radial-gradient(circle at 90% 15%, rgba(255, 208, 155, .7) 0 5%, transparent 24%),
    linear-gradient(145deg, #fffaf4 0%, #ffe7cc 50%, #ffd0a1 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .4;
}

body::before { top: -140px; left: -130px; background: #ff9d3d; }
body::after { right: -170px; bottom: -170px; background: #ff6a00; }

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

#confettiCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1200;
}

.page-shell {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  margin-bottom: 18px;
  user-select: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 15px;
  color: var(--orange-2);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 25px rgba(170,67,0,.17);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { font-size: clamp(1.45rem, 5vw, 2rem); font-weight: 700; letter-spacing: -1px; }
.brand-copy strong { color: var(--orange-2); font-weight: 800; }

.game-card {
  position: relative;
  width: 100%;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 32px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-1), var(--orange-2), #ffc05c);
}

.intro { text-align: center; }
.eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  color: #a23b00;
  background: #fff0df;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro h1 { margin: 12px 0 5px; font-size: clamp(2rem, 7vw, 3.2rem); line-height: 1.05; letter-spacing: -2px; }
.intro p { margin: 0; color: var(--muted); font-size: .95rem; }

.name-field { width: min(100%, 460px); margin: 24px auto 10px; }
.name-field label { display: block; margin: 0 0 8px 4px; font-size: .84rem; font-weight: 600; }
.name-field label span { color: #978982; font-weight: 400; }
.name-field input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1.5px solid #ead9cb;
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.name-field input:focus { border-color: var(--orange-1); box-shadow: 0 0 0 5px rgba(255,106,0,.12); transform: translateY(-1px); }

.wheel-area { display: flex; flex-direction: column; align-items: center; }
.wheel-stage {
  position: relative;
  width: min(88vw, 510px);
  aspect-ratio: 1;
  margin: 40px auto 25px;
  display: grid;
  place-items: center;
}

.wheel-frame {
  width: 100%;
  height: 100%;
  padding: clamp(8px, 2vw, 13px);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #ffd19b 45%, #ff7b00 100%);
  box-shadow: 0 24px 45px rgba(151,63,0,.25), inset 0 2px 6px rgba(255,255,255,.9);
}

.wheel-frame::after {
  content: "";
  position: absolute;
  inset: 3.5%;
  pointer-events: none;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 5px rgba(127,45,0,.12);
}

.wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from -20deg,
    #ff6a00 0deg 40deg,
    #fff7ec 40deg 80deg,
    #ff9b22 80deg 120deg,
    #fff7ec 120deg 160deg,
    #ff6a00 160deg 200deg,
    #fff7ec 200deg 240deg,
    #ff9b22 240deg 280deg,
    #fff7ec 280deg 320deg,
    #ff6a00 320deg 360deg
  );
  box-shadow: inset 0 0 30px rgba(112,38,0,.18);
  will-change: transform;
  transform: rotate(0deg);
}

.wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(255,255,255,.35), transparent 26%);
  pointer-events: none;
}

.wheel-numbers { position: absolute; inset: 0; }
.wheel-number {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin: -24px;
  display: grid;
  place-items: center;
  font-size: clamp(1.4rem, 5vw, 2.35rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 5px rgba(88,25,0,.25);
}
.wheel-number.light { color: var(--orange-3); text-shadow: none; }

.wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 22%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 3;
  border: clamp(5px, 1.4vw, 9px) solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-1), var(--orange-3));
  box-shadow: 0 8px 24px rgba(109,35,0,.35), inset 0 2px 4px rgba(255,255,255,.35);
}
.wheel-center span { color: #fff; font-size: clamp(1.1rem, 4vw, 2rem); font-weight: 800; letter-spacing: -1px; }

.pointer {
  position: absolute;
  z-index: 10;
  top: -20px;
  left: 50%;
  width: clamp(42px, 11vw, 62px);
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 8px rgba(103,32,0,.32));
}
.pointer svg { position: relative; width: 100%; fill: var(--orange-3); }
.pointer-glow { position: absolute; inset: -8px; border-radius: 50%; background: rgba(255,120,0,.35); filter: blur(12px); animation: pulse 1.8s infinite; }

@keyframes pulse { 50% { transform: scale(1.18); opacity: .55; } }

.spin-button {
  position: relative;
  isolation: isolate;
  min-width: min(100%, 320px);
  height: 64px;
  padding: 0 26px;
  border: 0;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2) 62%, #e54800);
  box-shadow: 0 14px 28px rgba(228,74,0,.32), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.spin-button:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(228,74,0,.37); }
.spin-button:active { transform: translateY(0) scale(.99); }
.spin-button:disabled { cursor: not-allowed; filter: grayscale(.25); opacity: .72; transform: none; }
.button-label { font-weight: 800; letter-spacing: .08em; font-size: 1.05rem; }
.button-icon { font-size: 1.4rem; transition: transform .2s; }
.spin-button:hover .button-icon { transform: translateX(4px); }
.button-shine {
  position: absolute;
  z-index: -1;
  top: -120%;
  left: -25%;
  width: 30%;
  height: 350%;
  background: rgba(255,255,255,.28);
  transform: rotate(25deg);
  animation: shine 3s infinite;
}
@keyframes shine { 0%, 60% { left: -35%; } 100% { left: 130%; } }

.status-text { min-height: 23px; margin: 13px 0 0; color: var(--muted); text-align: center; font-size: .82rem; }
.status-text.error { color: #b42318; font-weight: 600; }

footer { margin-top: auto; padding: 18px 0 0; text-align: center; color: #8c7567; font-size: .75rem; }
footer a { color: var(--orange-3); font-weight: 700; text-decoration: none; }

.loading-overlay,
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.loading-overlay.show,
.modal.show { opacity: 1; visibility: visible; }

.loading-overlay { background: rgba(45,22,10,.52); backdrop-filter: blur(8px); }
.loader-card {
  width: min(100%, 330px);
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.loader-card strong { font-size: 1rem; }
.loader-card span { color: var(--muted); font-size: .78rem; }
.loader-ring {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  border: 5px solid #ffe1c4;
  border-top-color: var(--orange-2);
  border-radius: 50%;
  animation: loaderSpin .8s linear infinite;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

.modal { overflow-y: auto; align-items: start; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(43,21,10,.68); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  margin: max(18px, env(safe-area-inset-top)) auto max(18px, env(safe-area-inset-bottom));
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(165deg, #fff 0%, #fff9f2 100%);
  box-shadow: 0 35px 90px rgba(44,18,0,.38);
  transform: translateY(20px) scale(.96);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.modal.show .modal-card { transform: translateY(0) scale(1); }
.modal-close-x {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #7d675c;
  background: #f7eee7;
  font-size: 1.6rem;
  line-height: 1;
}
.win-badge { font-size: 3rem; animation: winPop .65s cubic-bezier(.2,1.5,.4,1); }
@keyframes winPop { from { transform: scale(0) rotate(-18deg); } to { transform: scale(1) rotate(0); } }
.congrats { margin: 5px 0 0; color: var(--orange-2); font-weight: 800; letter-spacing: .08em; }
.modal h2 { margin: 3px 0 19px; font-size: clamp(1.35rem, 5vw, 2rem); }

.coupon-box {
  position: relative;
  padding: 25px 18px;
  border: 2px dashed rgba(255,255,255,.82);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #ff8a00, #ff5a00 64%, #c73d00);
  box-shadow: 0 18px 34px rgba(218,70,0,.27), inset 0 1px 0 rgba(255,255,255,.3);
}
.coupon-box small { display: block; opacity: .84; font-weight: 600; letter-spacing: .14em; }
.coupon-box strong { display: block; margin-top: 6px; overflow-wrap: anywhere; font-size: clamp(1.8rem, 8vw, 3.15rem); letter-spacing: .05em; line-height: 1.2; }
.coupon-business { display: block; margin-top: 8px; font-size: .84rem; font-weight: 600; opacity: .9; }
.coupon-business:empty { display: none; }
.coupon-cut { position: absolute; top: 50%; width: 24px; height: 24px; border-radius: 50%; background: #fffaf5; transform: translateY(-50%); }
.coupon-cut-left { left: -14px; }
.coupon-cut-right { right: -14px; }

.copy-button,
.close-button {
  width: 100%;
  height: 52px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.copy-button { margin-top: 16px; border: 0; color: #fff; background: #241d19; box-shadow: 0 10px 22px rgba(25,18,14,.18); }
.copy-button:hover, .close-button:hover { transform: translateY(-2px); }
.copy-status { min-height: 23px; margin: 8px 0 0; color: #15803d; font-size: .82rem; font-weight: 600; }

.claim-section { margin-top: 21px; padding-top: 21px; border-top: 1px solid #f0dfd2; }
.claim-section h3 { margin: 0 0 6px; font-size: 1.17rem; }
.claim-section > p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.social-grid { margin: 18px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.social-button {
  min-height: 50px;
  padding: 10px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(35,22,15,.13);
  transition: transform .2s, filter .2s;
}
.social-button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.whatsapp { background: linear-gradient(135deg, #22c55e, #079447); }
.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045); }
.facebook { background: linear-gradient(135deg, #1877f2, #0759c7); }
.youtube { background: linear-gradient(135deg, #ff1f1f, #c70000); }

.send-code { padding: 15px; border: 1px solid #ffd9b6; border-radius: 15px; background: #fff1e3; }
.send-code span { display: block; color: #8d4b22; font-size: .76rem; }
.send-code strong { display: block; margin-top: 3px; color: var(--orange-3); overflow-wrap: anywhere; font-size: 1.35rem; letter-spacing: .05em; }
.close-button { margin-top: 17px; border: 1px solid #e8d7ca; color: #5b4940; background: #fff; }

@media (max-width: 560px) {
  .page-shell { padding-inline: 12px; }
  .game-card { border-radius: 25px; }
  .wheel-stage { width: min(86vw, 420px); margin-top: 35px; }
  .pointer { top: -14px; }
  .social-grid { grid-template-columns: 1fr; }
  .modal-card { border-radius: 24px; }
}

@media (max-width: 360px) {
  .wheel-stage { width: 84vw; }
  .intro h1 { font-size: 1.8rem; }
  .spin-button { height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* GroDeals brand and new player/sponsor sections */
:root {
  --orange-1: #2b63f5;
  --orange-2: #2457f5;
  --orange-3: #08255f;
  --cream: #f4f9ff;
  --ink: #031b4e;
  --muted: #58709d;
  --glass: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(11, 55, 137, 0.17);
}

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.98) 0 8%, transparent 25%),
    radial-gradient(circle at 90% 15%, rgba(39,182,230,.22) 0 5%, transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #eff8ff 52%, #dbeeff 100%);
}
body::before { background: #2b63f5; }
body::after { background: #27b6e6; }

.brand-logo-link { display: inline-flex; justify-content: center; }
.brand-logo { width: clamp(150px, 32vw, 230px); height: auto; display: block; }
.game-card::before { background: linear-gradient(90deg, #2457f5, #27b6e6, #031b4e); }
.eyebrow { color: #174bc8; background: #eaf2ff; }

.player-fields {
  width: min(100%, 520px);
  margin: 24px auto 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.input-field label { display: block; margin: 0 0 8px 4px; font-size: .84rem; font-weight: 600; }
.input-field label span { color: #7f91b3; font-weight: 400; }
.input-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid #cddcf3;
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.input-field input:focus { border-color: #2457f5; box-shadow: 0 0 0 5px rgba(36,87,245,.12); transform: translateY(-1px); }

.wheel-frame { background: linear-gradient(145deg, #fff, #aeeeff 42%, #2457f5 100%); box-shadow: 0 24px 45px rgba(11,55,137,.24), inset 0 2px 6px rgba(255,255,255,.9); }
.wheel {
  background: conic-gradient(from -20deg,
    #2457f5 0deg 40deg, #fff 40deg 80deg,
    #27b6e6 80deg 120deg, #fff 120deg 160deg,
    #2457f5 160deg 200deg, #fff 200deg 240deg,
    #27b6e6 240deg 280deg, #fff 280deg 320deg,
    #2457f5 320deg 360deg);
}
.wheel-number.light { color: #08255f; }
.wheel-center { background: linear-gradient(145deg, #27b6e6, #2457f5 65%, #08255f); }
.pointer svg { fill: #2457f5; }
.pointer-glow { background: rgba(39,182,230,.4); }
.spin-button { background: linear-gradient(135deg, #2b63f5, #2457f5 60%, #08255f); box-shadow: 0 14px 28px rgba(36,87,245,.3), inset 0 1px 0 rgba(255,255,255,.4); }
footer a { color: #2457f5; }

.sponsor-section {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(36,87,245,.12);
  border-radius: 26px;
  text-align: center;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 40px rgba(11,55,137,.1);
  backdrop-filter: blur(14px);
}
.sponsor-section[hidden] { display: none; }
.sponsor-kicker { margin: 0; color: #27a4d2; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sponsor-section h2 { margin: 4px 0 16px; color: #031b4e; font-size: 1.25rem; }
.sponsor-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.sponsor-item {
  min-width: 118px;
  min-height: 66px;
  padding: 10px 16px;
  border: 1px solid #dce7f8;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #08255f;
  background: #fff;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(11,55,137,.08);
  transition: transform .2s, box-shadow .2s;
}
.sponsor-item:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(11,55,137,.14); }
.sponsor-item img { display: block; max-width: 130px; max-height: 52px; object-fit: contain; }

@media (max-width: 560px) {
  .player-fields { grid-template-columns: 1fr; gap: 12px; }
  .sponsor-item { min-width: 105px; flex: 1 1 42%; }
}

/* Desktop and modal scrolling fixes */
.modal {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
}

.modal-card {
  width: min(100%, 570px);
  max-height: calc(100dvh - 32px);
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.modal-close-x {
  position: sticky;
  top: 0;
  float: right;
  z-index: 5;
  margin: -10px -10px -38px 0;
}

.social-button > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.social-button strong,
.social-button small {
  display: block;
}

.social-button small {
  margin-top: 3px;
  font-size: .67rem;
  font-weight: 500;
  opacity: .92;
  overflow-wrap: anywhere;
}

@media (min-width: 900px) {
  .page-shell {
    width: min(100%, 900px);
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .brand-logo {
    width: clamp(180px, 22vw, 230px);
  }

  .game-card {
    padding: 34px 54px 42px;
  }

  .wheel-stage {
    width: min(58vw, 500px);
  }
}

@media (max-height: 760px) and (min-width: 700px) {
  .modal-card {
    padding: 22px 34px 28px;
  }

  .win-badge {
    font-size: 2.25rem;
  }

  .modal h2 {
    margin-bottom: 12px;
  }

  .coupon-box {
    padding: 18px 16px;
  }

  .claim-section {
    margin-top: 14px;
    padding-top: 14px;
  }

  .social-grid {
    margin: 12px 0;
  }
}

@media (max-width: 560px) {
  .brand-logo { width: clamp(145px, 48vw, 190px); }
  .brand { margin-bottom: 12px; }
}

/* Center-mounted spin control */
.wheel-frame {
  position: relative;
}

.wheel-center.spin-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 12;
  width: clamp(92px, 24%, 138px);
  min-width: 0;
  height: auto;
  aspect-ratio: 1;
  padding: 0;
  transform: translate(-50%, -50%);
  border: clamp(6px, 1.3vw, 10px) solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  overflow: hidden;
  color: #08255f;
  background: linear-gradient(145deg, #fff3a7 0%, #ffd75a 38%, #ffb52e 100%);
  box-shadow:
    0 10px 0 #d99a16,
    0 18px 34px rgba(8, 37, 95, .32),
    inset 0 3px 7px rgba(255, 255, 255, .75),
    inset 0 -5px 10px rgba(226, 139, 0, .22);
  isolation: isolate;
  cursor: pointer;
  touch-action: manipulation;
}

.wheel-center.spin-button::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
}

.wheel-center.spin-button .button-label {
  position: relative;
  z-index: 2;
  font-size: clamp(1.15rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .75);
}

.wheel-center.spin-button .button-shine {
  z-index: 1;
  top: -80%;
  left: -55%;
  width: 42%;
  height: 260%;
  background: rgba(255, 255, 255, .48);
  pointer-events: none;
}

.wheel-center.spin-button:hover {
  transform: translate(-50%, -52%) scale(1.035);
  box-shadow:
    0 11px 0 #d99a16,
    0 22px 38px rgba(8, 37, 95, .36),
    inset 0 3px 7px rgba(255, 255, 255, .8),
    inset 0 -5px 10px rgba(226, 139, 0, .22);
}

.wheel-center.spin-button:active {
  transform: translate(-50%, -47%) scale(.98);
  box-shadow:
    0 4px 0 #d99a16,
    0 10px 20px rgba(8, 37, 95, .3),
    inset 0 3px 7px rgba(255, 255, 255, .8);
}

.wheel-center.spin-button:focus-visible {
  outline: 4px solid rgba(43, 99, 245, .34);
  outline-offset: 5px;
}

.wheel-center.spin-button:disabled {
  cursor: wait;
  opacity: .8;
  filter: saturate(.7);
  transform: translate(-50%, -50%);
}

@media (max-width: 520px) {
  .wheel-center.spin-button {
    width: clamp(82px, 25%, 108px);
    border-width: 6px;
    box-shadow:
      0 7px 0 #d99a16,
      0 14px 24px rgba(8, 37, 95, .3),
      inset 0 3px 7px rgba(255, 255, 255, .75);
  }
}
