.spin-page {
  --spin-bg-top: #28112f;
  --spin-bg-mid: #2a1640;
  --spin-bg-bottom: #130b20;
  --spin-accent-1: #ff5abf;
  --spin-accent-2: #ffb84f;
  --spin-accent-3: #6ac6ff;
  --spin-surface-top: rgba(255, 255, 255, 0.1);
  --spin-surface-bottom: rgba(255, 255, 255, 0.05);
  --spin-kicker-bg: rgba(255, 116, 172, 0.16);
  --spin-kicker-text: #ffd6eb;
  --spin-kicker-border: rgba(255, 176, 214, 0.32);
  --spin-heading: #fff7fc;
  --spin-body: #f7f4ff;
  --spin-muted: rgba(246, 238, 255, 0.78);
  --spin-input-bg: rgba(255, 255, 255, 0.08);
  --spin-card-border: rgba(255, 255, 255, 0.14);
  --spin-wheel-ring: rgba(255, 111, 196, 0.5);
  min-height: calc(100vh - 120px);
  background:
    radial-gradient(circle at 20% 12%, var(--spin-accent-1), transparent 24%),
    radial-gradient(circle at 82% 18%, var(--spin-accent-3), transparent 26%),
    radial-gradient(circle at 50% 68%, var(--spin-accent-2), transparent 28%),
    linear-gradient(180deg, var(--spin-bg-top) 0%, var(--spin-bg-mid) 42%, var(--spin-bg-bottom) 100%);
  color: var(--spin-body);
}

.spin-page[data-theme="sunset_pop"] {
  --spin-bg-top: #2d1231;
  --spin-bg-mid: #25163f;
  --spin-bg-bottom: #110b1f;
  --spin-accent-1: #ff5abf;
  --spin-accent-2: #ffbf47;
  --spin-accent-3: #7ed4ff;
  --spin-heading: #fff6fb;
}

.spin-page[data-theme="neon_night"] {
  --spin-bg-top: #0f0720;
  --spin-bg-mid: #120826;
  --spin-bg-bottom: #0a0615;
  --spin-accent-1: #ff4ed0;
  --spin-accent-2: #8a4cff;
  --spin-accent-3: #46b7ff;
  --spin-kicker-bg: rgba(255, 86, 194, 0.13);
  --spin-kicker-text: #ffa2e4;
  --spin-kicker-border: rgba(255, 134, 214, 0.28);
}

.spin-page[data-theme="ocean_glow"] {
  --spin-bg-top: #071d2d;
  --spin-bg-mid: #0b2135;
  --spin-bg-bottom: #07131f;
  --spin-accent-1: #34d8ff;
  --spin-accent-2: #0fd3a0;
  --spin-accent-3: #7fc0ff;
  --spin-kicker-bg: rgba(71, 201, 255, 0.16);
  --spin-kicker-text: #d4fbff;
  --spin-kicker-border: rgba(117, 218, 255, 0.3);
  --spin-heading: #effcff;
}

.spin-page .text-muted {
  color: var(--spin-muted) !important;
}

.spin-page h1,
.spin-page h2,
.spin-page h3,
.spin-page h4 {
  color: var(--spin-heading);
}

.spin-hero-card,
.spin-surface-card,
.spin-live-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--spin-card-border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, var(--spin-surface-top), var(--spin-surface-bottom)),
    radial-gradient(circle at top, var(--spin-accent-1), transparent 32%),
    rgba(12, 7, 29, 0.92);
  box-shadow:
    0 22px 70px rgba(5, 3, 12, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.spin-hero-card,
.spin-live-card {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.spin-surface-card {
  padding: 1.2rem;
}

.spin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  background: var(--spin-kicker-bg);
  color: var(--spin-kicker-text);
  border: 1px solid var(--spin-kicker-border);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.36rem 0.68rem;
}

.spin-hero-card h1 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(2.15rem, 5.6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 18px rgba(255, 101, 194, 0.32),
    0 0 32px rgba(78, 187, 255, 0.24);
}

.spin-hero-card p {
  max-width: 760px;
  font-size: 1.02rem;
}

.spin-game-type {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #78d4ff;
  margin-bottom: 0.4rem;
}

.spin-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--spin-accent-1), var(--spin-accent-3));
  box-shadow: 0 10px 26px rgba(255, 72, 207, 0.3);
}

.btn-spin-primary,
.btn-spin-secondary,
.btn-spin-cta {
  border: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-spin-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--spin-accent-1), var(--spin-accent-2));
  box-shadow: 0 12px 28px rgba(211, 55, 210, 0.35);
}

.btn-spin-primary:hover {
  color: #fff;
  filter: brightness(1.04);
}

.btn-spin-secondary {
  color: #eef6ff;
  border: 1px solid rgba(119, 198, 255, 0.34);
  background: linear-gradient(135deg, rgba(56, 112, 255, 0.22), rgba(42, 196, 255, 0.16));
}

.btn-spin-secondary:hover {
  color: #fff;
  border-color: rgba(159, 221, 255, 0.56);
}

.spin-input,
.spin-page .form-control,
.spin-page .form-select {
  border-radius: 16px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--spin-input-bg);
  color: #fff;
}

.spin-page .form-control::placeholder {
  color: rgba(245, 240, 255, 0.54);
}

.spin-page .form-select option,
.spin-page .form-select optgroup {
  color: #181027;
  background: #fff8fd;
}

.spin-page .form-label,
.spin-page .form-check-label {
  color: var(--spin-heading);
  font-weight: 700;
}

.spin-page .form-text {
  color: var(--spin-muted) !important;
}

.spin-check {
  padding: 0.9rem 1rem 0.9rem 2.3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.spin-textarea {
  min-height: 180px;
  resize: vertical;
}

.spin-page .form-control:focus,
.spin-page .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(129, 195, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(82, 162, 255, 0.16);
}

.spin-page .form-control-color {
  padding: 0.35rem;
}

.spin-list-group .list-group-item {
  color: #f6f2ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.spin-theme-preview {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 92px;
  border-radius: 18px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.13), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.spin-theme-preview[data-theme="sunset_pop"] {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 175, 214, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(255, 90, 191, 0.25), rgba(255, 191, 71, 0.16));
}

.spin-theme-preview[data-theme="neon_night"] {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 78, 208, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(138, 76, 255, 0.22), rgba(70, 183, 255, 0.14));
}

.spin-theme-preview[data-theme="ocean_glow"] {
  background:
    radial-gradient(circle at 18% 16%, rgba(52, 216, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(15, 211, 160, 0.2), rgba(127, 192, 255, 0.14));
}

.spin-theme-preview strong {
  color: var(--spin-heading);
}

.spin-theme-preview span {
  color: var(--spin-muted);
  font-size: 0.88rem;
}

.spin-theme-preview.is-active {
  box-shadow: 0 0 0 2px rgba(140, 216, 255, 0.34);
}

.spin-mode-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 120px;
  border-radius: 20px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.spin-mode-card strong {
  color: var(--spin-heading);
}

.spin-mode-card p,
.spin-mode-card span {
  color: var(--spin-muted);
  margin: 0;
}

.spin-default-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.spin-default-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fef8ff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spin-form-card {
  max-width: 640px;
}

.spin-segment-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
}

.spin-segment-dot {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.32);
}

.spin-join-link {
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-size: 0.93rem;
  color: #ddf2ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  word-break: break-all;
}

.spin-live-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.spin-live-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.spin-badge,
.spin-mode-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 38px;
  padding: 0.45rem 0.78rem;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spin-mode-pill {
  color: #ffd97f;
}

.spin-disclosure {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.spin-disclosure[open] {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.spin-disclosure summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
}

.spin-disclosure summary::-webkit-details-marker {
  display: none;
}

.spin-disclosure-title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--spin-heading);
  font-weight: 800;
}

.spin-disclosure-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.spin-disclosure-text small {
  color: var(--spin-muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.spin-disclosure-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  color: #ffe8f9;
  background: linear-gradient(135deg, rgba(255, 91, 178, 0.3), rgba(67, 187, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(255, 87, 177, 0.14);
}

.spin-disclosure-chevron {
  color: var(--spin-muted);
  transition: transform 0.2s ease;
}

.spin-disclosure[open] .spin-disclosure-chevron {
  transform: rotate(180deg);
}

.spin-disclosure-body {
  padding: 0 1rem 1rem;
}

.spin-disclosure-meta {
  color: var(--spin-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.spin-wheel-stage {
  position: relative;
  padding-top: 0.5rem;
}

.spin-wheel-shell {
  position: relative;
  --spin-light-radius: 0px;
  width: min(100%, 720px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  padding: 1.1rem;
  background:
    radial-gradient(circle at center, rgba(255, 99, 199, 0.16), transparent 55%),
    linear-gradient(180deg, var(--spin-accent-1), rgba(55, 25, 87, 0.8));
  box-shadow:
    0 0 0 1px rgba(255, 171, 235, 0.22),
    0 0 32px rgba(255, 65, 197, 0.22),
    0 24px 55px rgba(10, 6, 23, 0.6);
}

.spin-wheel-glow {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.08),
    0 0 42px rgba(255, 92, 200, 0.28);
  pointer-events: none;
}

.spin-wheel-lights {
  position: absolute;
  inset: -2.8%;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.spin-wheel-light {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7dd 0%, #ffd66e 42%, #ff72da 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 0 12px rgba(255, 209, 93, 0.65),
    0 0 22px rgba(255, 98, 196, 0.4);
  transform: rotate(calc(var(--light-index) * 20deg)) translateY(calc(-1 * var(--spin-light-radius)));
  animation: spinWheelBulbPulse 1.8s ease-in-out infinite;
  animation-delay: calc(var(--light-index) * 0.08s);
}

.spin-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.08),
    inset 0 0 0 4px rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 30% 30%, #27154b, #12091f 68%);
  transform: rotate(0deg);
}

.spin-wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32%;
  text-align: center;
  z-index: 1;
}

.spin-wheel-label-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 82%;
  padding: 0.22rem 0.38rem;
  border-radius: 14px;
  color: #fff;
  background: rgba(8, 10, 20, 0.18);
  backdrop-filter: blur(4px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  max-width: 100%;
}

.spin-wheel-label-inner i {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.spin-wheel-label-inner strong {
  display: -webkit-box;
  font-size: clamp(0.74rem, 1.04vw, 0.98rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: 12ch;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.spin-wheel-center {
  position: absolute;
  inset: 31%;
  z-index: 2;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffa5e0;
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 93, 197, 0.25), transparent 45%),
    rgba(20, 10, 37, 0.96);
  border: 4px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 36px rgba(255, 48, 180, 0.24),
    inset 0 0 22px rgba(255, 255, 255, 0.07);
}

.spin-wheel-center span {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.spin-wheel-center strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
  font-weight: 900;
}

.spin-wheel-pointer {
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  margin: 0 auto -34px;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 58px solid #f4f7ff;
  filter: drop-shadow(0 10px 18px rgba(84, 112, 255, 0.28));
}

.spin-wheel-pointer::after {
  content: "";
  position: absolute;
  left: -14px;
  top: -54px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #8fd3ff 58%, #477dff 100%);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(143, 211, 255, 0.52);
}

.spin-result-board {
  margin-top: 1.35rem;
  border-radius: 24px;
  padding: 1rem 1.15rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spin-result-label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fdfff;
  margin-bottom: 0.35rem;
}

.spin-result-board h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  font-weight: 900;
}

.spin-main-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.btn-spin-cta {
  min-width: min(100%, 440px);
  min-height: 70px;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  color: #fff;
  background: linear-gradient(180deg, var(--spin-accent-1), #c21493);
  box-shadow:
    0 0 0 2px rgba(255, 167, 232, 0.34),
    0 0 28px rgba(255, 78, 208, 0.42),
    0 16px 34px rgba(141, 18, 104, 0.35);
}

.btn-spin-cta:disabled {
  opacity: 0.62;
  box-shadow: none;
}

.spin-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.spin-history-chip,
.spin-player-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 18px;
  min-height: 54px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.spin-history-chip {
  box-shadow: inset 4px 0 0 var(--chip-accent, #ff4fd8);
}

.spin-history-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.spin-player-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff51d2, #4ca8ff);
}

.spin-history-empty {
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: rgba(239, 235, 255, 0.68);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.spin-status-banner {
  margin-bottom: 1rem;
  border-radius: 16px;
  padding: 0.8rem 0.95rem;
  font-size: 0.95rem;
  color: #fff7e0;
  background: linear-gradient(135deg, rgba(255, 180, 56, 0.22), rgba(255, 100, 150, 0.16));
  border: 1px solid rgba(255, 193, 77, 0.22);
}

.spin-mini-panel {
  border-radius: 18px;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

@keyframes spinWheelBulbPulse {
  0%, 100% {
    transform: rotate(calc(var(--light-index) * 20deg)) translateY(calc(-1 * var(--spin-light-radius))) scale(0.88);
    opacity: 0.85;
  }
  50% {
    transform: rotate(calc(var(--light-index) * 20deg)) translateY(calc(-1 * var(--spin-light-radius))) scale(1.05);
    opacity: 1;
  }
}

.spin-rules-list {
  margin: 0;
  padding-left: 1.2rem;
}

.spin-rules-list li {
  margin-bottom: 0.55rem;
}

.spin-winner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff4fd8, #497cff);
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.34);
}

@media (max-width: 991.98px) {
  .spin-wheel-label {
    width: 34%;
  }

  .spin-wheel-label-inner strong {
    font-size: 0.82rem;
  }

  .btn-spin-cta {
    min-height: 62px;
  }
}

@media (max-width: 767.98px) {
  .spin-hero-card,
  .spin-surface-card,
  .spin-live-card {
    border-radius: 22px;
    padding: 1rem;
  }

  .spin-live-topbar {
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .spin-badge,
  .spin-mode-pill {
    min-height: 34px;
    padding: 0.38rem 0.64rem;
    font-size: 0.78rem;
  }

  .spin-wheel-shell {
    width: min(100%, 520px);
    padding: 0.85rem;
  }

  .spin-wheel-light {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
  }

  .spin-wheel-pointer {
    margin-bottom: -24px;
    border-left-width: 21px;
    border-right-width: 21px;
    border-top-width: 42px;
  }

  .spin-wheel-pointer::after {
    left: -11px;
    top: -39px;
    width: 22px;
    height: 22px;
  }

  .spin-wheel-label {
    width: 35%;
  }

  .spin-wheel-label-inner {
    gap: 0.24rem;
  }

  .spin-wheel-label-inner i {
    font-size: 0.9rem;
  }

  .spin-wheel-label-inner strong {
    font-size: 0.68rem;
    max-width: 10ch;
  }

  .spin-wheel-center span {
    font-size: 0.85rem;
  }

  .spin-wheel-center strong {
    font-size: 1.28rem;
  }

  .spin-result-board h3 {
    font-size: 1.05rem;
  }

  .spin-history-chip,
  .spin-player-row {
    min-height: 48px;
    padding: 0.68rem 0.8rem;
  }

  .spin-default-tag {
    font-size: 0.72rem;
  }
}
