:root {
  color-scheme: dark;
  --bg: #040604;
  --surface: rgba(12, 17, 14, 0.9);
  --line: rgba(188, 255, 209, 0.16);
  --line-strong: rgba(188, 255, 209, 0.34);
  --text: #edf6ee;
  --muted: #9cab9e;
  --soft: #6f7f73;
  --green: #8aff9a;
  --green-strong: #c9ffd2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 22%, rgba(138, 255, 154, 0.14), transparent 28rem),
    radial-gradient(circle at 9% 42%, rgba(255, 111, 174, 0.08), transparent 24rem),
    linear-gradient(135deg, #020302 0%, #060906 42%, #0c120e 100%);
  letter-spacing: 0;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

body.has-player {
  padding-bottom: 108px;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.16));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(188, 255, 209, 0.1);
  background: rgba(4, 6, 4, 0.78);
  backdrop-filter: blur(16px);
}

.hub-link,
.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hub-link {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hub-mark {
  color: var(--green);
  font-size: 20px;
  letter-spacing: 0.08em;
}

.top-nav a {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  border-color: var(--line);
  color: var(--text);
  outline: none;
}

.app-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 34px clamp(16px, 4vw, 44px) 70px;
}

.library-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 680px;
  color: var(--green-strong);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

.subline {
  max-width: 600px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
}

.head-stats {
  display: grid;
  gap: 6px;
  min-width: 190px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
  text-transform: uppercase;
}

.head-stats span:first-child {
  color: var(--text);
}

.free-use-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(138, 255, 154, 0.26);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(138, 255, 154, 0.07);
  color: var(--muted);
}

.free-use-strip strong {
  color: var(--green-strong);
  font-size: 13px;
  text-transform: uppercase;
}

.free-use-strip span {
  font-size: 13px;
}

.category-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(188, 255, 209, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(138, 255, 154, 0.1), rgba(255, 111, 174, 0.045)),
    rgba(8, 12, 9, 0.74);
  box-shadow: var(--shadow);
}

.category-panel-head,
.filter-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-panel-head span:first-child,
.filter-rail-head span {
  color: var(--green-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-panel-head span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.category-tabs button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(188, 255, 209, 0.16);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(3, 6, 4, 0.62);
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.category-tabs button:hover,
.category-tabs button:focus-visible,
.category-tabs button.is-selected {
  border-color: rgba(138, 255, 154, 0.62);
  background: rgba(138, 255, 154, 0.11);
  color: var(--green-strong);
  outline: none;
}

.category-tabs button:active {
  transform: translateY(1px);
}

.category-tabs span {
  overflow: hidden;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-tabs strong {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 28px;
  border: 1px solid rgba(188, 255, 209, 0.18);
  border-radius: var(--radius);
  padding: 0 8px;
  color: var(--text);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.workbench {
  display: grid;
  grid-template-columns: minmax(230px, 282px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.filter-rail,
.track-surface {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 18, 15, 0.92), rgba(5, 8, 6, 0.9));
  box-shadow: var(--shadow);
}

.filter-rail {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 16px;
}

.filter-rail-head {
  min-height: 38px;
  border-bottom: 1px solid rgba(188, 255, 209, 0.12);
  padding-bottom: 12px;
}

.filter-rail-head strong {
  overflow: hidden;
  max-width: 124px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-block {
  display: grid;
  gap: 10px;
}

label,
.filter-title {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

input[type="search"] {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(2, 4, 3, 0.72);
  color: var(--text);
  outline: none;
}

input[type="search"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(138, 255, 154, 0.12);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.reset-button,
.favorite-filter {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.chip {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 750;
  text-transform: capitalize;
}

.chip:hover,
.reset-button:hover,
.favorite-filter:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.chip.is-selected,
.favorite-filter.is-selected {
  border-color: rgba(138, 255, 154, 0.7);
  background: rgba(138, 255, 154, 0.12);
  color: var(--green-strong);
}

.reset-button {
  width: 100%;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.favorite-filter {
  width: 100%;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.track-surface {
  min-width: 0;
  overflow: hidden;
}

.track-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.track-list-head span:last-child {
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
}

.track-list {
  display: grid;
}

.track-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(120px, 180px) minmax(142px, 188px);
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(188, 255, 209, 0.09);
  background: rgba(8, 12, 9, 0.58);
  cursor: pointer;
}

.track-row:last-child {
  border-bottom: 0;
}

.track-row:hover,
.track-row:focus-visible,
.track-row.is-active {
  background: rgba(17, 29, 21, 0.74);
  outline: none;
}

.track-row.is-active {
  box-shadow: inset 3px 0 0 var(--green);
}

.track-cover {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(138, 255, 154, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 65% 28%, rgba(255, 111, 174, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(138, 255, 154, 0.18), rgba(75, 129, 255, 0.12)),
    #0c120e;
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 16px 30px rgba(0, 0, 0, 0.22);
}

.track-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.46)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 38%);
  opacity: 0.5;
}

.track-cover.has-cover {
  border-color: rgba(201, 255, 210, 0.28);
}

.track-cover.has-cover::after {
  opacity: 0.32;
}

.track-play {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 255, 210, 0.48);
  border-radius: 50%;
  background: rgba(2, 6, 3, 0.68);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  color: var(--green);
}

.track-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.track-row.is-playing .track-play::before {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64% 100%);
}

.track-info {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.title-line {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.title-line strong {
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.title-line span {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inline-preview {
  display: none;
  gap: 7px;
}

.track-row.is-active .inline-preview {
  display: grid;
}

.inline-seek {
  width: min(420px, 100%);
  height: 18px;
  margin: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.inline-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--soft);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(188, 255, 209, 0.14);
  border-radius: var(--radius);
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: capitalize;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(138, 255, 154, 0.45);
  border-radius: var(--radius);
  background: rgba(138, 255, 154, 0.08);
  color: var(--green-strong);
  font-size: 12px;
  font-weight: 850;
}

.download-button:hover,
.download-button:focus-visible {
  border-color: var(--green);
  background: rgba(138, 255, 154, 0.14);
  outline: none;
}

.download-button.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.track-actions {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover,
.icon-button:focus-visible,
.icon-button.is-active {
  border-color: rgba(138, 255, 154, 0.7);
  background: rgba(138, 255, 154, 0.1);
  color: var(--green-strong);
  outline: none;
}

.icon-button:active {
  transform: scale(0.96);
}

.icon-button.is-primary {
  border-color: rgba(138, 255, 154, 0.76);
  background: rgba(138, 255, 154, 0.16);
  color: var(--green-strong);
}

.icon-button.is-large {
  width: 56px;
  height: 56px;
}

.icon-button.is-large svg {
  width: 24px;
  height: 24px;
}

.icon-button[disabled] {
  cursor: not-allowed;
  opacity: 0.36;
}

.empty-state {
  display: grid;
  gap: 8px;
  min-height: 220px;
  place-content: center;
  color: var(--muted);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.empty-state strong {
  color: var(--text);
  font-size: 19px;
}

.player-dock {
  position: fixed;
  right: clamp(12px, 4vw, 36px);
  bottom: 14px;
  left: clamp(12px, 4vw, 36px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(760px, calc(100% - 24px));
  margin: 0 auto;
  border: 1px solid rgba(188, 255, 209, 0.24);
  border-radius: 8px;
  padding: 10px 12px 14px;
  background: rgba(5, 9, 6, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}

.player-dock[hidden],
.player-backdrop[hidden],
.player-sheet[hidden] {
  display: none;
}

.dock-main {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.dock-art,
.sheet-art {
  overflow: hidden;
  border: 1px solid rgba(138, 255, 154, 0.22);
  background:
    radial-gradient(circle at 65% 28%, rgba(255, 111, 174, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(138, 255, 154, 0.22), rgba(255, 111, 174, 0.12)),
    #0c120e;
  background-position: center;
  background-size: cover;
}

.dock-art.has-cover,
.sheet-art.has-cover {
  border-color: rgba(201, 255, 210, 0.32);
}

.dock-art {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.dock-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.dock-copy strong,
.dock-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dock-copy strong {
  font-size: 14px;
  line-height: 1.2;
}

.dock-copy span {
  color: var(--muted);
  font-size: 12px;
}

.dock-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dock-seek {
  grid-column: 1 / -1;
  width: 100%;
  height: 16px;
  margin: 0;
  accent-color: var(--green);
}

.player-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.player-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  margin: 0 auto;
  overflow-y: auto;
  border: 1px solid rgba(188, 255, 209, 0.22);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 10px 18px max(18px, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(16, 25, 18, 0.98), rgba(4, 7, 5, 0.99)),
    var(--bg);
  box-shadow: 0 -30px 70px rgba(0, 0, 0, 0.58);
}

.sheet-grabber {
  width: 48px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(188, 255, 209, 0.24);
}

.sheet-head,
.sheet-progress div,
.sheet-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sheet-kicker {
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet-art {
  display: grid;
  place-items: center;
  width: min(62vw, 260px);
  aspect-ratio: 1;
  margin: 4px auto 0;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sheet-art.has-cover span {
  opacity: 0;
}

.sheet-art span {
  width: 44%;
  height: 44%;
  border: 1px solid rgba(201, 255, 210, 0.38);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 16px rgba(4, 6, 4, 0.7),
    0 0 52px rgba(138, 255, 154, 0.18);
}

.sheet-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.sheet-copy h2 {
  color: var(--green-strong);
  font-size: clamp(26px, 8vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.sheet-copy p {
  color: var(--muted);
  font-size: 14px;
}

.sheet-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.sheet-progress {
  display: grid;
  gap: 8px;
}

.sheet-progress input {
  width: 100%;
  height: 20px;
  margin: 0;
  accent-color: var(--green);
}

.sheet-progress div {
  color: var(--soft);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.sheet-controls {
  gap: 10px;
  justify-content: center;
}

.sheet-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(138, 255, 154, 0.48);
  border-radius: var(--radius);
  background: rgba(138, 255, 154, 0.09);
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sheet-download.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

@media (max-width: 1060px) {
  .category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workbench {
    grid-template-columns: 1fr;
  }

  .filter-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-block,
  .filter-rail-head,
  .reset-button,
  .favorite-filter {
    grid-column: 1 / -1;
  }

  .track-row {
    grid-template-columns: 76px minmax(0, 1fr) 172px;
  }

  .track-cover {
    width: 76px;
  }

  .track-tags {
    grid-column: 2 / 3;
  }

  .track-actions {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 14px 16px;
  }

  .top-nav {
    gap: 2px;
  }

  .top-nav a {
    padding: 8px;
  }

  .app-shell {
    padding: 24px 12px 118px;
  }

  .library-head {
    display: grid;
    gap: 18px;
  }

  .head-stats {
    min-width: 0;
    text-align: left;
  }

  .free-use-strip {
    display: grid;
    gap: 6px;
  }

  .category-panel {
    padding: 12px;
  }

  .category-panel-head {
    display: grid;
    gap: 5px;
  }

  .category-tabs {
    gap: 8px;
  }

  .category-tabs button {
    min-height: 52px;
    padding: 0 11px;
  }

  .category-tabs span {
    font-size: 15px;
  }

  .filter-rail {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .track-list-head {
    display: grid;
    gap: 5px;
  }

  .track-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .track-cover {
    width: 64px;
  }

  .track-play {
    width: 28px;
    height: 28px;
    right: 6px;
    bottom: 6px;
  }

  .track-tags {
    grid-column: 2;
  }

  .track-actions {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .track-actions {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .title-line strong,
  .title-line span {
    white-space: normal;
  }

  .player-dock {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 9px 10px 13px;
  }

  .dock-controls .icon-button:last-child {
    display: none;
  }

  .dock-controls {
    gap: 6px;
  }

  .dock-art {
    width: 40px;
    height: 40px;
  }

  .dock-main {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
