/* Jackpot page styles */

.jackpot {
  --p1: #8b5cf6;
  --p2: #c084fc;
  --line: rgba(192, 132, 252, 0.2);
  --line-strong: rgba(192, 132, 252, 0.42);
  --jackpot-vh: 92dvh;
  min-height: min(var(--jackpot-vh), 980px);
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(192, 132, 252, 0.12);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(192, 132, 252, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(16, 13, 24, 0.94), rgba(7, 6, 12, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
  color: #f2ecff;
}

.jackpot::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 92, 246, 0.18), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(192, 132, 252, 0.14), transparent 20%),
    radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 50%, transparent 58%),
    repeating-linear-gradient(-28deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 20px);
  opacity: 0.9;
}

@media (max-height: 1070px) {
  .jackpot {
    --jackpot-vh: 90dvh;
  }
}

@media (max-height: 740px) {
  .jackpot {
    --jackpot-vh: 88.4dvh;
    min-height: 0;
  }
}

.jackpot .stats-row {
  --gap: 12px;
}

.jackpot .statbox {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 15, 29, 0.85), rgba(11, 10, 18, 0.8));
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
  transition: transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.jackpot .statbox::after {
  content: none;
  display: none;
}

.jackpot .stats-row .col-12:nth-child(2) .statbox::after {
  animation-delay: 0.9s;
}

.jackpot .stats-row .col-12:nth-child(3) .statbox::after {
  animation-delay: 1.7s;
}

.jackpot .stats-row .col-12:nth-child(4) .statbox::after {
  animation-delay: 2.4s;
}

.jackpot .statbox:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(192, 132, 252, 0.55);
  filter: brightness(1.04);
}

.jackpot .statboxbody {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.jackpot .statbox.statbox--dropdown {
  overflow: visible;
  z-index: 30;
}

.jackpot .statbox.statbox--dropdown:hover {
  transform: none;
}

.jackpot .stat-ico {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(17, 15, 26, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.55);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

.jackpot .stat-ico i {
  font-size: 20px;
  color: #e7ddff;
}

.jackpot .stat-title {
  margin: 0;
  color: #f8fafc;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.jackpot .stat-sub {
  color: #d7d2e9;
  opacity: 0.88;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.jackpot .btn-cf {
  white-space: nowrap;
  border-radius: 16px;
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  border: 1px solid rgba(139, 92, 246, 0.45);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(17, 15, 26, 0.92));
  color: #eee8ff;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.18);
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.jackpot .btn-cf:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.jackpot .btn-cf:active {
  transform: translateY(0) scale(0.99);
}

.jackpot .btn-cf:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.jackpot .jackpot-board {
  margin-top: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
  align-content: flex-start;
}

.jackpot .jackpot-panel {
  border-radius: 18px;
  padding: 16px;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, rgba(18, 15, 29, 0.9), rgba(11, 10, 18, 0.84));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 16px 36px rgba(0, 0, 0, 0.4);
}

.jackpot .jackpot-panel:hover {
  border-color: var(--line-strong);
  filter: brightness(1.02);
}

.jackpot .jackpot-stageCol,
.jackpot .jackpot-listCol {
  max-width: none;
}

.jackpot .jackpot-stagePanel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.jackpot .jackpot-stagePanel.is-finished {
  padding-bottom: 28px;
}

.jackpot .jackpot-stageStatus {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: rgba(184, 198, 222, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.jackpot .jackpot-stagePanel.is-spinning .jackpot-stageStatus,
.jackpot .jackpot-stagePanel.is-finished .jackpot-stageStatus {
  color: rgba(214, 224, 244, 0.74);
}

.jackpot .jackpot-stageEdge {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  color: #8b5cf6;
  font-size: 34px;
  line-height: 1;
  opacity: 0.92;
  text-shadow: 0 0 16px rgba(139, 92, 246, 0.32);
  pointer-events: none;
}

.jackpot .jackpot-stageEdge--left {
  left: 10px;
}

.jackpot .jackpot-stageEdge--right {
  right: 10px;
}

.jackpot .jackpot-trackWrap,
.jackpot .jackpot-wheelWrap {
  position: relative;
  width: 100%;
  min-height: 244px;
  margin: 0;
  display: block;
  padding: 18px 18px 76px;
  border-radius: 26px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  background:
    radial-gradient(circle at 18% 0, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16%),
    linear-gradient(180deg, rgba(18, 15, 29, 0.94), rgba(11, 10, 18, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.jackpot .jackpot-trackWrap::before,
.jackpot .jackpot-wheelWrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(310px, calc(100% - 72px));
  height: 54px;
  z-index: 1;
}

.jackpot .jackpot-trackViewport {
  position: relative;
  z-index: 2;
  height: 130px;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(192, 132, 252, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.18), rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, rgba(17, 14, 26, 0.98), rgba(9, 8, 16, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  isolation: isolate;
}

.jackpot .jackpot-trackViewport::before,
.jackpot .jackpot-trackViewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 58px;
  z-index: 4;
  pointer-events: none;
}

.jackpot .jackpot-trackViewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 8, 18, 1), rgba(3, 8, 18, 0.82) 45%, rgba(3, 8, 18, 0));
}

.jackpot .jackpot-trackViewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 8, 18, 1), rgba(3, 8, 18, 0.82) 45%, rgba(3, 8, 18, 0));
}

.jackpot .jackpot-pointer {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 24px;
  height: 14px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0 0 6px 6px;
  background: rgba(242, 247, 255, 0.96);
  clip-path: polygon(24% 0, 76% 0, 76% 38%, 100% 38%, 50% 100%, 0 38%, 24% 38%);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.18));
  z-index: 6;
}

.jackpot .jackpot-trackRail,
.jackpot .jackpot-trackRails,
.jackpot .jackpot-rotor,
.jackpot #jackpotRotor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}

.jackpot .jackpot-wheel,
.jackpot #jackpotWheel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  min-width: 100%;
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.jackpot .jackpot-trackCycle {
  display: flex;
  align-items: stretch;
  height: 100%;
  min-width: 0;
  flex: 0 0 auto;
}

.jackpot .jackpot-trackSegment {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px 16px;
  overflow: hidden;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: var(--seg-color, #9333ea);
}

.jackpot .jackpot-trackSegment:not(.jackpot-trackPlaceholder)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -55deg,
      rgba(255, 255, 255, 0.16) 0 5px,
      rgba(255, 255, 255, 0) 5px 13px
    );
  opacity: 0.7;
}

.jackpot .jackpot-trackSegment:not(.jackpot-trackPlaceholder)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%);
  opacity: 0.55;
}

.jackpot .jackpot-trackSegment:last-child {
  border-right: 0;
}

.jackpot .jackpot-trackSegment.is-me {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 0 0 2px rgba(196, 181, 253, 0.34);
}

.jackpot .jackpot-trackSegment.is-winner {
  z-index: 1;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 26px rgba(255, 255, 255, 0.08);
}

.jackpot .jackpot-trackSegmentInner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.jackpot .jackpot-trackAvatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--seg-accent, rgba(255, 255, 255, 0.34));
  overflow: hidden;
  background: rgba(10, 14, 24, 0.56);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

.jackpot .jackpot-trackAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jackpot .jackpot-trackChance {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.jackpot .jackpot-trackSegment.is-compact {
  padding-left: 12px;
  padding-right: 12px;
}

.jackpot .jackpot-trackSegment.is-compact .jackpot-trackAvatar {
  width: 42px;
  height: 42px;
}

.jackpot .jackpot-trackSegment.is-compact .jackpot-trackChance {
  font-size: 15px;
}

.jackpot .jackpot-trackSegment.is-tiny {
  padding-left: 8px;
  padding-right: 8px;
}

.jackpot .jackpot-trackSegment.is-tiny .jackpot-trackAvatar {
  width: 34px;
  height: 34px;
}

.jackpot .jackpot-trackSegment.is-tiny .jackpot-trackChance {
  font-size: 13px;
}

.jackpot .jackpot-trackPlaceholder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 8px, rgba(255, 255, 255, 0) 8px 16px),
    linear-gradient(135deg, rgba(78, 47, 140, 0.88), rgba(31, 20, 58, 0.94));
}

.jackpot .jackpot-trackPlaceholderInner {
  width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.jackpot .jackpot-trackPlaceholderLabel {
  color: rgba(229, 216, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.jackpot .jackpot-trackPlaceholderCoin,
.jackpot .jackpot-centerCoin,
.jackpot .jackpot-winnerSplashCoin {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f3ecff;
  background: radial-gradient(circle at 30% 28%, #d9c7ff, #9d74f6 72%, #6c3ecf 100%);
  border: 1px solid rgba(203, 174, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 6px 14px rgba(63, 34, 130, 0.42);
}

.jackpot .jackpot-trackPlaceholderValue {
  color: #f3ecff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.jackpot .jackpot-wheel.is-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 12, 0.62), rgba(4, 4, 10, 0.84));
  z-index: 5;
  pointer-events: none;
}

.jackpot .jackpot-trackEmpty {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 10, 0.5), rgba(3, 3, 8, 0.72));
}

.jackpot .jackpot-trackEmptyTitle {
  color: #f2ecff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jackpot .jackpot-trackEmptyMeta {
  color: #c9b8f4;
  font-size: 12px;
  font-weight: 800;
}

.jackpot .jackpot-avatarLayer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.jackpot .jackpot-trackFade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
}

.jackpot .jackpot-trackFade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 8, 18, 0.95), rgba(3, 8, 18, 0));
}

.jackpot .jackpot-trackFade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 8, 18, 0.95), rgba(3, 8, 18, 0));
}

.jackpot .jackpot-trackFocusGlow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(142, 87, 255, 0.08), rgba(0, 0, 0, 0) 28%);
}

.jackpot .jackpot-center {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  z-index: 3;
  width: auto;
  min-width: 276px;
  padding: 13px 20px 14px;
  border-radius: 20px;
  border: 1px solid rgba(192, 132, 252, 0.34);
  background:
    radial-gradient(circle at 50% -10%, rgba(139, 92, 246, 0.24), rgba(0, 0, 0, 0) 64%),
    linear-gradient(180deg, rgba(27, 19, 43, 0.97), rgba(13, 10, 24, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 26px rgba(0, 0, 0, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.2s ease;
}

.jackpot .jackpot-centerLabel {
  color: rgba(220, 204, 247, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.jackpot .jackpot-centerMain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jackpot .jackpot-centerPot {
  color: #f5f0ff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(173, 135, 249, 0.18);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
}

.jackpot .jackpot-centerPot.is-long {
  font-size: 21px;
}

.jackpot .jackpot-centerPot.is-xlong {
  font-size: 18px;
}

.jackpot .jackpot-centerMeta,
.jackpot .jackpot-centerSub {
  display: none;
}

.jackpot .jackpot-stagePanel.is-finished .jackpot-center {
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
}

.jackpot .jackpot-winnerSplash {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 140, 114, 0.16), rgba(25, 140, 114, 0) 20%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.86), rgba(3, 8, 18, 0.96));
}

.jackpot .jackpot-winnerSplash.is-show {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.jackpot .jackpot-winnerSplashCard {
  width: min(100%, 560px);
  min-width: 0;
  padding: 0 20px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.jackpot .jackpot-winnerSplashTitle {
  color: #f8fafc;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.jackpot .jackpot-winnerSplashAmountRow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.jackpot .jackpot-winnerSplashCoin {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.jackpot .jackpot-winnerSplashAmount {
  color: #24d07b;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-shadow: 0 0 24px rgba(36, 208, 123, 0.16);
}

.jackpot .jackpot-winnerSplashAvatar,
.jackpot .jackpot-winnerSplashName {
  display: none;
}

.jackpot .jackpot-winnerSplashMeta {
  color: #d7fbe5;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jackpot .jackpot-listPanel {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.jackpot .jackpot-listHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.jackpot .jackpot-listSub {
  margin-top: 0;
  text-align: right;
  color: #b8b3cb;
  font-size: 13px;
}

.jackpot .jackpot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
}

.jackpot .jackpot-list::-webkit-scrollbar {
  width: 10px;
}

.jackpot .jackpot-list::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}

.jackpot .jackpot-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.jackpot .jackpot-rowCard {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.56);
  overflow: hidden;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.jackpot .jackpot-rowCard:hover {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.jackpot .jackpot-rowCard.is-me {
  border-color: rgba(139, 92, 246, 0.52);
  background: linear-gradient(120deg, rgba(76, 29, 149, 0.34), rgba(15, 23, 42, 0.72));
}

.jackpot .jackpot-rowSummary {
  list-style: none;
  cursor: pointer;
}

.jackpot .jackpot-rowSummary::-webkit-details-marker {
  display: none;
}

.jackpot .jackpot-row {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  border-radius: 14px;
  padding: 10px 12px;
}

.jackpot .jackpot-rowLeft {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.jackpot .jackpot-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07);
}

.jackpot .jackpot-rowAvatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  object-fit: cover;
}

.jackpot .jackpot-rowName {
  color: #e2e8f0;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.jackpot .jackpot-rowRight {
  text-align: right;
}

.jackpot .jackpot-rowVal {
  color: #f8fafc;
  font-weight: 900;
  font-size: 15px;
}

.jackpot .jackpot-rowChance {
  color: #c4b5fd;
  font-weight: 700;
  font-size: 12px;
}

.jackpot .jackpot-rowChevron {
  margin-left: 10px;
  color: #ddd6fe;
  opacity: 0.9;
  font-size: 14px;
  transition: transform 0.18s ease;
}

.jackpot .jackpot-rowCard[open] .jackpot-rowChevron {
  transform: rotate(180deg);
}

.jackpot .jackpot-rowItemsWrap {
  padding: 0 10px 10px;
}

.jackpot .jackpot-rowItemsHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2px 2px 8px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.jackpot .jackpot-rowItemsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: 8px;
}

.jackpot .jackpot-rowItemsEmpty,
.jackpot .jackpot-empty {
  border-radius: 12px;
  border: 1px dashed rgba(192, 132, 252, 0.34);
  color: #c9b8f4;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 800;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(18, 15, 29, 0.86), rgba(11, 10, 18, 0.9));
}

.jackpot .jackpot-empty {
  border-radius: 16px;
  padding: 18px 14px;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.jackpot .jackpot-empty i {
  font-size: 19px;
  color: #e8d9ff;
  text-shadow: 0 0 20px rgba(192, 132, 252, 0.34);
}

.jackpot .jackpot-emptyTitle {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f2ecff;
}

.jackpot .jackpot-emptyMeta {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #c9b8f4;
}

.jackpot .jackpot-itemThumb {
  position: relative;
  min-height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.16);
  background: linear-gradient(180deg, rgba(20, 17, 32, 0.96), rgba(9, 8, 16, 0.98));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.jackpot .jackpot-itemThumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.jackpot .jackpot-itemThumb .jackpot-itemFx {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
}

.jackpot .jackpot-itemValue {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 1px 5px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(196, 181, 253, 0.22);
}

.jackpot .jackpot-itemThumb--more {
  color: #e9d5ff;
  font-weight: 900;
  font-size: 13px;
  border-style: dashed;
}

.jackpot .is-pop {
  animation: jackpotMetricPop 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.jackpot .is-pop-soft {
  animation: jackpotMetricSoft 0.42s ease-out;
}

@keyframes jackpotStatSweep {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }

  14% {
    opacity: 0.18;
  }

  42% {
    transform: translateX(135%);
    opacity: 0.08;
  }

  100% {
    transform: translateX(135%);
    opacity: 0;
  }
}

@keyframes jackpotMetricPop {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes jackpotMetricSoft {
  0% {
    filter: brightness(1);
  }

  35% {
    filter: brightness(1.22);
  }

  100% {
    filter: brightness(1);
  }
}

@media (max-width: 991px) {
  .jackpot .jackpot-panel {
    padding: 14px;
  }

  .jackpot .jackpot-stagePanel {
    min-height: 360px;
    padding-bottom: 76px;
  }

  .jackpot .jackpot-trackWrap,
  .jackpot .jackpot-wheelWrap {
    min-height: 220px;
    padding: 16px 16px 70px;
  }

  .jackpot .jackpot-trackWrap::before,
  .jackpot .jackpot-wheelWrap::before {
    width: min(320px, calc(100% - 48px));
    height: 68px;
  }

  .jackpot .jackpot-center {
    min-width: 252px;
  }

  .jackpot .jackpot-listCol {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .jackpot .jackpot-stagePanel {
    min-height: 312px;
    padding-bottom: 72px;
  }

  .jackpot .jackpot-stageStatus {
    font-size: 11px;
  }

  .jackpot .jackpot-stageEdge {
    font-size: 26px;
  }

  .jackpot .jackpot-trackWrap,
  .jackpot .jackpot-wheelWrap {
    min-height: 180px;
    padding: 14px 10px 62px;
  }

  .jackpot .jackpot-trackWrap::before,
  .jackpot .jackpot-wheelWrap::before {
    width: calc(100% - 28px);
    height: 58px;
  }

  .jackpot .jackpot-trackViewport {
    height: 104px;
  }

  .jackpot .jackpot-pointer {
    width: 20px;
    height: 12px;
  }

  .jackpot .jackpot-trackSegment {
    padding: 10px 8px 12px;
  }

  .jackpot .jackpot-trackAvatar {
    width: 34px;
    height: 34px;
  }

  .jackpot .jackpot-trackChance {
    font-size: 13px;
  }

  .jackpot .jackpot-trackPlaceholderLabel {
    font-size: 11px;
  }

  .jackpot .jackpot-trackPlaceholderValue {
    font-size: 18px;
  }

  .jackpot .jackpot-trackPlaceholderCoin,
  .jackpot .jackpot-centerCoin,
  .jackpot .jackpot-winnerSplashCoin {
    width: 24px;
    height: 24px;
  }

  .jackpot .jackpot-center {
    min-width: 220px;
    bottom: -16px;
    padding: 8px 14px 10px;
    gap: 5px;
    border-radius: 16px;
  }

  .jackpot .jackpot-centerLabel {
    font-size: 10px;
  }

  .jackpot .jackpot-centerCoin {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .jackpot .jackpot-centerPot {
    font-size: 18px;
  }

  .jackpot .jackpot-rowItemsGrid {
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  }

  .jackpot .jackpot-winnerSplashTitle {
    font-size: 22px;
  }

  .jackpot .jackpot-winnerSplashAmount {
    font-size: 42px;
  }

  .jackpot .jackpot-winnerSplashMeta {
    font-size: 13px;
  }
}

@media (max-height: 860px) {
  .jackpot .statboxbody {
    padding: 10px 12px;
  }

  .jackpot .stat-title {
    font-size: 16px;
  }

  .jackpot .jackpot-panel {
    padding: 10px 10px 42px 10px
  }
}

@media (prefers-reduced-motion: reduce) {
  .jackpot .statbox::after,
  .jackpot .is-pop,
  .jackpot .is-pop-soft {
    animation: none !important;
  }
}
