:root {
  color-scheme: light;
  --bg: #fff0fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #35223d;
  --muted: #7d6888;
  --border: rgba(125, 74, 141, 0.18);
  --primary: #d64fa6;
  --primary-strong: #a72d80;
  --accent: #8e6bea;
  --gold: #ffc94a;
  --sky: #67d8ff;
  --mint: #7ce3b1;
  --liquid: rgba(214, 79, 166, 0.24);
  --liquid-strong: rgba(142, 107, 234, 0.42);
  --shadow: 0 22px 54px rgba(133, 64, 145, 0.18);
  --nav-height: 78px;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #20152d;
  --surface: rgba(47, 31, 67, 0.9);
  --surface-strong: #3c2856;
  --text: #fff5fb;
  --muted: #d9bedf;
  --border: rgba(255, 222, 247, 0.18);
  --primary: #ff8bd6;
  --primary-strong: #ffd0ee;
  --accent: #a88cff;
  --gold: #ffd866;
  --sky: #82dcff;
  --mint: #8af0c0;
  --liquid: rgba(255, 139, 214, 0.24);
  --liquid-strong: rgba(168, 140, 255, 0.42);
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--bg), #ffffff 28%), var(--bg) 44%, color-mix(in srgb, var(--accent), transparent 72%)),
    linear-gradient(42deg, color-mix(in srgb, var(--primary), transparent 72%), color-mix(in srgb, var(--gold), transparent 82%) 42%, color-mix(in srgb, var(--sky), transparent 76%));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(31, 15, 43, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.is-focus-mode::before {
  opacity: 1;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  padding: 18px 16px calc(var(--nav-height) + 24px);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 2px 22px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 2.4rem;
  line-height: 1;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.theme-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), #ffffff 20%), color-mix(in srgb, var(--surface), var(--primary) 8%)),
    var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.view-stack {
  display: grid;
}

.view {
  grid-area: 1 / 1;
}

[hidden] {
  display: none !important;
}

.panel {
  width: 100%;
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), #ffffff 22%), color-mix(in srgb, var(--surface), var(--primary) 5%)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.timer-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

body.is-focus-mode[data-focus-view='timer'] .timer-panel,
body.is-focus-mode[data-focus-view='routine'] .routine-runner-panel {
  z-index: 20;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 0 2px color-mix(in srgb, var(--gold), transparent 28%);
}

body.is-focus-mode[data-focus-view='timer'] .timer-panel .timer-content,
body.is-focus-mode[data-focus-view='routine'] .routine-runner-panel .timer-content {
  filter: saturate(1.15);
}

.timer-panel::after,
.routine-runner-panel::after,
.progress-panel::after {
  content: "✦";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  color: color-mix(in srgb, var(--gold), transparent 18%);
  font-size: 1.6rem;
  opacity: 0.76;
  pointer-events: none;
}

.routine-runner-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.timer-layout {
  display: grid;
  gap: 16px;
}

.routine-layout {
  display: grid;
  gap: 16px;
}

.progress-layout {
  display: grid;
  gap: 16px;
}

.timer-content {
  position: relative;
  z-index: 2;
}

.timer-emoji-bg {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: -18px;
  font-size: 9rem;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-8deg);
}

.liquid-fill {
  --fill-level: 0%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: var(--fill-level);
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--liquid), var(--liquid-strong)),
    linear-gradient(90deg, color-mix(in srgb, var(--primary), transparent 70%), color-mix(in srgb, var(--gold), transparent 80%), color-mix(in srgb, var(--sky), transparent 76%));
  box-shadow: inset 0 20px 44px rgba(255, 255, 255, 0.18);
  transition: height 260ms linear;
}

.liquid-fill::before,
.liquid-fill::after {
  content: "";
  position: absolute;
  right: -18%;
  top: -24px;
  left: -18%;
  height: 48px;
  border-radius: 45%;
  background: color-mix(in srgb, var(--surface-strong), var(--primary) 18%);
  opacity: 0.58;
  animation: liquid-wave 5.8s linear infinite;
}

.liquid-fill::after {
  top: -18px;
  opacity: 0.34;
  animation-duration: 8.4s;
  animation-direction: reverse;
}

.timer-panel.is-complete,
.routine-runner-panel.is-complete {
  animation: complete-pop 620ms ease both;
}

.timer-state {
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.countdown {
  margin: 8px 0 18px;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 10px 28px color-mix(in srgb, var(--primary), transparent 70%);
}

.timer-controls,
.form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  justify-content: stretch;
}

.timer-controls .primary-button,
.timer-controls .danger-button {
  grid-column: span 2;
}

.routine-controls #routine-start-button {
  grid-column: span 2;
}

.routine-controls #routine-pause-button,
.routine-controls #routine-skip-button {
  grid-column: span 1;
}

.panel-icon {
  display: block;
  margin-bottom: auto;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.18;
}

.progress-panel {
  position: relative;
  overflow: hidden;
}

.progress-panel .panel-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  opacity: 0.1;
}

.xp-total {
  margin: 6px 0 18px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.progress-track {
  width: 100%;
  height: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong), transparent 18%);
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--sky), var(--mint), var(--gold));
  box-shadow: 0 0 22px color-mix(in srgb, var(--primary), transparent 62%);
  transition: width 260ms ease;
}

.level-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.level-meta span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-strong), transparent 12%);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.level-meta strong {
  color: var(--text);
  font-size: 1.1rem;
}

.reward-list {
  display: grid;
}

.reward-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.reward-row strong {
  color: var(--primary-strong);
}

.level-panel {
  min-height: 0;
}

.sparkle-feed-panel {
  min-height: 0;
}

.level-list {
  display: grid;
  gap: 10px;
}

.level-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-strong), transparent 18%);
}

.level-row small {
  grid-column: 1 / -1;
  font-weight: 800;
}

.level-row.is-unlocked {
  border-color: color-mix(in srgb, var(--primary), transparent 34%);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--primary), transparent 86%), color-mix(in srgb, var(--gold), transparent 88%)),
    var(--surface);
}

.level-row.is-unlocked small {
  color: var(--primary-strong);
}

.sparkle-feed {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.sparkle-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), var(--gold) 8%), color-mix(in srgb, var(--surface), var(--primary) 6%)),
    var(--surface);
}

.sparkle-entry div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.sparkle-entry span,
.sparkle-entry small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sparkle-entry strong {
  color: var(--primary-strong);
}

#reset-progress-button {
  margin-top: 10px;
}

.settings-form {
  width: 100%;
}

.setting-row,
.field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.stacked-field {
  display: grid;
  align-items: start;
  justify-content: stretch;
  gap: 8px;
  padding: 12px 0;
}

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

.duration-grid .stacked-field:last-child {
  grid-column: span 2;
}

.reward-settings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.step-fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px 0 18px;
  border: 0;
  border-top: 1px solid var(--border);
}

.step-fieldset legend {
  padding: 0;
  color: var(--muted);
  font-weight: 800;
}

.setting-row span,
.field span {
  display: grid;
  gap: 3px;
}

small {
  color: var(--muted);
}

input[type='checkbox'] {
  width: 24px;
  height: 24px;
  accent-color: var(--primary);
  flex: 0 0 auto;
}

select {
  min-width: 128px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--surface-strong);
  color: var(--text);
}

input[type='text'],
input[type='number'] {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-strong);
  color: var(--text);
}

.primary-button,
.secondary-button,
.danger-button,
.icon-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.primary-button {
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--primary), transparent 74%);
}

.secondary-button {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-strong), var(--sky) 9%), color-mix(in srgb, var(--surface-strong), var(--primary) 5%)),
    var(--surface-strong);
  border-color: var(--border);
  color: var(--text);
}

.danger-button {
  background: linear-gradient(145deg, #f05f8f, #c93868);
  color: #ffffff;
}

.primary-button:disabled,
.secondary-button:disabled,
.danger-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

:root[data-theme='dark'] .primary-button {
  color: #2b1538;
}

.status-message {
  min-height: 1.5em;
  margin: 14px 0 0;
  font-weight: 700;
}

.timer-list-section {
  display: grid;
  gap: 12px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading span {
  display: grid;
  min-width: 36px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold), #ffffff 18%), color-mix(in srgb, var(--primary), #ffffff 42%));
  color: var(--primary-strong);
  font-weight: 900;
}

.timer-list {
  display: grid;
  gap: 10px;
}

.routine-steps {
  display: grid;
  gap: 10px;
  margin: 8px 0 16px;
}

.timer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), #ffffff 18%), color-mix(in srgb, var(--surface), var(--accent) 6%)),
    var(--surface);
  box-shadow: 0 10px 24px rgba(12, 57, 59, 0.08);
}

.timer-card.is-selected {
  border-color: color-mix(in srgb, var(--primary), transparent 18%);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary), transparent 78%);
}

.timer-select {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  border: 0;
  padding: 12px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.timer-select strong,
.timer-select small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timer-card-emoji {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--primary), transparent 72%), color-mix(in srgb, var(--gold), transparent 72%));
  font-size: 1.65rem;
}

.timer-card-actions {
  display: flex;
  gap: 6px;
  padding-right: 10px;
}

.icon-button {
  display: grid;
  width: auto;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  padding: 0 9px;
  background: var(--surface-strong);
  border-color: var(--border);
  color: var(--text);
  font-size: 0.78rem;
}

.danger-icon {
  color: #be3144;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 35%);
}

.step-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), var(--gold) 8%), color-mix(in srgb, var(--surface), var(--sky) 7%)),
    var(--surface);
}

.step-card strong,
.step-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.step-progress {
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 800;
}

.upcoming-panel {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.upcoming-panel h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.upcoming-panel ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.bottom-nav {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 720px;
  height: var(--nav-height);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), #ffffff 18%), color-mix(in srgb, var(--surface), var(--primary) 7%)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.decision-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5, 18, 18, 0.58);
  backdrop-filter: blur(16px);
}

.decision-card {
  width: min(100%, 420px);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), #ffffff 18%), color-mix(in srgb, var(--surface), transparent 2%)),
    var(--surface);
  box-shadow: var(--shadow);
}

.decision-card::before {
  content: "★";
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold), var(--primary));
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary), transparent 58%);
}

.celebration-card::before {
  display: none;
}

.decision-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

#decision-missed {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-strong), var(--primary) 12%), color-mix(in srgb, var(--surface-strong), var(--accent) 8%)),
    var(--surface-strong);
  border-color: color-mix(in srgb, var(--primary), transparent 44%);
  color: var(--text);
}

.celebration-card {
  text-align: center;
}

.celebration-star {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: conic-gradient(from 20deg, var(--primary), var(--accent), var(--sky), var(--mint), var(--gold), var(--primary));
  color: #ffffff;
  font-size: 2.4rem;
  box-shadow: 0 16px 36px color-mix(in srgb, var(--primary), transparent 52%);
}

.celebration-card .primary-button {
  margin-top: 18px;
}

.bonus-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface), var(--primary) 12%), color-mix(in srgb, var(--surface), var(--sky) 10%)),
    var(--surface);
}

.bonus-panel::before {
  position: absolute;
  top: 14px;
  right: 14px;
  content: "✨";
  font-size: clamp(3rem, 18vw, 6rem);
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}

.nav-item {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-item span:last-child {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-item.is-active {
  background: linear-gradient(145deg, color-mix(in srgb, var(--primary), transparent 76%), color-mix(in srgb, var(--gold), transparent 80%));
  color: var(--primary-strong);
}

@media (min-width: 760px) {
  .app-shell {
    padding: 34px 28px 118px;
  }

  .view-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .panel {
    min-height: 320px;
    padding: 32px;
  }

  .timer-panel {
    min-height: 480px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .countdown {
    font-size: 7.4rem;
  }

  .timer-emoji-bg {
    font-size: 15rem;
  }

  .panel-icon {
    font-size: 10rem;
  }

  .xp-total {
    font-size: 4.2rem;
  }

  .timer-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: start;
  }

  .routine-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: start;
  }

  .progress-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: start;
  }

  .level-panel {
    grid-column: 1 / -1;
  }

  .sparkle-feed-panel {
    grid-column: 1 / -1;
  }

  .level-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .level-row {
    grid-template-columns: 1fr;
  }

  .timer-list-section {
    grid-column: 1 / -1;
  }

  .routine-runner-panel {
    min-height: 520px;
  }

  .timer-controls {
    grid-template-columns: repeat(4, minmax(88px, 112px));
    justify-content: center;
    gap: 12px;
  }

  .timer-controls .primary-button,
  .timer-controls .danger-button {
    grid-column: span 1;
  }

  .routine-controls {
    grid-template-columns: repeat(3, minmax(88px, 112px));
  }

  .duration-grid {
    grid-template-columns: 1fr 1fr 88px;
  }

  .duration-grid .stacked-field:last-child {
    grid-column: span 1;
  }

  .reward-settings-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .step-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .step-actions {
    grid-column: auto;
    grid-template-columns: repeat(3, auto);
  }

  .decision-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes complete-pop {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.018);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes liquid-wave {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(14%);
  }
}

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

  .liquid-fill {
    transition: none;
  }
}
