.statistics-page {
  min-height: 100vh;
  background: var(--background);
}

.statistics-page [hidden] {
  display: none !important;
}

body.statistics-modal-open {
  overflow: hidden;
}

.statistics-main {
  width: min(1120px, calc(100% - 32px));
  min-height: 70vh;
  margin: 0 auto;
  padding: 116px 0 48px;
}

.statistics-hero {
  margin-bottom: 38px;
}

.statistics-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 0;
}

.statistics-hero h1 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.statistics-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: hsl(0 0% 56%);
  font-size: 16px;
  line-height: 1.7;
}

.statistics-view-switch,
.statistics-period-switch,
.statistics-days-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid hsl(0 0% 100% / 0.09);
  border-radius: 12px;
  background: hsl(0 0% 5% / 0.82);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.035);
}

.statistics-period-switch {
  position: relative;
  isolation: isolate;
  --period-offset: 0%;
}

.statistics-days-switch {
  position: relative;
  isolation: isolate;
  --days-offset: 200%;
}

.statistics-period-switch::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  z-index: 0;
  width: calc((100% - 8px) / 4);
  border-radius: 8px;
  content: "";
  background: hsl(0 0% 100% / 0.09);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.07), 0 4px 12px hsl(0 0% 0% / 0.22);
  transform: translateX(var(--period-offset));
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.statistics-days-switch::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  z-index: 0;
  width: calc((100% - 8px) / 4);
  border-radius: 8px;
  background: hsl(0 0% 100% / 0.09);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.07), 0 4px 12px hsl(0 0% 0% / 0.22);
  content: "";
  transform: translateX(var(--days-offset));
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.statistics-view-switch {
  position: relative;
  isolation: isolate;
  --view-offset: 100%;
  margin-bottom: 22px;
}

.statistics-view-switch::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  z-index: 0;
  width: calc((100% - 8px) / 2);
  border-radius: 8px;
  background: hsl(0 0% 100% / 0.09);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.07), 0 4px 12px hsl(0 0% 0% / 0.22);
  content: "";
  transform: translateX(var(--view-offset));
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.statistics-view-switch button,
.statistics-period-switch button,
.statistics-days-switch button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: transparent;
  color: hsl(0 0% 50%);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.statistics-view-switch button {
  width: 128px;
}

.statistics-period-switch button {
  width: 76px;
  padding-right: 8px;
  padding-left: 8px;
}

.statistics-days-switch button {
  width: 52px;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}

.statistics-view-switch button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.statistics-view-switch button:hover,
.statistics-period-switch button:hover,
.statistics-days-switch button:hover {
  color: hsl(0 0% 82%);
}

.statistics-view-switch button[aria-selected="true"],
.statistics-period-switch button[aria-pressed="true"],
.statistics-days-switch button[aria-pressed="true"] {
  background: transparent;
  color: hsl(0 0% 96%);
  box-shadow: none;
}

.statistics-view-switch button:focus-visible,
.statistics-period-switch button:focus-visible,
.statistics-days-switch button:focus-visible {
  box-shadow: 0 0 0 2px hsl(0 0% 100% / 0.2);
}

.statistics-panel {
  width: 100%;
  min-height: 440px;
}

.statistics-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.statistics-toolbar .statistics-period-switch {
  grid-column: 2;
  justify-self: center;
}

.statistics-toolbar .statistics-range {
  grid-column: 3;
  justify-self: end;
}

.statistics-range,
.statistics-updated {
  color: hsl(0 0% 43%);
  font-size: 11px;
  letter-spacing: 0.025em;
}

.statistics-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid hsl(4 76% 58% / 0.22);
  border-radius: 10px;
  background: hsl(4 76% 58% / 0.06);
  color: hsl(4 70% 72%);
  font-size: 12px;
}

.statistics-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.statistics-summary,
.statistics-card,
.statistics-chart {
  transition: opacity 180ms ease;
}

.statistics-summary.is-loading,
.statistics-card.is-loading,
.statistics-chart.is-loading {
  opacity: 0.48;
  pointer-events: none;
}

.statistics-metric,
.statistics-card,
.statistics-live-total,
.statistics-modal {
  border: 1px solid hsl(0 0% 100% / 0.09);
  background:
    linear-gradient(180deg, hsl(0 0% 100% / 0.035), transparent 42%),
    hsl(0 0% 4.6% / 0.94);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.035), 0 18px 50px hsl(0 0% 0% / 0.18);
}

.statistics-metric {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: center;
  overflow: hidden;
  padding: 22px;
  border-radius: 14px;
}

.statistics-metric::after {
  position: absolute;
  right: -38px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, hsl(0 0% 100% / 0.045), transparent 68%);
  pointer-events: none;
}

.statistics-metric > span,
.statistics-metric > strong,
.statistics-metric > small {
  display: block;
}

.statistics-metric > span {
  color: hsl(0 0% 48%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.statistics-metric > strong {
  margin-top: 6px;
  color: hsl(0 0% 96%);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.statistics-metric > strong.is-text {
  overflow: hidden;
  font-size: 19px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.statistics-metric > small {
  margin-top: 7px;
  color: hsl(0 0% 40%);
  font-size: 10px;
}

.statistics-card {
  margin-top: 14px;
  padding: 22px;
  border-radius: 15px;
}

.statistics-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.statistics-card-head h2 {
  margin: 3px 0 0;
  color: hsl(0 0% 94%);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.statistics-card-head > span {
  color: hsl(0 0% 43%);
  font-size: 11px;
}

.statistics-section-label {
  color: hsl(0 0% 42%);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.statistics-game-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.statistics-game-row {
  display: grid;
  width: 100%;
  grid-template-columns: 28px 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.statistics-game-row:hover,
.statistics-game-row:focus-visible {
  background: hsl(0 0% 100% / 0.045);
}

.statistics-rank {
  color: hsl(0 0% 38%);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.statistics-game-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid hsl(0 0% 100% / 0.09);
  border-radius: 10px;
  place-items: center;
  background: hsl(0 0% 100% / 0.045);
  color: hsl(0 0% 60%);
  font-size: 13px;
  font-weight: 700;
}

.statistics-game-icon.is-large {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.statistics-game-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statistics-game-main {
  min-width: 0;
}

.statistics-game-name {
  display: block;
  overflow: hidden;
  color: hsl(0 0% 79%);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.statistics-bar-track {
  display: block;
  height: 3px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: hsl(0 0% 100% / 0.055);
}

.statistics-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, hsl(0 0% 52%), hsl(0 0% 86%));
  box-shadow: 0 0 10px hsl(0 0% 100% / 0.12);
  transform-origin: left;
  animation: statistics-bar-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.statistics-game-value,
.statistics-live-count {
  color: hsl(0 0% 86%);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.statistics-empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 7px;
  color: hsl(0 0% 38%);
  text-align: center;
}

.statistics-empty svg {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.statistics-empty strong {
  color: hsl(0 0% 66%);
  font-size: 13px;
}

.statistics-empty span {
  font-size: 11px;
}

.statistics-empty.is-compact {
  min-height: 180px;
}

.statistics-live-total {
  position: relative;
  display: grid;
  width: 100%;
  height: 176px;
  overflow: hidden;
  min-height: 176px;
  padding: 20px 25px;
  border-radius: 15px;
  box-sizing: border-box;
  grid-template-rows: auto minmax(0, 1fr);
}

.statistics-live-total::after {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, hsl(145 72% 52% / 0.09), transparent 66%);
  transform: translateY(-50%);
  pointer-events: none;
}

.statistics-live-total > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: hsl(0 0% 57%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.statistics-live-total > strong {
  display: flex;
  min-width: 5ch;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  color: hsl(0 0% 98%);
  font-size: clamp(68px, 8vw, 88px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.statistics-live-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 14px;
}

.statistics-live-grid .statistics-card {
  display: flex;
  height: auto;
  min-height: 0;
  flex-direction: column;
  overflow: visible;
  min-width: 0;
  box-sizing: border-box;
}

.statistics-live-list {
  display: grid;
  min-height: 0;
  flex: 0 0 auto;
  align-content: start;
  overflow: visible;
}

.statistics-live-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 8px 7px;
  border-radius: 8px;
  color: inherit;
  transition: background-color 150ms ease;
}

button.statistics-live-row {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

a.statistics-live-row:hover,
button.statistics-live-row:hover,
button.statistics-live-row:focus-visible {
  background: hsl(0 0% 100% / 0.04);
}

.statistics-live-row .statistics-game-name {
  flex: 1 1 auto;
  text-align: left;
}

.statistics-live-count {
  min-width: 30px;
  text-align: right;
}

[data-statistics-live-executors] .statistics-live-row {
  display: grid;
  width: 100%;
  min-height: 62px;
  padding: 10px 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

[data-statistics-live-executors] .statistics-game-name {
  color: hsl(0 0% 84%);
  font-size: 15px;
  font-weight: 600;
}

[data-statistics-live-executors] .statistics-live-count {
  min-width: 44px;
  font-size: 16px;
  font-weight: 650;
}

.statistics-updated {
  margin-top: 18px;
  text-align: right;
}

@keyframes statistics-bar-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.statistics-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  overflow-y: auto;
  padding: 24px;
  place-items: center;
  background: hsl(0 0% 0% / 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: statistics-backdrop-in 180ms ease-out both;
}

.statistics-modal {
  width: min(940px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 24px;
  border-radius: 18px;
  animation: statistics-modal-in 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.statistics-modal-head,
.statistics-modal-toolbar,
.statistics-modal-game,
.statistics-modal-actions {
  display: flex;
  align-items: center;
}

.statistics-modal-head {
  justify-content: space-between;
  gap: 24px;
}

.statistics-modal-game {
  min-width: 0;
  gap: 13px;
}

.statistics-modal-game h2 {
  overflow: hidden;
  margin: 3px 0 0;
  color: hsl(0 0% 96%);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.statistics-modal-game p {
  margin: 5px 0 0;
  color: hsl(0 0% 44%);
  font-size: 10px;
}

.statistics-modal-actions {
  gap: 8px;
}

.statistics-play-button,
.statistics-modal-close {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(0 0% 100% / 0.12);
  border-radius: 9px;
  background: hsl(0 0% 100% / 0.055);
  color: hsl(0 0% 82%);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
}

.statistics-play-button {
  padding: 0 14px;
}

.statistics-modal-close {
  width: 38px;
  padding: 0;
  cursor: pointer;
}

.statistics-modal-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.statistics-play-button:hover,
.statistics-modal-close:hover {
  border-color: hsl(0 0% 100% / 0.24);
  background: hsl(0 0% 100% / 0.09);
  color: white;
}

.statistics-modal-toolbar {
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.statistics-modal-total {
  color: hsl(0 0% 50%);
  font-size: 11px;
}

.statistics-modal-total strong {
  color: hsl(0 0% 88%);
  font-size: 13px;
}

.statistics-chart {
  position: relative;
  height: 310px;
  margin-top: 20px;
  padding: 14px 12px 8px;
  border: 1px solid hsl(0 0% 100% / 0.065);
  border-radius: 12px;
  background: hsl(0 0% 2.7% / 0.72);
}

.statistics-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.statistics-chart-grid {
  stroke: hsl(0 0% 100% / 0.065);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.statistics-chart-axis-label {
  fill: hsl(0 0% 40%);
  font-size: 10px;
  font-family: "Lexend", sans-serif;
}

.statistics-chart-bar {
  fill: url(#statistics-bar-gradient);
  cursor: crosshair;
  opacity: 0.82;
  transition: fill 160ms ease, opacity 160ms ease;
}

.statistics-chart-bar:hover,
.statistics-chart-bar:focus,
.statistics-chart-bar.is-selected {
  fill: hsl(0 0% 94%);
  opacity: 1;
  outline: none;
}

.statistics-chart-bar.is-selected {
  stroke: hsl(0 0% 100% / 0.72);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.statistics-chart-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid hsl(0 0% 100% / 0.12);
  border-radius: 9px;
  background: hsl(0 0% 2% / 0.96);
  box-shadow: 0 14px 35px hsl(0 0% 0% / 0.45);
  color: hsl(0 0% 97%);
  transform: translate(-50%, calc(-100% - 12px));
  transition: left 260ms cubic-bezier(0.22, 1, 0.36, 1), top 260ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.statistics-chart-tooltip strong,
.statistics-chart-tooltip span {
  display: block;
  white-space: nowrap;
}

.statistics-chart-tooltip strong {
  font-size: 12px;
  font-weight: 650;
}

.statistics-chart-tooltip span {
  margin-top: 4px;
  color: hsl(0 0% 61%);
  font-size: 11px;
}

.statistics-table-view {
  margin-top: 14px;
  border: 1px solid hsl(0 0% 100% / 0.065);
  border-radius: 10px;
  background: hsl(0 0% 100% / 0.018);
}

.statistics-table-view summary {
  padding: 13px 14px;
  color: hsl(0 0% 55%);
  font-size: 11px;
  cursor: pointer;
}

.statistics-table-scroll {
  max-height: 250px;
  overflow: auto;
  border-top: 1px solid hsl(0 0% 100% / 0.06);
}

.statistics-table-view table {
  width: 100%;
  border-collapse: collapse;
  color: hsl(0 0% 65%);
  font-size: 11px;
}

.statistics-table-view th,
.statistics-table-view td {
  padding: 10px 14px;
  border-bottom: 1px solid hsl(0 0% 100% / 0.045);
  text-align: left;
}

.statistics-table-view th:last-child,
.statistics-table-view td:last-child {
  text-align: right;
}

.statistics-table-view th {
  color: hsl(0 0% 40%);
  font-weight: 600;
  text-transform: uppercase;
}

.statistics-unsupported-modal {
  width: min(620px, 100%);
}

.statistics-unsupported-total {
  margin: 24px 0 10px;
  color: hsl(0 0% 52%);
  font-size: 12px;
}

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

.statistics-unsupported-row {
  display: grid;
  min-height: 64px;
  align-items: center;
  gap: 16px;
  padding: 10px 13px;
  border: 1px solid hsl(0 0% 100% / 0.065);
  border-radius: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  background: hsl(0 0% 100% / 0.025);
}

.statistics-unsupported-row strong,
.statistics-unsupported-row small {
  display: block;
}

.statistics-unsupported-row strong {
  overflow: hidden;
  color: hsl(0 0% 84%);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.statistics-unsupported-row small {
  margin-top: 5px;
  color: hsl(0 0% 42%);
  font-size: 10px;
}

@keyframes statistics-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes statistics-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 760px) {
  .statistics-main {
    width: min(100% - 24px, 1120px);
    padding-top: 90px;
  }

  .statistics-hero-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .statistics-summary,
  .statistics-live-grid {
    grid-template-columns: 1fr;
  }

  .statistics-live-total {
    height: 158px;
    min-height: 158px;
  }

  .statistics-live-grid .statistics-card {
    height: auto;
    min-height: 0;
  }

  .statistics-toolbar {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .statistics-period-switch {
    width: 100%;
  }

  .statistics-period-switch button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding: 0 8px;
  }

  .statistics-modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .statistics-modal {
    width: 100%;
    max-height: 92vh;
    padding: 18px 14px 20px;
    border-radius: 18px 18px 0 0;
  }

  .statistics-modal-head {
    align-items: flex-start;
  }

  .statistics-modal-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .statistics-chart {
    height: 260px;
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media (max-width: 480px) {
  .statistics-hero h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .statistics-hero p {
    font-size: 14px;
  }

  .statistics-view-switch {
    display: flex;
    width: 100%;
  }

  .statistics-view-switch button {
    width: auto;
    flex: 1 1 0;
  }

  .statistics-metric {
    min-height: 126px;
  }

  .statistics-card {
    padding: 16px 10px;
  }

  .statistics-game-row {
    grid-template-columns: 22px 38px minmax(0, 1fr) auto;
    gap: 9px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .statistics-game-icon {
    width: 38px;
    height: 38px;
  }

  .statistics-game-value {
    font-size: 11px;
  }

  .statistics-modal-game .statistics-game-icon {
    display: none;
  }

  .statistics-days-switch {
    display: flex;
    width: 100%;
  }

  .statistics-days-switch button {
    flex: 1 1 0;
    padding: 0 8px;
  }

  .statistics-unsupported-row {
    gap: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .statistics-unsupported-row .statistics-live-count {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .statistics-bar-fill,
  .statistics-modal-backdrop,
  .statistics-modal {
    animation: none;
  }

  .statistics-game-row,
  .statistics-view-switch button,
  .statistics-period-switch button,
  .statistics-days-switch button {
    transition-duration: 0.01ms;
  }

  .statistics-view-switch::before,
  .statistics-period-switch::before,
  .statistics-days-switch::before,
  .statistics-chart-tooltip {
    transition-duration: 0.01ms;
  }
}
