/* ───────────────────────── design tokens ───────────────────────── */
:root {
  --bg:            #0b0b0f;
  --bg-elev:       #141419;
  --bg-elev-2:     #1c1c23;
  --line:          #26262f;
  --text:          #f2f2f5;
  --text-dim:      #9a9aa8;
  --text-faint:    #6b6b7a;
  --accent:        #7c5cff;
  --accent-2:      #ff5c9d;
  --accent-soft:   rgba(124, 92, 255, .16);
  --danger:        #ff6b6b;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  --tabbar-h: 56px;
  --mini-h: 62px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);

  --ease: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  overscroll-behavior-y: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 15px/1.45 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
        system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }
ol, ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
[hidden] { display: none !important; }

.ic {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}
/* Solid glyphs read better filled */
.ic use[href="#i-play"], .ic use[href="#i-pause"],
.ic use[href="#i-next"], .ic use[href="#i-prev"],
.ic use[href="#i-home"] { fill: currentColor; stroke-width: 0; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--text);
  transition: background .16s, transform .12s, color .16s;
}
.icon-btn:active { transform: scale(.9); background: rgba(255,255,255,.07); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  background: var(--bg-elev-2);
  transition: transform .12s, opacity .16s;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
}
.btn--ghost { background: rgba(255,255,255,.08); }
.btn[disabled] { opacity: .5; pointer-events: none; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: var(--text-dim);
  font-size: 13px; font-weight: 500;
}
.chip .ic { width: 16px; height: 16px; }
.chip:active { transform: scale(.96); }
.chip.is-on { background: var(--accent-soft); color: #c9bcff; }

/* ───────────────────────── first-run setup ───────────────────────── */
.setup {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  background:
    radial-gradient(120% 80% at 50% 0%, #1a1330 0%, transparent 60%),
    var(--bg);
}
.setup__card {
  width: min(380px, 100%);
  display: flex; flex-direction: column; gap: 12px;
  text-align: center;
}
.setup__logo {
  width: 68px; height: 68px; margin: 0 auto 6px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
}
.setup__logo .ic { width: 34px; height: 34px; }
.setup h1 { font-size: 26px; letter-spacing: -.02em; }
.setup p { color: var(--text-dim); font-size: 14px; margin-bottom: 8px; }
.setup input {
  height: 48px; padding: 0 16px;
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  outline: none;
}
.setup input:focus { border-color: var(--accent); }
.setup__error { color: var(--danger); font-size: 13px; }

/* ───────────────────────── shell ───────────────────────── */
.app { display: flex; flex-direction: column; height: 100%; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 6px;
  padding: calc(var(--safe-t) + 10px) 12px 10px;
  background: linear-gradient(var(--bg) 60%, rgba(11,11,15,0));
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.topbar__title {
  font-size: 26px; font-weight: 700; letter-spacing: -.02em;
  padding-left: 4px;
}
.topbar__back { margin-left: -6px; }

.view {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 calc(var(--tabbar-h) + var(--mini-h) + var(--safe-b) + 20px);
  outline: none;
}
.view.has-mini { }

.section { margin: 22px 0; }
.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 16px 10px;
}
.section__head h2 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.section__head button { font-size: 13px; color: var(--accent); font-weight: 600; }

/* horizontal card rail */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 148px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 2px 16px 6px;
  /* Without this the snapport starts at the padding box, so the browser
     immediately scrolls the first card flush against the screen edge. */
  scroll-padding-left: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.card { scroll-snap-align: start; text-align: left; }
.card__art {
  position: relative;
  width: 148px; height: 148px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-elev-2);
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.card--round .card__art { border-radius: 50%; }
.card__art img { width: 100%; height: 100%; object-fit: cover; }
.card__title {
  margin-top: 8px; font-size: 13.5px; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  /* Reserve both lines so subtitles stay on a common baseline across a rail. */
  min-height: 2.7em;
}
.card__sub {
  font-size: 12px; color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card:active { transform: scale(.97); }
.card { transition: transform .12s; }

/* track rows */
.rows { padding: 0 8px; }
.row {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 7px 8px;
  border-radius: var(--r-md);
  text-align: left;
  transition: background .15s;
}
.row:active { background: rgba(255,255,255,.06); }
.row.is-current .row__title { color: #c9bcff; }
.row__art {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  object-fit: cover; background: var(--bg-elev-2); flex: none;
}
.row__meta { min-width: 0; flex: 1; }
.row__title {
  font-size: 14.5px; font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.row__sub {
  font-size: 12.5px; color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.row__dur { font-size: 12px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
.row__more { color: var(--text-faint); }
.row__num {
  width: 22px; text-align: center; flex: none;
  color: var(--text-faint); font-size: 13px; font-variant-numeric: tabular-nums;
}

/* detail header (album / artist / playlist) */
.detail { padding: 0 16px; }
.detail__hero {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 6px 0 18px; text-align: center;
}
.detail__art {
  width: 190px; height: 190px; border-radius: var(--r-lg);
  object-fit: cover; background: var(--bg-elev-2);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}
.detail--artist .detail__art { border-radius: 50%; }
.detail__title { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.detail__sub { color: var(--text-dim); font-size: 13.5px; }
.detail__actions { display: flex; gap: 10px; margin-top: 4px; }

/* search */
.searchbar {
  position: sticky; top: 0; z-index: 10;
  padding: 0 16px 12px;
  background: linear-gradient(var(--bg) 70%, rgba(11,11,15,0));
}
.searchbar__field {
  display: flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 14px;
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.searchbar__field .ic { color: var(--text-faint); width: 18px; height: 18px; }
.searchbar input {
  flex: 1; min-width: 0;
  background: none; border: 0; outline: none;
  font-size: 16px; /* 16px stops iOS zoom-on-focus */
}
.searchbar input::placeholder { color: var(--text-faint); }

.segmented {
  display: flex; gap: 8px; padding: 0 16px 12px;
  overflow-x: auto; scrollbar-width: none;
}
.segmented::-webkit-scrollbar { display: none; }
.segmented .chip { flex: none; }

.suggest { padding: 0 16px; }
.suggest button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 4px; text-align: left;
  color: var(--text-dim); font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}

/* states */
.state { padding: 60px 32px; text-align: center; color: var(--text-dim); }
.state h3 { font-size: 17px; color: var(--text); margin-bottom: 6px; }
.state p { font-size: 13.5px; }
.spinner {
  width: 26px; height: 26px; margin: 0 auto 14px;
  border: 2.5px solid rgba(255,255,255,.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--bg-elev) 25%, var(--bg-elev-2) 37%, var(--bg-elev) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s ease infinite;
  border-radius: var(--r-md);
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ───────────────────────── mini player ───────────────────────── */
.mini {
  position: fixed; z-index: 30;
  left: 8px; right: 8px;
  bottom: calc(var(--tabbar-h) + var(--safe-b) + 6px);
  height: var(--mini-h);
  display: flex; align-items: center; gap: 4px;
  padding: 0 8px 0 8px;
  border-radius: var(--r-md);
  background: rgba(28,28,35,.82);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  overflow: hidden;
  animation: mini-in .32s var(--ease);
}
@keyframes mini-in { from { transform: translateY(90px); opacity: 0; } }
.mini__progress {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: rgba(255,255,255,.1);
}
.mini__progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .25s linear;
}
.mini__open {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 11px;
  text-align: left; height: 100%;
}
.mini__art {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  object-fit: cover; background: var(--bg-elev-2); flex: none;
}
.mini__meta { min-width: 0; display: flex; flex-direction: column; }
.mini__title {
  font-size: 14px; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mini__artist {
  font-size: 12px; color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mini__btn { width: 42px; height: 42px; }

/* ───────────────────────── tab bar ───────────────────────── */
.tabbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 31;
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: calc(var(--tabbar-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: rgba(11,11,15,.86);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.tab {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  color: var(--text-faint);
  font-size: 10.5px; font-weight: 500;
  transition: color .15s;
}
.tab .ic { width: 21px; height: 21px; }
.tab.is-active { color: var(--text); }
.tab:active { transform: scale(.94); }

/* ───────────────────────── now playing ───────────────────────── */
.np {
  position: fixed; inset: 0; z-index: 60;
  display: flex; flex-direction: column;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform .42s var(--ease);
  overflow: hidden;
}
.np.is-open { transform: translateY(0); }
.np__bg {
  position: absolute; inset: -20%;
  background-size: cover; background-position: center;
  filter: blur(72px) saturate(180%) brightness(.55);
  opacity: .75;
  transform: scale(1.25);
  transition: background-image .4s;
}
.np__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,15,.35), rgba(11,11,15,.9));
}
.np__inner {
  position: relative; z-index: 1;
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  padding: calc(var(--safe-t) + 8px) 26px calc(var(--safe-b) + 18px);
}
.np__head {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 -10px 8px;
}
.np__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  padding: 0 8px;
}
.np__artwrap {
  flex: 1; min-height: 0;
  display: grid; place-items: center;
  padding: 10px 0 22px;
}
.np__art {
  width: 100%; max-width: min(78vw, 360px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-xl);
  background: var(--bg-elev-2);
  box-shadow: 0 26px 60px rgba(0,0,0,.6);
  transition: transform .45s var(--ease);
}
.np.is-paused .np__art { transform: scale(.9); }

.np__meta { display: flex; align-items: center; gap: 14px; }
.np__text { min-width: 0; flex: 1; }
.np__text h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.np__text p {
  font-size: 15px; color: var(--text-dim); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.np__fav.is-on { color: var(--accent-2); }
.np__fav.is-on .ic { fill: currentColor; }

.np__seek { margin: 18px 0 2px; }
.np__times {
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 22px; background: none; outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 5px; border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--accent) 0 var(--pct, 0%),
    rgba(255,255,255,.18) var(--pct, 0%) 100%);
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px; height: 13px; margin-top: -4px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.5);
}
input[type=range]::-moz-range-track {
  height: 5px; border-radius: 3px; background: rgba(255,255,255,.18);
}
input[type=range]::-moz-range-progress { height: 5px; border-radius: 3px; background: var(--accent); }
input[type=range]::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: #fff; }

.np__controls {
  display: flex; align-items: center; justify-content: space-between;
  margin: 16px 0 6px;
}
.np__skip { width: 56px; height: 56px; }
.np__skip .ic { width: 30px; height: 30px; }
.np__play {
  width: 68px; height: 68px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff; color: #101014;
  box-shadow: 0 8px 26px rgba(0,0,0,.45);
  transition: transform .12s;
}
.np__play:active { transform: scale(.92); }
.np__play .ic { width: 30px; height: 30px; margin-left: 0; }
.np__toggle { color: var(--text-faint); position: relative; }
.np__toggle.is-on { color: var(--accent); }
.np__repeat-badge {
  position: absolute; bottom: 4px; right: 6px;
  font-size: 9px; font-weight: 800;
  background: var(--accent); color: #fff;
  border-radius: 999px; padding: 0 4px; line-height: 12px;
}
.np__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 8px;
}
.np__status { font-size: 11.5px; color: var(--text-faint); text-align: center; flex: 1; }

/* drawers inside now-playing */
.drawer {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column;
  background: rgba(16,16,21,.92);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  padding: calc(var(--safe-t) + 10px) 8px calc(var(--safe-b) + 12px);
  animation: drawer-in .3s var(--ease);
}
@keyframes drawer-in { from { transform: translateY(24px); opacity: 0; } }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px 10px;
}
.drawer__head h3 { font-size: 18px; font-weight: 700; }
.queue { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0 4px; }
.queue li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px; border-radius: var(--r-md);
}
.queue li.is-current { background: var(--accent-soft); }
.queue li.is-dragging { opacity: .45; }
.queue li.is-over { box-shadow: inset 0 2px 0 var(--accent); }
.queue__grip { color: var(--text-faint); touch-action: none; padding: 4px; cursor: grab; }
.queue__main { flex: 1; min-width: 0; text-align: left; }
.lyrics {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 4px 18px 20px;
  font-size: 17px; line-height: 1.7; color: #dcdce6;
  white-space: pre-wrap;
}

/* ───────────────────────── action sheet ───────────────────────── */
.sheet { position: fixed; inset: 0; z-index: 80; display: flex; align-items: flex-end; }
.sheet__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.55); animation: fade .2s; }
@keyframes fade { from { opacity: 0; } }
.sheet__panel {
  position: relative; width: 100%;
  padding: 8px 10px calc(var(--safe-b) + 10px);
  animation: sheet-in .32s var(--ease);
}
@keyframes sheet-in { from { transform: translateY(100%); } }
.sheet__head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  background: var(--bg-elev-2);
  border-bottom: 1px solid var(--line);
}
.sheet__head img { width: 44px; height: 44px; border-radius: var(--r-sm); object-fit: cover; }
.sheet__actions {
  border-radius: 0 0 var(--r-md) var(--r-md);
  background: var(--bg-elev-2);
  overflow: hidden;
}
.sheet__actions button {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 15px 16px; text-align: left;
  font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.sheet__actions button:last-child { border-bottom: 0; }
.sheet__actions button:active { background: rgba(255,255,255,.06); }
.sheet__actions .ic { color: var(--text-dim); }
.sheet__cancel {
  width: 100%; margin-top: 8px; padding: 15px;
  border-radius: var(--r-md);
  background: var(--bg-elev-2);
  font-weight: 600;
}

/* ───────────────────────── toast ───────────────────────── */
.toast {
  position: fixed; z-index: 90;
  left: 50%; transform: translateX(-50%);
  bottom: calc(var(--tabbar-h) + var(--mini-h) + var(--safe-b) + 22px);
  max-width: 88vw;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(40,40,50,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13.5px; font-weight: 500;
  box-shadow: 0 8px 26px rgba(0,0,0,.5);
  animation: toast-in .26s var(--ease);
  pointer-events: none;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 14px); } }

/* ───────────────────────── install banner ───────────────────────── */
.install {
  position: fixed; z-index: 40;
  left: 8px; right: 8px;
  bottom: calc(var(--tabbar-h) + var(--safe-b) + 8px);
  display: flex; align-items: center; gap: 12px;
  padding: 12px 8px 12px 14px;
  border-radius: var(--r-md);
  background: rgba(28,28,35,.92);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.55);
  transform: translateY(140%);
  transition: transform .3s var(--ease);
}
.install.is-in { transform: translateY(0); }
/* Sit above the mini player when a track is loaded. */
.install.has-mini { bottom: calc(var(--tabbar-h) + var(--mini-h) + var(--safe-b) + 14px); }

.install__icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
}
.install__icon .ic { width: 22px; height: 22px; color: #fff; }
.install__body { flex: 1; min-width: 0; }
.install__title { font-size: 14px; font-weight: 600; }
.install__text { font-size: 12.5px; color: var(--text-dim); margin-top: 2px; }
.install__inline { width: 15px; height: 15px; vertical-align: -3px; color: var(--accent); }
.install__go { height: 34px; padding: 0 16px; margin-top: 9px; font-size: 13px; }
.install__x { width: 34px; height: 34px; flex: none; align-self: flex-start; color: var(--text-dim); }

@media (min-width: 720px) {
  .install { left: 50%; transform: translate(-50%, 140%); max-width: 460px; }
  .install.is-in { transform: translate(-50%, 0); }
}

/* ───────────────────────── wide screens ───────────────────────── */
@media (min-width: 720px) {
  .view { max-width: 900px; margin: 0 auto; width: 100%; }
  .rail { grid-auto-columns: 170px; }
  .card__art { width: 170px; height: 170px; }
  .np__inner { max-width: 460px; margin: 0 auto; width: 100%; }
  .drawer { max-width: 560px; left: 50%; transform: translateX(-50%); }
  .sheet__panel { max-width: 460px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
