:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #667086;
  --soft: #f6f9fc;
  --line: #dae3ee;
  --mint: #16ad84;
  --mint-soft: #e8f8f2;
  --blue: #3478f6;
  --blue-soft: #eaf2ff;
  --coral: #ff7a3d;
  --coral-soft: #fff0e8;
  --green: #45b96f;
  --green-soft: #eaf8ef;
  --amber: #f6b23b;
  --danger: #ef4b5f;
  --shadow: 0 16px 40px rgba(28, 46, 77, 0.08);
  --radius: 8px;
  --sidebar: 236px;
  color-scheme: light;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 250, 254, 0.82), transparent 260px),
    var(--bg);
}

button,
select,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(52, 120, 246, 0.22);
  outline-offset: 2px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-sprite * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite #icon-star *,
.icon-sprite #icon-play *,
.icon-sprite #icon-pause * {
  fill: currentColor;
  stroke: none;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  min-height: 100dvh;
}

.auth-screen {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(234, 248, 242, 0.86), rgba(246, 249, 252, 0.94)),
    #fff;
}

.auth-screen[hidden] {
  display: none;
}

.auth-panel {
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.auth-brand h1 {
  margin: 0;
  color: var(--mint);
  font-size: 28px;
  line-height: 1.15;
}

.auth-brand p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.auth-tab {
  height: 38px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
}

.auth-tab.is-active {
  color: var(--mint);
  background: #fff;
  box-shadow: 0 1px 5px rgba(28, 46, 77, 0.08);
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.auth-form[hidden] {
  display: none;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #344056;
  font-size: 13px;
  font-weight: 800;
}

.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-error {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 800;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100dvh;
  padding: 28px 12px 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--mint);
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--mint);
  border-radius: 8px;
}

.brand svg,
.nav-item svg,
.topbar svg,
.panel svg,
.room-actions svg {
  width: 20px;
  height: 20px;
}

.nav-list {
  display: grid;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  width: 100%;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius);
  color: #334057;
  background: transparent;
  font-size: 16px;
  font-weight: 650;
  text-align: left;
}

.nav-item svg {
  color: #596579;
}

.nav-item.is-active,
.nav-item:hover {
  color: #087a62;
  background: #e9f7f4;
}

.nav-item.is-active svg,
.nav-item:hover svg {
  color: var(--mint);
}

.student-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 12px;
  border-top: 1px solid var(--line);
}

.student-card strong,
.teacher-block strong {
  display: block;
  font-size: 14px;
}

.student-card span,
.teacher-block span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #0f6d5a;
  background: linear-gradient(145deg, #dff7ef, #eaf2ff);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(20, 32, 51, 0.1);
  font-size: 15px;
  font-weight: 800;
}

.avatar-photo {
  color: #fff;
  background: linear-gradient(145deg, #19b28a, #3478f6);
}

.avatar.is-online {
  border-color: var(--mint);
}

.main {
  min-width: 0;
  padding: 24px 26px 32px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.date-line,
.section-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.topbar h1,
.panel h2 {
  margin: 0;
  letter-spacing: 0;
}

.topbar h1 {
  font-size: 28px;
  line-height: 1.2;
}

.panel h2 {
  font-size: 19px;
  line-height: 1.28;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.student-select {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.student-select select {
  min-width: 112px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 750;
}

.account-pill strong {
  color: var(--ink);
  font-size: 14px;
}

.sync-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #207c64;
  background: var(--mint-soft);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.sync-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(22, 173, 132, 0.12);
}

.sync-status.is-offline {
  color: #9c3b24;
  background: var(--coral-soft);
}

.sync-status.is-offline i {
  background: var(--coral);
}

.primary-action,
.secondary-action,
.ghost-action,
.text-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 780;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.primary-action {
  min-width: 138px;
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #18b589, #0f9e7b);
  box-shadow: 0 10px 22px rgba(22, 173, 132, 0.24);
}

.primary-action.is-running {
  background: linear-gradient(135deg, #ff7a3d, #ef4b5f);
  box-shadow: 0 10px 22px rgba(239, 75, 95, 0.2);
}

.primary-action:hover,
.secondary-action:hover,
.ghost-action:hover,
.text-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.progress-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 154px;
  padding: 18px 22px;
}

.progress-ring {
  --ring: 0%;
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: conic-gradient(var(--mint) var(--ring), #ebf0f5 0);
}

.progress-ring::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(218, 227, 238, 0.75);
}

.progress-ring span {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 850;
}

.progress-panel p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.mini-streak {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  color: #92650c;
  background: #fff7e4;
  border: 1px solid #f8dfa8;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 750;
}

.mini-streak svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.stat-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 154px;
  padding: 20px;
}

.stat-card > div {
  min-width: 0;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
}

.stat-icon.blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.stat-icon.green {
  color: var(--green);
  background: var(--green-soft);
}

.stat-icon.coral {
  color: var(--coral);
  background: var(--coral-soft);
}

.stat-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.bar {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #e9eef4;
}

.bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 260ms ease;
}

#restBar {
  background: var(--green);
}

#lifeBar {
  background: var(--coral);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 0;
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.segment {
  min-width: 58px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 760;
}

.segment.is-active {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 1px 5px rgba(28, 46, 77, 0.08);
}

.task-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.task-row {
  display: grid;
  grid-template-columns: 58px 34px minmax(118px, 1fr) minmax(74px, 0.55fr) minmax(112px, 0.8fr) 72px 34px;
  grid-template-areas: "time icon title goal progress controls done";
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 6px 8px;
  border: 1px solid #e5ecf3;
  border-radius: var(--radius);
  background: #fff;
}

.task-time {
  grid-area: time;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.task-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  color: var(--task-color);
  background: var(--task-bg);
}

.task-title {
  grid-area: title;
}

.task-title strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.task-title span,
.task-goal {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.task-goal {
  grid-area: goal;
}

.task-progress {
  grid-area: progress;
  min-width: 0;
}

.task-progress .value-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  color: #4c5a70;
  font-size: 12px;
  font-weight: 750;
}

.task-controls {
  grid-area: controls;
  display: grid;
  grid-template-columns: 32px 32px;
  align-items: center;
  gap: 5px;
}

.step-button,
.done-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #4f5b6e;
  background: #fff;
}

.step-button:hover,
.done-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.step-button svg,
.done-button svg {
  width: 16px;
  height: 16px;
}

.task-value {
  display: none;
  place-items: center;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #344056;
  background: var(--soft);
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.done-button[aria-pressed="true"] {
  color: #fff;
  border-color: var(--mint);
  background: var(--mint);
}

.done-button {
  grid-area: done;
}

.room-panel {
  overflow: hidden;
}

.room-heading {
  padding-bottom: 14px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #207c64;
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.live-dot i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(22, 173, 132, 0.12);
}

.room-image {
  display: block;
  width: calc(100% - 36px);
  height: 174px;
  margin: 0 18px 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.room-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 18px 14px;
}

.teacher-block,
.room-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.room-timer svg {
  color: var(--blue);
}

.room-timer span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.room-timer strong {
  display: block;
  margin-top: 4px;
  font-size: 23px;
  line-height: 1;
}

.classmates {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 16px;
}

.classmates .avatar {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.classmates span {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.room-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 18px;
}

.secondary-action,
.ghost-action {
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.secondary-action {
  color: #fff;
  border-color: var(--mint);
  background: var(--mint);
}

.secondary-action.is-active {
  color: var(--mint);
  background: var(--mint-soft);
}

.ghost-action {
  color: #3f4a60;
}

.ghost-action.is-active {
  color: #0b7560;
  border-color: #a8decf;
  background: var(--mint-soft);
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.75fr) minmax(280px, 0.7fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.table-wrap {
  padding: 12px 18px 18px;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 8px;
  border-bottom: 1px solid #e7edf4;
  text-align: left;
  font-size: 14px;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

td strong {
  font-size: 14px;
}

.rank-badge {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: #a8b2c2;
  font-size: 12px;
  font-weight: 850;
}

.rank-badge.top {
  background: linear-gradient(135deg, var(--amber), var(--coral));
}

.student-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.student-cell .avatar {
  width: 30px;
  height: 30px;
  font-size: 12px;
  box-shadow: none;
}

.delta-up {
  color: var(--mint);
  font-weight: 800;
}

.delta-down {
  color: var(--danger);
  font-weight: 800;
}

.text-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
  font-size: 13px;
}

.icon-button {
  width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  color: #495469;
  background: #fff;
}

.icon-button.is-active {
  color: #fff;
  border-color: var(--danger);
  background: var(--danger);
}

.social-panel,
.reading-panel {
  padding-bottom: 18px;
}

.limit-readout {
  padding: 24px 18px 10px;
}

.limit-readout strong {
  display: inline-block;
  color: var(--danger);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
}

.limit-readout span {
  color: var(--muted);
  font-weight: 750;
}

.social-bar {
  margin: 0 18px 18px;
}

.social-bar span {
  background: var(--danger);
}

.range-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--mint);
}

.blocked-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px;
}

.blocked-apps span {
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #ffd1c1;
  border-radius: var(--radius);
  color: #a24518;
  background: var(--coral-soft);
  font-size: 12px;
  font-weight: 780;
}

.teacher-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px 18px 0;
}

.teacher-controls[hidden],
#viewStudentWrap[hidden] {
  display: none;
}

.reading-icon {
  color: var(--mint);
}

.reading-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 24px 18px 16px;
}

.reading-count strong {
  color: var(--mint);
  font-size: 46px;
  line-height: 1;
}

.reading-count span {
  color: #506178;
  font-weight: 800;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  padding: 0 18px;
}

.day-dot {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.day-dot.done {
  color: #fff;
  border-color: var(--mint);
  background: var(--mint);
}

@media (max-width: 1180px) {
  .overview-grid,
  .lower-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .progress-panel {
    grid-column: span 2;
  }

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

@media (max-width: 880px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    padding: 0;
  }

  .nav-list {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-item {
    width: auto;
    min-height: 44px;
    white-space: nowrap;
  }

  .student-card {
    display: none;
  }

  .main {
    padding: 18px 28px 28px 14px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .primary-action {
    width: 100%;
    min-width: 0;
  }

  .student-select {
    width: 100%;
    min-width: 0;
  }

  .student-select select {
    min-width: 0;
    flex: 1;
  }

  .sync-status {
    justify-content: center;
    width: 100%;
  }

  .overview-grid,
  .lower-grid {
    grid-template-columns: 1fr;
  }

  .progress-panel {
    grid-column: auto;
  }

  .task-row {
    grid-template-columns: 54px 38px minmax(0, 1fr) 42px;
    grid-template-areas:
      "time icon title done"
      ". . goal goal"
      ". . progress progress"
      "controls controls controls controls";
    gap: 9px;
    min-height: 92px;
  }

  .task-icon {
    width: 38px;
    height: 38px;
  }

  .task-controls {
    grid-template-columns: 34px 1fr 34px;
  }

  .task-value {
    display: grid;
  }

}

@media (max-width: 560px) {
  .brand {
    font-size: 20px;
  }

  .topbar h1 {
    font-size: 24px;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .student-select,
  .primary-action {
    width: 100%;
    min-width: 0;
  }

  .student-select select {
    min-width: 0;
    flex: 1;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .segment {
    min-width: 0;
  }

  .progress-panel,
  .stat-card {
    grid-template-columns: 1fr;
  }

  .progress-ring {
    width: 104px;
    height: 104px;
  }

  .room-meta,
  .room-actions {
    grid-template-columns: 1fr;
  }

  .room-image {
    height: 150px;
  }

  .classmates {
    flex-wrap: wrap;
  }

  .classmates span {
    width: 100%;
    margin-left: 0;
  }
}

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