body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    width: auto;
    text-align: right;
    padding: 0;
    position: fixed;
    top: 48px;
    right: 12px;
    z-index: 9999;
    pointer-events: none;
}

header * {
    pointer-events: auto;
}

@media (max-width: 767px) {
    header {
        right: 6px;
        top: 46px;
    }
}

/* ============================================================
   Gashapons hamburger menu
   ============================================================ */
.menu-container {
    position: relative;
    margin-top: 50px;
}

.menu-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 2px solid rgba(0, 255, 255, 0.55);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(10, 0, 25, 0.92), rgba(4, 20, 40, 0.9));
    box-shadow:
        0 0 0 1px rgba(255, 0, 170, 0.25),
        0 0 18px rgba(0, 255, 255, 0.2),
        inset 0 0 12px rgba(170, 0, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

.menu-icon:hover {
    transform: scale(1.06);
    border-color: rgba(255, 0, 170, 0.7);
    box-shadow:
        0 0 0 1px rgba(255, 0, 170, 0.4),
        0 0 24px rgba(255, 0, 170, 0.35),
        0 0 20px rgba(0, 255, 255, 0.25);
}

.menu-icon-glow {
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff00aa, #00ffff, #aa00ff);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.25s;
    filter: blur(6px);
}

.menu-icon:hover .menu-icon-glow,
.menu-icon.change .menu-icon-glow {
    opacity: 0.45;
    animation: menuGlowPulse 2s ease-in-out infinite;
}

@keyframes menuGlowPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.55; }
}

.menu-icon .bar1,
.menu-icon .bar2,
.menu-icon .bar3 {
    display: block;
    width: 22px;
    height: 3px;
    margin: 3px 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff00aa, #00ffff);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s, width 0.25s;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.menu-icon .bar2 {
    width: 16px;
    background: linear-gradient(90deg, #00ffff, #aa00ff);
}

.menu-icon.change {
    border-color: rgba(255, 0, 170, 0.85);
}

.menu-icon.change .bar1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    width: 22px;
}

.menu-icon.change .bar2 {
    opacity: 0;
    width: 0;
}

.menu-icon.change .bar3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.menu {
    display: block;
    position: absolute;
    right: 0;
    top: 56px;
    z-index: 1;
    min-width: 280px;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.25s;
    pointer-events: none;
}

.menu.menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.menu-panel {
    position: relative;
    padding: 16px 14px 12px;
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(12, 0, 28, 0.97) 0%, rgba(4, 20, 40, 0.98) 50%, rgba(20, 0, 35, 0.97) 100%);
    border: 2px solid transparent;
    box-shadow:
        0 0 0 1px rgba(255, 0, 170, 0.35),
        0 0 30px rgba(255, 0, 170, 0.2),
        0 0 50px rgba(0, 255, 255, 0.1),
        inset 0 0 40px rgba(170, 0, 255, 0.06);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.menu-panel::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff00aa, #00ffff, #aa00ff, #00ffaa);
    z-index: -1;
    opacity: 0.4;
    animation: lbBorderSpin 6s linear infinite;
}

.menu-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    animation: menuScan 3s ease-in-out infinite;
}

@keyframes menuScan {
    0%, 100% { opacity: 0.3; transform: translateX(-20%); }
    50% { opacity: 1; transform: translateX(20%); }
}

.menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 4px 12px;
}

.menu-brand-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 170, 0.6));
}

.menu-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-brand-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff00aa, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.menu-brand-sub {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgba(0, 255, 255, 0.75);
}

.menu-divider {
    height: 1px;
    margin: 0 4px 10px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 170, 0.5), rgba(0, 255, 255, 0.5), transparent);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 4px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.menu-link:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.25);
    transform: translateX(3px);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.12);
}

.menu-link-highlight {
    border-color: rgba(255, 0, 170, 0.2);
    background: rgba(255, 0, 170, 0.06);
}

.menu-link-highlight:hover {
    background: rgba(255, 0, 170, 0.12);
    border-color: rgba(255, 0, 170, 0.45);
    box-shadow: 0 0 18px rgba(255, 0, 170, 0.2);
}

.menu-link-muted:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.menu-link-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-link-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-link-label {
    font-family: 'Arial Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #fff;
}

.menu-link-hint {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
}

.menu-link-badge {
    flex-shrink: 0;
    font-family: 'Arial Black', sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 6px;
    color: #00ffaa;
    background: rgba(0, 255, 170, 0.12);
    border: 1px solid rgba(0, 255, 170, 0.45);
    text-shadow: 0 0 8px rgba(0, 255, 170, 0.6);
    animation: lbBlink 1.5s ease-in-out infinite;
}

.menu-footer {
    margin: 10px 4px 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
}

.docs-footer-links {
    text-align: center;
    margin-top: 20px;
}

.character {
    text-align: center;
    margin: 20px 0;
}
/* --- Legal Modal 遮罩層 (預設隱藏) --- */
.legal-modal-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* --- 彈窗內容區塊 (加入邊框與陰影) --- */
.legal-modal-content {
  background-color: #2a2d34;
  color: #ffffff;
  padding: 35px 25px 25px 25px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
  border: 5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* --- Gashapons modal skin (docs + legal) --- */
.legal-modal-content.gasha-modal {
  background: linear-gradient(165deg, rgba(12, 0, 28, 0.97) 0%, rgba(4, 20, 40, 0.98) 45%, rgba(20, 0, 35, 0.97) 100%);
  border: 2px solid transparent;
  box-shadow:
    0 0 0 1px rgba(255, 0, 170, 0.35),
    0 0 40px rgba(255, 0, 170, 0.2),
    0 0 60px rgba(0, 255, 255, 0.1),
    inset 0 0 50px rgba(170, 0, 255, 0.06);
  font-family: 'Arial Black', sans-serif;
}

.legal-modal-content.gasha-modal::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff00aa, #00ffff, #aa00ff);
  z-index: -1;
  opacity: 0.35;
  animation: lbBorderSpin 5s linear infinite;
}
.legal-modal-content::-webkit-scrollbar {
  width: 6px;
}
.legal-modal-content::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

/* --- 關閉按鈕 --- */
.close-btn {
  position: absolute;
  top: 0px;    /* 距離面板頂部的距離，數字越小越靠上 */
  right: 0px;  /* 距離面板右側的距離，數字越小越靠右 */
  z-index: 10;
  
  /* 關鍵 1：建立一個 48x48 的完美正方形感應區 (符合蘋果/Google的觸控標準) */
  width: 48px;  
  height: 48px; 
  
  /* 關鍵 2：使用 Flexbox 讓裡面的 X 絕對水平與垂直置中 */
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 32px;
  line-height: 1; /* 關鍵 3：消除字體預設行高造成的偏移 */
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent; 
}
.close-btn:hover {
  color: #ff00aa;
  text-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.legal-text {
  text-align: left;
}

.legal-text h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, #ff00aa, #00ffff, #ff00aa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lbShimmer 3s linear infinite;
}

.gasha-modal .legal-text h4 {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.legal-text h4 { 
  margin-top: 20px; 
  margin-bottom: 5px; 
  font-size: 1.1rem;
  color: #ddd;
  text-align: left; /* 標題靠左 */
}

.legal-text p { 
  font-size: 0.9rem; 
  color: #bbb; 
  margin-top: 0;
  text-align: justify; /* 內文滿行左右對齊，最後一行自動靠左 */
}
.legal-text hr { 
  border: 0; 
  border-top: 1px solid #444; 
  margin: 25px 0; 
}

.legal-link {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.legal-link:hover {
  color: #ff00aa;
  text-shadow: 0 0 10px rgba(255, 0, 170, 0.6);
  text-decoration: underline;
}
.docs-modal-content {
  max-width: 680px;
}

.docs-text code {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #a8e6ff;
}

/* ============================================================
   Flashy 24h Leaderboard modal
   ============================================================ */
.leaderboard-modal-content {
  position: relative;
  width: 92%;
  max-width: 520px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 20px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(12, 0, 28, 0.97) 0%, rgba(4, 20, 40, 0.98) 45%, rgba(20, 0, 35, 0.97) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(255, 0, 170, 0.35),
    0 0 40px rgba(255, 0, 170, 0.25),
    0 0 80px rgba(0, 255, 255, 0.12),
    inset 0 0 60px rgba(170, 0, 255, 0.08);
  box-sizing: border-box;
  font-family: 'Arial Black', sans-serif;
}

.leaderboard-modal-content::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff00aa, #00ffff, #aa00ff, #00ffaa);
  z-index: -1;
  opacity: 0.55;
  animation: lbBorderSpin 4s linear infinite;
}

@keyframes lbBorderSpin {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.lb-flash-header {
  text-align: center;
  margin-bottom: 14px;
}

.lb-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #00ffaa;
  background: rgba(0, 255, 170, 0.12);
  border: 1px solid rgba(0, 255, 170, 0.5);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.8);
  animation: lbPulse 2s ease-in-out infinite;
}

.lb-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffaa;
  box-shadow: 0 0 10px #00ffaa;
  animation: lbBlink 1.2s ease-in-out infinite;
}

@keyframes lbBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes lbPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 170, 0.3); }
  50% { box-shadow: 0 0 18px rgba(0, 255, 170, 0.6); }
}

.lb-title {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff00aa, #00ffff, #ff00aa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lbShimmer 3s linear infinite;
  text-shadow: none;
}

@keyframes lbShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.lb-period {
  margin: 8px 0 0;
  font-size: 11px;
  font-family: 'Courier New', monospace;
  color: rgba(0, 255, 255, 0.75);
  letter-spacing: 1px;
}

.lb-airdrop-banner {
  text-align: center;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 0, 170, 0.2), rgba(0, 255, 255, 0.15), rgba(255, 0, 170, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lb-banner-glow {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.lb-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  min-height: 130px;
}

.lb-podium-slot {
  flex: 1;
  max-width: 140px;
  text-align: center;
  padding: 12px 8px 10px;
  border-radius: 12px 12px 8px 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.12);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lb-podium-slot:not(.empty):hover {
  transform: translateY(-4px);
}

.lb-podium-1 {
  order: 2;
  min-height: 120px;
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35), inset 0 0 20px rgba(255, 215, 0, 0.08);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.15), rgba(0, 0, 0, 0.5));
}

.lb-podium-2 {
  order: 1;
  min-height: 95px;
  border-color: rgba(192, 192, 192, 0.6);
  box-shadow: 0 0 18px rgba(192, 192, 192, 0.25);
}

.lb-podium-3 {
  order: 3;
  min-height: 80px;
  border-color: rgba(205, 127, 50, 0.6);
  box-shadow: 0 0 18px rgba(205, 127, 50, 0.25);
}

.lb-podium-slot.empty {
  opacity: 0.45;
  filter: grayscale(0.6);
}

.lb-podium-medal {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.lb-podium-rank {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.lb-podium-wallet {
  font-size: 12px;
  color: #fff;
  margin: 6px 0 4px;
  font-family: 'Courier New', monospace;
}

.lb-podium-score {
  font-size: 22px;
  color: #00ffaa;
  text-shadow: 0 0 12px rgba(0, 255, 170, 0.6);
}

.lb-airdrop-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff00aa, #aa00ff);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.6);
  animation: lbTagPulse 2s ease-in-out infinite;
}

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

.lb-table-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 255, 0.15);
  overflow: hidden;
}

.lb-table-head {
  display: grid;
  grid-template-columns: 52px 1fr 72px;
  gap: 8px;
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(0, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 255, 255, 0.05);
}

.lb-rank-list {
  list-style: none;
  margin: 0;
  padding: 6px 8px 10px;
  overflow-y: auto;
  max-height: 220px;
  scrollbar-width: thin;
  scrollbar-color: #ff00aa rgba(0, 0, 0, 0.3);
}

.lb-rank-list::-webkit-scrollbar {
  width: 5px;
}

.lb-rank-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff00aa, #00ffff);
  border-radius: 4px;
}

.lb-rank-list li {
  display: grid;
  grid-template-columns: 52px 1fr 72px;
  gap: 8px;
  align-items: center;
  padding: 10px 10px;
  margin-bottom: 4px;
  border-radius: 8px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.lb-rank-list li.lb-row:hover {
  background: rgba(0, 255, 255, 0.08);
  border-color: rgba(0, 255, 255, 0.25);
  transform: translateX(3px);
}

.lb-rank-list .lb-rank {
  font-weight: 900;
  color: #ff00aa;
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

.lb-rank-list .lb-wallet {
  font-family: 'Courier New', monospace;
  color: #e0e0e0;
  font-size: 12px;
}

.lb-rank-list .lb-score {
  text-align: right;
  font-weight: 900;
  color: #00ffaa;
  text-shadow: 0 0 8px rgba(0, 255, 170, 0.4);
}

.lb-rank-list .lb-loading,
.lb-rank-list .lb-empty {
  display: block;
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: 'Courier New', monospace;
}

.lb-footer-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Courier New', monospace;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .menu {
    min-width: 260px;
    max-width: calc(100vw - 20px);
  }

  .menu-icon {
    width: 44px;
    height: 44px;
  }

  .leaderboard-modal-content {
    max-width: 96%;
    padding: 24px 12px 16px;
  }
  .lb-podium {
    gap: 6px;
    min-height: 110px;
  }
  .lb-podium-slot {
    padding: 8px 4px;
  }
  .lb-podium-medal {
    font-size: 22px;
  }
  .lb-podium-score {
    font-size: 18px;
  }
  .lb-rank-list {
    max-height: 180px;
  }

  .legal-modal-overlay {
    align-items: flex-start;
    padding-top: 5vh;
  }

  .legal-modal-content {
    padding: 30px 15px 20px 15px;
    width: 90%;
    max-height: 80vh;
  }

  .legal-text h3 { font-size: 1.25rem; }
  .legal-text h4 { font-size: 1rem; }
  .legal-text p { font-size: 0.85rem; }
}

/* ============================================================
   🔥 橫向手機模式專用：選單內部滑動防切斷 (零干擾 PC 與直式)
   ============================================================ */
.gasha-modal .legal-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff00aa, #00ffff);
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .menu {
        max-height: 60vh !important;
    }

    .menu-panel {
        max-height: 60vh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 0, 170, 0.5) transparent;
    }

    .menu-panel::-webkit-scrollbar {
        width: 4px;
    }
    .menu-panel::-webkit-scrollbar-track {
        background: transparent;
    }
    .menu-panel::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #ff00aa, #00ffff);
        border-radius: 4px;
    }
}