*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

@font-face {
  font-family: 'YekanBakh';
  src: url('yekan/fonts/woff2/YekanBakhFaNum-Regular.woff2') format('woff2'),
       url('yekan/fonts/woff/YekanBakhFaNum-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'YekanBakh';
  src: url('yekan/fonts/woff2/YekanBakhFaNum-Light.woff2') format('woff2'),
       url('yekan/fonts/woff/YekanBakhFaNum-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'YekanBakh';
  src: url('yekan/fonts/woff2/YekanBakhFaNum-SemiBold.woff2') format('woff2'),
       url('yekan/fonts/woff/YekanBakhFaNum-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'YekanBakh';
  src: url('yekan/fonts/woff2/YekanBakhFaNum-Bold.woff2') format('woff2'),
       url('yekan/fonts/woff/YekanBakhFaNum-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'YekanBakh';
  src: url('yekan/fonts/woff2/YekanBakhFaNum-Black.woff2') format('woff2'),
       url('yekan/fonts/woff/YekanBakhFaNum-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'YekanBakh';
  src: url('yekan/fonts/woff2/YekanBakhFaNum-ExtraBold.woff2') format('woff2'),
       url('yekan/fonts/woff/YekanBakhFaNum-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

/* ── RTL / Farsi Font ── */
[dir="rtl"] body,
[dir="rtl"] h2,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] input,
[dir="rtl"] button,
[dir="rtl"] label,
[dir="rtl"] .subtitle,
[dir="rtl"] .logo span,
[dir="rtl"] footer {
  font-family: 'YekanBakh', sans-serif;
}

/* ── Dark Theme (default) ── */
:root {
  --bg-primary: #0a0e1a;
  --bg-card: rgba(15, 20, 35, 0.75);
  --bg-input: rgba(20, 25, 45, 0.8);
  --bg-hover: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.06);
  --border-focus: rgba(129, 140, 248, 0.5);
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #818cf8;
  --accent-hover: #a5b4fc;
  --accent-blue: #38bdf8;
  --gradient: linear-gradient(135deg, #818cf8, #38bdf8);
  --danger: #f87171;
  --success: #4ade80;
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.2s ease;
  --glow-opacity: 1;
}

/* ── Light Theme ── */
[data-theme="light"] {
  --bg-primary: #f0f2f5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-input: rgba(240, 242, 245, 0.9);
  --bg-hover: rgba(0, 0, 0, 0.04);
  --border: rgba(0, 0, 0, 0.08);
  --border-focus: rgba(99, 102, 241, 0.5);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --accent-blue: #0ea5e9;
  --gradient: linear-gradient(135deg, #6366f1, #0ea5e9);
  --danger: #ef4444;
  --success: #22c55e;
  --glow-opacity: 0.4;
}

::selection {
  background: white;
  color: var(--accent-blue);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100dvh;
  overflow-x: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  user-select: text;
  -webkit-user-select: text;
}

h2,
p,
span,
.subtitle,
.logo span,
.file-name,
.popup-value span,
footer,
footer a {
  user-select: text;
  -webkit-user-select: text;
  cursor: default;
  caret-color: transparent;
  -webkit-user-modify: read-only;
}

/* ── Background Glows ── */
.hero-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: var(--glow-opacity);
  transition: opacity 0.3s ease;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.18),
    transparent 70%
  );
  top: -200px;
  left: -200px;
  animation: glowFloat 12s ease-in-out infinite alternate;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.12),
    transparent 70%
  );
  bottom: -200px;
  right: -200px;
  animation: glowFloat 15s ease-in-out infinite alternate-reverse;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.1),
    transparent 70%
  );
  top: 40%;
  right: 10%;
  animation: glowFloat 10s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(40px) scale(1.1);
  }
}

/* ── Layout ── */
.app-wrapper {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.logo svg {
  flex-shrink: 0;
}

/* ── Header Controls ── */
.header-controls {
  position: absolute;
  right: 24px;
  display: flex;
  gap: 6px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.icon-btn:hover {
  background: var(--border);
  color: var(--text-primary);
}

.lang-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#langToggle {
  width: auto;
  padding: 0 10px;
  gap: 5px;
}

/* ── Main ── */
.main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 0;
}

/* ── Card ── */
.container {
  width: 100%;
  max-width: 460px;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 8px 40px rgba(0, 0, 0, 0.4);
  animation: cardIn 0.5s ease-out;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

[data-theme="light"] .container {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.02),
    0 8px 40px rgba(0, 0, 0, 0.08);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
}

.card-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Drop Zone ── */
.drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.01);
  margin-bottom: 20px;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

[data-theme="light"] .drop-zone {
  background: rgba(0, 0, 0, 0.01);
}

.drop-zone:hover {
  border-color: var(--border-focus);
  background: rgba(129, 140, 248, 0.04);
}

[data-theme="light"] .drop-zone:hover {
  background: rgba(99, 102, 241, 0.04);
}

.drop-zone.drag-over {
  border-color: var(--accent);
  background: rgba(129, 140, 248, 0.08);
  transform: scale(1.01);
}

[data-theme="light"] .drop-zone.drag-over {
  background: rgba(99, 102, 241, 0.08);
}

.drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.drop-icon {
  color: var(--text-muted);
  transition: color var(--transition);
}

.drop-zone:hover .drop-icon {
  color: var(--accent);
}

.drop-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.browse-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.drop-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.drop-zone-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(129, 140, 248, 0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  overflow: hidden;
}

[data-theme="light"] .drop-zone-selected {
  background: rgba(99, 102, 241, 0.08);
}

.drop-zone-selected span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.remove-file-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 8px;
  color: var(--danger);
  cursor: pointer;
  opacity: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}

.remove-file-btn:hover {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

/* ── Options Grid ── */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field label svg {
  color: var(--text-muted);
}

.field input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition);
}

.field input::placeholder {
  color: var(--text-muted);
}

.field input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

[data-theme="light"] .field input:focus {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ── Buttons ── */
.btn-primary {
  width: 100%;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(129, 140, 248, 0.3);
}

[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── Progress ── */
.progress-section {
  margin-top: 16px;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}

[data-theme="light"] .progress-track {
  background: rgba(0, 0, 0, 0.06);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 99px;
  transition: width 0.15s ease;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  direction: ltr;
  text-align: left;
}

/* ── Storage Widget ── */
.storage-widget {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

[data-theme="light"] .storage-widget {
  background: rgba(0, 0, 0, 0.02);
}

.storage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  direction: ltr;
}

.storage-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}

[data-theme="light"] .storage-track {
  background: rgba(0, 0, 0, 0.06);
}

.storage-fill {
  height: 100%;
  width: 0%;
  background: var(--success);
  border-radius: 99px;
  transition: all 0.4s ease;
}

.storage-fill.low {
  background: var(--danger);
}

/* ── Status ── */
#status {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  min-height: 18px;
}

/* ── Footer ── */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 24px 20px 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--accent-hover);
}

/* ── Result Overlay ── */
.result {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 8, 18, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  overflow-y: auto;
}

[data-theme="light"] .result {
  background: rgba(0, 0, 0, 0.3);
}

/* ── Popup ── */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 360px;
  max-width: 90vw;
  padding: 28px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
  z-index: 200;
  animation: popupIn 0.25s ease-out;
}

[data-theme="light"] .popup {
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.popup p {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  word-break: break-word;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.popup .popup-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.popup .popup-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="light"] .popup .popup-value {
  background: rgba(0, 0, 0, 0.03);
}

.popup .popup-value span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popup .copy-btn {
  width: auto;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  color: var(--accent);
  background: rgba(129, 140, 248, 0.1);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

[data-theme="light"] .popup .copy-btn {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

.popup .copy-btn:hover {
  background: rgba(129, 140, 248, 0.2);
}

.popup .file-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-word;
}

#previewBox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

#previewBox img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.2s;
}

#previewBox video {
  max-width: 100%;
  max-height: 300px;
  border-radius: 10px;
}

#previewBox audio {
  width: 100%;
}

/* ── Download Progress in Popup ── */
#downloadProgressContainer {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 4px;
}

[data-theme="light"] #downloadProgressContainer {
  background: rgba(0, 0, 0, 0.06);
}

#downloadProgressBar {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 99px;
  transition: width 0.2s ease;
}

#downloadStatusText {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  direction: ltr;
}

/* ── Input Box (Password in popup) ── */
#inputBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#inputBox span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 500;
}

#inputBox input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition);
}

#inputBox input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

/* ── Popup Buttons ── */
#fatherElement {
  width: 100%;
  display: flex;
  gap: 10px;
}

#dlBtn,
#closeBtn {
  flex: 1;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

#dlBtn {
  color: #fff;
  background: var(--gradient);
}

#dlBtn:hover {
  box-shadow: 0 4px 16px rgba(129, 140, 248, 0.3);
  transform: translateY(-1px);
}

#closeBtn {
  color: var(--text-secondary);
  background: var(--bg-hover);
  border: 1px solid var(--border);
}

#closeBtn:hover {
  background: var(--border);
  color: var(--text-primary);
}

/* ── Upload Result Popup (popupbox) ── */
.popupbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(5, 8, 18, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .popupbox {
  background: rgba(0, 0, 0, 0.3);
}

#row0 {
  position: absolute;
  top: 16px;
  right: 16px;
}

.CloseSvg {
  padding: 6px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248, 113, 113, 0.3);
  fill: var(--danger);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.CloseSvg:hover {
  background: var(--danger);
  fill: white;
  border-color: var(--danger);
}

#timer {
  color: var(--success);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── RTL Support ── */
[dir="rtl"] .header-controls {
  right: auto;
  left: 24px;
}

@media (max-width: 520px) {
  [dir="rtl"] .header-controls {
    right: auto;
    left: 12px;
  }

  [dir="rtl"] .site-header {
    padding-right: 16px;
    padding-left: 100px;
  }
}

[dir="rtl"] .field label {
  direction: rtl;
}

[dir="rtl"] .popup-value span {
  direction: rtl;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .site-header {
    padding: 16px 16px;
    padding-right: 100px;
    padding-left: 100px;
  }

  .header-controls {
    right: 12px;
  }

  .logo span {
    font-size: 14px;
  }

  #langToggle .lang-label {
    display: none;
  }

  #langToggle {
    padding: 0;
    width: 38px;
  }

  .main {
    padding: 12px 16px 0;
  }

  .container {
    padding: 24px 20px;
    border-radius: 16px;
  }

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

  .options-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .popup {
    width: 92vw;
    padding: 24px 20px;
  }

  .popup .popup-value {
    font-size: 13px;
  }

  .popup .copy-btn {
    font-size: 10px;
    padding: 4px 8px;
  }

  #fatherElement {
    flex-direction: column;
  }

  #dlBtn,
  #closeBtn {
    width: 100%;
  }

  .drop-zone {
    padding: 24px 16px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 20px 16px;
  }

  .logo span {
    font-size: 13px;
  }

  .header-controls {
    gap: 4px;
  }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}
