/* ============= 基础重置 ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
}

:root {
  --bg-1: #0a0e27;
  --bg-2: #131836;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text-1: #ffffff;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --gold: #fbbf24;
  --gold-2: #f59e0b;
  --green: #10b981;
  --red: #ef4444;
  --red-2: #f87171;
  --shadow-glow: 0 0 40px rgba(251, 191, 36, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg-1);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(251, 191, 36, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(239, 68, 68, 0.05), transparent 50%);
  background-attachment: fixed;
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* 整页固定：body 不滚动，main 区独立滚动 */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hidden {
  display: none !important;
}

/* ====================================================
   启动页
   ==================================================== */
.splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.1), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(239, 68, 68, 0.08), transparent 50%),
    var(--bg-1);
  animation: fadeIn 0.4s ease;
}

.splash-card {
  background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 40px 32px 32px;
  max-width: 520px;
  width: 100%;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(251, 191, 36, 0.12);
  text-align: center;
  animation: splashIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes splashIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.splash-icon {
  font-size: 64px;
  margin-bottom: 8px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

.splash-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.splash-subtitle {
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.splash-asset {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.04));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow);
}

.splash-asset-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 600;
}

.splash-asset-amount {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  word-break: break-all;
  line-height: 1.1;
  margin-bottom: 6px;
}

.splash-asset-hint {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 6px;
}

.splash-rules {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.splash-rules li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-2);
}

.rule-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.start-btn {
  width: 100%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0a0e27;
  border: none;
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 2px;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
  font-family: inherit;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.start-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShine 2.5s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
}

.start-btn:active {
  transform: translateY(0);
}

.splash-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
  padding: 0 12px;
}

/* ====================================================
   顶部固定悬浮信息栏（永久置顶）
   ==================================================== */
.topbar {
  flex: 0 0 auto;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
  position: relative;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* 品牌行 */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  font-size: 30px;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text h1 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text p {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 倒计时 */
.timer {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 14px;
  padding: 6px 18px;
  text-align: center;
  min-width: 110px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(239, 68, 68, 0.15));
  animation: timerPulse 1.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes timerPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.timer.warning {
  animation: warningPulse 0.6s ease-in-out infinite;
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.5);
}

@keyframes warningPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.timer-label {
  font-size: 9px;
  color: var(--red-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.timer-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  position: relative;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.timer-unit {
  font-size: 12px;
  color: var(--red-2);
  margin-left: 2px;
  font-weight: 600;
}

/* 统计行 */
.topbar-stats-row {
  gap: 8px;
}

.stat-block {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.stat-block.primary {
  flex: 1.5;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.04));
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: var(--shadow-glow);
}

.stat-label {
  font-size: 10px;
  color: var(--text-2);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-block.primary .stat-label {
  color: var(--gold);
  font-weight: 600;
}

.stat-value {
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: transform 0.2s ease;
}

.stat-block.primary .stat-value {
  font-size: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-value.spent {
  color: var(--red-2);
}

/* 进度条行 */
.topbar-progress-row {
  display: block;
}

.progress-compact {
  display: block;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.5px;
}

.progress-label span:last-child {
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #fbbf24 60%, #ef4444 100%);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2.5s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ====================================================
   商品主区（独立滚动）
   ==================================================== */
.shop-main {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px 8px;
}

.shop-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px 18px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.category-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-title::before {
  content: '';
  width: 3px;
  height: 14px;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.category-count {
  font-size: 11px;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

/* ====================================================
   商品卡片
   ==================================================== */
.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 14px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card:hover:not(.disabled) {
  background: var(--bg-card-hover);
  border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-card:hover:not(.disabled) .product-icon {
  transform: scale(1.1) rotate(-5deg);
}

.product-card:active:not(.disabled) {
  transform: translateY(0);
}

.product-card.disabled {
  opacity: 0.42;
  cursor: not-allowed;
  filter: grayscale(0.65);
}

.product-card.flash {
  animation: purchaseFlash 0.6s ease;
}

@keyframes purchaseFlash {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.3); }
  100% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
}

/* 特殊商品（资产减半）：粉色高亮 */
.product-card.special {
  border-color: rgba(244, 114, 182, 0.3);
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.06), rgba(255, 255, 255, 0.02));
}

.product-card.special:hover:not(.disabled) {
  border-color: rgba(244, 114, 182, 0.6);
}

.product-card.special .product-buy {
  background: rgba(244, 114, 182, 0.15);
  color: #f472b6;
  border-color: rgba(244, 114, 182, 0.3);
}

.product-card.special .product-price {
  color: #f472b6;
}

.product-icon {
  font-size: 32px;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
  line-height: 1;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}

.product-buy {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.product-card.disabled .product-buy {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red-2);
  border-color: rgba(239, 68, 68, 0.25);
}

/* 底部免责声明 */
.disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
  padding: 12px 8px 4px;
  border-top: 1px solid var(--border);
}

/* ====================================================
   提示 toast
   ==================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 23, 42, 0.95);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 85vw;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(127, 29, 29, 0.95);
  color: #fecaca;
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(6, 78, 59, 0.95);
  color: #a7f3d0;
}

/* ====================================================
   结算弹窗
   ==================================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 36px 30px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(251, 191, 36, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 26px;
}

.modal-icon {
  font-size: 56px;
  margin-bottom: 10px;
  display: inline-block;
  animation: ring 0.9s ease-in-out;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-18deg); }
  40% { transform: rotate(14deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(6deg); }
}

.modal-header h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.modal-subtitle {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0;
}

.modal-stats {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 22px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row strong {
  color: var(--text-1);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-row strong.spent {
  color: var(--red-2);
}

.stat-row strong.ratio {
  color: var(--gold);
  font-size: 15px;
}

.modal-commentary {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(239, 68, 68, 0.06));
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  border-radius: 4px 12px 12px 4px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-1);
  margin-bottom: 26px;
  font-weight: 500;
  position: relative;
}

.modal-commentary::before {
  content: '"';
  position: absolute;
  top: -6px;
  left: 8px;
  font-size: 32px;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

.modal-commentary::after {
  content: '"';
  font-size: 32px;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 0;
  margin-left: 4px;
}

.restart-btn {
  width: 100%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0a0e27;
  border: none;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 2px;
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.35);
  font-family: inherit;
}

.restart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(251, 191, 36, 0.5);
}

.restart-btn:active {
  transform: translateY(0);
}

.modal-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ====================================================
   响应式
   ==================================================== */
@media (max-width: 768px) {
  .topbar {
    padding: 10px 12px;
    gap: 8px;
  }

  .topbar-brand-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .brand {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }

  .brand-text h1 {
    font-size: 16px;
  }

  .brand-text p {
    white-space: normal;
    font-size: 10px;
  }

  .timer {
    align-self: center;
    padding: 4px 14px;
    min-width: 100px;
  }

  .timer-value {
    font-size: 24px;
  }

  .stat-value {
    font-size: 14px;
  }

  .stat-block.primary .stat-value {
    font-size: 16px;
  }

  .shop-main {
    padding: 12px 12px 8px;
  }

  .category {
    padding: 14px 14px 16px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-card {
    padding: 12px 10px 10px;
  }

  .product-icon {
    font-size: 26px;
  }

  .product-name {
    font-size: 11px;
    min-height: 30px;
  }

  .product-price {
    font-size: 11px;
  }

  .modal-card {
    padding: 26px 22px;
  }

  .modal-header h2 {
    font-size: 19px;
  }
}

@media (max-width: 380px) {
  .timer-value {
    font-size: 22px;
  }

  .stat-value {
    font-size: 12px;
  }

  .stat-block.primary .stat-value {
    font-size: 14px;
  }

  .category-grid {
    gap: 6px;
  }

  .product-card {
    padding: 10px 8px 8px;
  }

  .product-icon {
    font-size: 22px;
  }
}

/* 滚动条 */
.shop-main::-webkit-scrollbar,
.modal-card::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.shop-main::-webkit-scrollbar-track,
.modal-card::-webkit-scrollbar-track {
  background: transparent;
}

.shop-main::-webkit-scrollbar-thumb,
.modal-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.shop-main::-webkit-scrollbar-thumb:hover,
.modal-card::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.24);
}
