/* stats-mock — shared Apple-style chrome, sheet, glass panels */

:root {
  --sm-bg: #e4e9f0;
  --sm-bg-deep: #d8dfe8;
  --sm-text: #1a2a3a;
  --sm-text-secondary: #5d6d7e;
  --sm-text-muted: #64748b;
  --sm-accent: #2d7a9f;
  --sm-accent-strong: #1e5f7a;
  --sm-hero: #1e3a5f;
  --sm-chrome-bg: rgba(255, 255, 255, 0.62);
  --sm-chrome-border: rgba(255, 255, 255, 0.45);
  --sm-panel-bg: rgba(255, 255, 255, 0.78);
  --sm-panel-border: rgba(255, 255, 255, 0.55);
  --sm-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --sm-shadow-md: 0 8px 32px rgba(15, 23, 42, 0.08);
  --sm-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.14);
  --sm-blur: 20px;
  --sm-radius: 16px;
  --sm-press-scale: 0.97;
  --sm-font: system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", sans-serif;
}

.stats-mock * { box-sizing: border-box; }

.stats-mock {
  margin: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(60, 134, 171, 0.12), transparent 55%),
    linear-gradient(180deg, var(--sm-bg) 0%, var(--sm-bg-deep) 100%);
  font: 100%/1.5 var(--sm-font);
  color: var(--sm-text);
  -webkit-font-smoothing: antialiased;
}

.stats-mock #wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px 48px;
  overflow-x: hidden;
}

/* ── Sticky translucent chrome ── */
.stats-mock .chrome {
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 0 -12px;
  padding: 0 12px;
  background: var(--sm-chrome-bg);
  backdrop-filter: blur(var(--sm-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--sm-blur)) saturate(180%);
  border-bottom: 1px solid var(--sm-chrome-border);
  box-shadow: var(--sm-shadow-sm);
}

.stats-mock .chrome::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 12px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.04), transparent);
}

.stats-mock .chrome-inner {
  padding: 14px 0 12px;
}

.stats-mock h1 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 4px;
}

.stats-mock .page-note,
.stats-mock .subtitle {
  margin: 0 0 12px;
  font-size: 0.75rem;
  color: var(--sm-text-secondary);
  line-height: 1.45;
}

.stats-mock .mock-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(254, 243, 199, 0.9);
  color: #92400e;
  border: 1px solid rgba(252, 211, 77, 0.6);
  vertical-align: middle;
}

.stats-mock .nav {
  display: flex;
  gap: 6px;
  margin: 0 0 10px;
  flex-wrap: wrap;
}

.stats-mock .nav a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--sm-text-secondary);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 100ms ease-out, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.stats-mock .nav a:active {
  transform: scale(var(--sm-press-scale));
}

.stats-mock .nav a.active {
  color: #fff;
  background: var(--sm-accent);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(45, 122, 159, 0.35);
}

.stats-mock .nav a.nav-home {
  background: transparent;
  color: var(--sm-accent);
  border-color: rgba(45, 122, 159, 0.35);
}

.stats-mock .toolbar,
.stats-mock .toolbars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.stats-mock .toolbars {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.stats-mock .toolbar label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sm-text-secondary);
  letter-spacing: 0.01em;
}

.stats-mock .toolbar select,
.stats-mock .toolbar-search input {
  padding: 8px 14px;
  border: 1.5px solid rgba(45, 122, 159, 0.45);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--sm-text);
  background: rgba(255, 255, 255, 0.7);
  min-width: 10em;
  transition: transform 100ms ease-out;
}

.stats-mock .toolbar select:active,
.stats-mock .toolbar-search input:active {
  transform: scale(var(--sm-press-scale));
}

.stats-mock .toolbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
}

.stats-mock .toolbar-search input {
  flex: 1 1 auto;
  min-width: 0;
  min-width: unset;
}

.stats-mock .table-toolbar {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
}

/* ── Pill / segment view toggle ── */
.stats-mock .view-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--sm-shadow-sm);
  gap: 2px;
}

.stats-mock .view-toggle button {
  border: none;
  background: transparent;
  color: var(--sm-text-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 100ms ease-out, background 150ms ease, color 150ms ease;
  -webkit-tap-highlight-color: transparent;
}

.stats-mock .view-toggle button:active,
.stats-mock .view-toggle button.is-pressed {
  transform: scale(var(--sm-press-scale));
}

.stats-mock .view-toggle button.active {
  background: var(--sm-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(45, 122, 159, 0.3);
}

/* ── Error / loading ── */
.stats-mock #error {
  display: none;
  color: #c0392b;
  font-size: 0.875rem;
  padding: 12px 14px;
  background: rgba(253, 236, 234, 0.9);
  border-radius: 10px;
  margin: 16px 0;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.stats-mock #loading[data-loading-panel] {
  min-height: 240px;
  margin-top: 16px;
}

/* ── Glass table panels ── */
.stats-mock .mock-content-region {
  margin-top: 16px;
  will-change: transform, opacity;
}

.stats-mock .mock-content-region.is-transitioning {
  pointer-events: auto;
}

.stats-mock .stats-team-panel {
  background: var(--sm-panel-bg);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--sm-radius);
  border: 1px solid var(--sm-panel-border);
  box-shadow: var(--sm-shadow-md);
}

.stats-mock .stats-table-wrap {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}

.stats-mock .stats-table tbody tr {
  cursor: pointer;
  transition: transform 100ms ease-out, background 120ms ease;
}

.stats-mock .stats-table tbody tr:active {
  transform: scale(0.995);
}

.stats-mock .stats-event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sm-text);
}

.stats-mock .stats-event-location-pin {
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  color: var(--sm-accent);
}

/* ── Games page ── */
.stats-mock #gamesContainer {
  margin-top: 16px;
  will-change: transform, opacity;
}

.stats-mock .game-section + .game-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.stats-mock .chart-box {
  position: relative;
  min-height: 280px;
  background: var(--sm-panel-bg);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--sm-radius);
  border: 1px solid var(--sm-panel-border);
  box-shadow: var(--sm-shadow-md);
  padding: 16px;
}

.stats-mock .scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--sm-panel-bg);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--sm-radius);
  border: 1px solid var(--sm-panel-border);
  box-shadow: var(--sm-shadow-md);
  cursor: pointer;
  transition: transform 100ms ease-out;
  -webkit-tap-highlight-color: transparent;
}

.stats-mock .scoreboard:active,
.stats-mock .game-section:active .chart-box {
  transform: scale(var(--sm-press-scale));
}

.stats-mock .score-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.stats-mock .score-side:first-child { justify-content: flex-end; }
.stats-mock .score-side:last-child { justify-content: flex-start; }

.stats-mock .score-team-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--team-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stats-mock .score-value {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--team-color);
  font-variant-numeric: tabular-nums;
}

.stats-mock .score-divider {
  font-size: 1.5rem;
  font-weight: 300;
  color: #95a5a6;
  flex-shrink: 0;
}

.stats-mock .stats-tables {
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
}

/* ── Cumulative table overrides ── */
.stats-mock .stats-table--cumulative {
  --col-rank-width: 3rem;
  --c-border: #d8dee9;
  --c-meta-h: #475569;
  --c-meta-name-h: #334155;
  --c-meta-bg: rgba(248, 250, 252, 0.85);
  --c-meta-bg-even: rgba(241, 245, 249, 0.9);
  --c-pts-h: #b45309;
  --c-pts-bg: rgba(255, 251, 235, 0.85);
  --c-pts-bg-even: rgba(254, 243, 199, 0.75);
  --c-fg2-h: #4338ca;
  --c-fg2-bg: rgba(238, 242, 255, 0.85);
  --c-fg2-bg-even: rgba(224, 231, 255, 0.75);
  --c-fg3-h: #0369a1;
  --c-fg3-bg: rgba(240, 249, 255, 0.85);
  --c-fg3-bg-even: rgba(224, 242, 254, 0.75);
  --c-ast-h: #15803d;
  --c-ast-bg: rgba(240, 253, 244, 0.85);
  --c-ast-bg-even: rgba(220, 252, 231, 0.75);
  --c-or-h: #7c3aed;
  --c-or-bg: rgba(250, 245, 255, 0.85);
  --c-or-bg-even: rgba(243, 232, 255, 0.75);
  --c-st-h: #1d4ed8;
  --c-st-bg: rgba(239, 246, 255, 0.85);
  --c-st-bg-even: rgba(219, 234, 254, 0.75);
  --c-bs-h: #0f766e;
  --c-bs-bg: rgba(240, 253, 250, 0.85);
  --c-bs-bg-even: rgba(204, 251, 241, 0.75);
  --c-lost-h: #b91c1c;
  --c-lost-bg: rgba(254, 242, 242, 0.85);
  --c-lost-bg-even: rgba(254, 226, 226, 0.75);
  --c-wld-h: #64748b;
  --c-wld-bg: rgba(248, 250, 252, 0.85);
  --c-wld-bg-even: rgba(241, 245, 249, 0.9);
  --c-game-h: #64748b;
  --c-game-bg: rgba(248, 250, 252, 0.85);
  --c-game-bg-even: rgba(241, 245, 249, 0.9);
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
  table-layout: auto;
}

.stats-mock .stats-table--cumulative th,
.stats-mock .stats-table--cumulative td {
  border: 1px solid var(--c-border);
  padding: 8px 6px;
  text-align: center;
  white-space: nowrap;
}

.stats-mock .stats-table--cumulative thead th {
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.35;
  text-shadow: 0 1px 1px rgba(15, 23, 42, 0.35);
}

.stats-mock .stats-table--cumulative th.sortable {
  cursor: pointer;
  user-select: none;
}

.stats-mock .stats-table--cumulative th.sortable:hover {
  filter: brightness(0.92);
}

.stats-mock .stats-table--cumulative th.sort-active {
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.85);
}

.stats-mock .stats-table--cumulative .col-rank {
  width: var(--col-rank-width);
  min-width: var(--col-rank-width);
  max-width: var(--col-rank-width);
  font-weight: 700;
  position: sticky;
  left: 0;
  z-index: 2;
}

.stats-mock .stats-table--cumulative .col-name {
  min-width: 7.5em;
  max-width: 12em;
  text-align: left;
  padding-left: 12px;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 700;
  position: sticky;
  left: var(--col-rank-width);
  z-index: 2;
  border-right: 2px solid #94a3b8;
  box-shadow: 4px 0 8px rgba(15, 23, 42, 0.06);
}

.stats-mock .stats-table--cumulative .col-num {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 600;
}

.stats-mock .stats-table--cumulative thead th.col-rank,
.stats-mock .stats-table--cumulative thead th.col-name {
  z-index: 5;
}

.stats-mock .stats-table--cumulative thead th.col-rank.cat-meta { background: var(--c-meta-h); }
.stats-mock .stats-table--cumulative thead th.col-name.cat-name { background: var(--c-meta-name-h); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.col-rank.cat-meta { background: var(--c-meta-bg-even); }
.stats-mock .stats-table--cumulative tbody tr:not(.row-even) td.col-rank.cat-meta { background: var(--c-meta-bg); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.col-name.cat-name { background: var(--c-meta-bg-even); }
.stats-mock .stats-table--cumulative tbody tr:not(.row-even) td.col-name.cat-name { background: rgba(255, 255, 255, 0.7); }
.stats-mock .stats-table--cumulative td.cat-meta { background: var(--c-meta-bg); color: #1e293b; }
.stats-mock .stats-table--cumulative td.cat-name { background: rgba(255, 255, 255, 0.7); }
.stats-mock .stats-table--cumulative th.cat-pts { background: var(--c-pts-h); }
.stats-mock .stats-table--cumulative td.cat-pts { background: var(--c-pts-bg); }
.stats-mock .stats-table--cumulative th.cat-game,
.stats-mock .stats-table--cumulative td.cat-game { border-left: 2px solid #94a3b8; }
.stats-mock .stats-table--cumulative th.cat-game { background: var(--c-game-h); }
.stats-mock .stats-table--cumulative td.cat-game { background: var(--c-game-bg); }
.stats-mock .stats-table--cumulative th.cat-lost { background: var(--c-lost-h); }
.stats-mock .stats-table--cumulative td.cat-lost { background: var(--c-lost-bg); }
.stats-mock .stats-table--cumulative th.cat-ast { background: var(--c-ast-h); }
.stats-mock .stats-table--cumulative td.cat-ast { background: var(--c-ast-bg); }
.stats-mock .stats-table--cumulative th.cat-or { background: var(--c-or-h); }
.stats-mock .stats-table--cumulative td.cat-or { background: var(--c-or-bg); }
.stats-mock .stats-table--cumulative th.cat-st { background: var(--c-st-h); }
.stats-mock .stats-table--cumulative td.cat-st { background: var(--c-st-bg); }
.stats-mock .stats-table--cumulative th.cat-bs { background: var(--c-bs-h); }
.stats-mock .stats-table--cumulative td.cat-bs { background: var(--c-bs-bg); }
.stats-mock .stats-table--cumulative th.cat-fg2 { background: var(--c-fg2-h); }
.stats-mock .stats-table--cumulative td.cat-fg2 { background: var(--c-fg2-bg); }
.stats-mock .stats-table--cumulative th.cat-fg3 { background: var(--c-fg3-h); }
.stats-mock .stats-table--cumulative td.cat-fg3 { background: var(--c-fg3-bg); }
.stats-mock .stats-table--cumulative th.cat-wld { background: var(--c-wld-h); }
.stats-mock .stats-table--cumulative td.cat-wld { background: var(--c-wld-bg); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-pts { background: var(--c-pts-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-game { background: var(--c-game-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-lost { background: var(--c-lost-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-ast { background: var(--c-ast-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-or { background: var(--c-or-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-st { background: var(--c-st-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-bs { background: var(--c-bs-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-fg2 { background: var(--c-fg2-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-fg3 { background: var(--c-fg3-bg-even); }
.stats-mock .stats-table--cumulative tbody tr.row-even td.cat-wld { background: var(--c-wld-bg-even); }

.stats-mock .cumulative-note,
.stats-mock .cumulative-meta {
  font-size: 0.75rem;
  color: var(--sm-text-muted);
  margin: 0 0 8px;
}

/* ── Bottom sheet ── */
.stats-mock .sheet-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.stats-mock .sheet-root.is-open {
  pointer-events: auto;
}

.stats-mock .sheet-scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: none;
}

.stats-mock .sheet-root.is-open .sheet-scrim {
  background: rgba(15, 23, 42, 0.35);
}

.stats-mock .sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(72vh, 520px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--sm-shadow-lg);
  transform: translateY(100%) scale(0.96);
  transform-origin: bottom center;
  will-change: transform;
  touch-action: none;
  display: flex;
  flex-direction: column;
}

.stats-mock .sheet-grabber {
  flex-shrink: 0;
  padding: 10px 0 4px;
  cursor: grab;
  touch-action: none;
}

.stats-mock .sheet-grabber::before {
  content: "";
  display: block;
  width: 36px;
  height: 5px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.35);
}

.stats-mock .sheet-grabber:active {
  cursor: grabbing;
}

.stats-mock .sheet-content {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 28px;
  -webkit-overflow-scrolling: touch;
}

.stats-mock .sheet-metric-label {
  margin: 0 0 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--sm-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-mock .sheet-metric-name {
  margin: 0 0 16px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--sm-hero);
}

.stats-mock .sheet-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.stats-mock .sheet-stat {
  background: rgba(241, 245, 249, 0.8);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.stats-mock .sheet-stat .lbl {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--sm-text-muted);
  letter-spacing: 0.03em;
}

.stats-mock .sheet-stat .val {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stats-mock .sheet-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--sm-text-secondary);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .stats-mock .stats-tables { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .stats-mock #wrap { padding: 0 6px 32px; }
  .stats-mock .toolbar-search { flex: 1 1 100%; }
  .stats-mock .chart-box { padding: 10px; }
  .stats-mock .scoreboard { gap: 10px; padding: 12px 10px; }
  .stats-mock .score-value { font-size: 1.75rem; }
  .stats-mock .score-team-name { font-size: 0.75rem; }
  .stats-mock .score-divider { font-size: 1.125rem; }
  .stats-mock .game-section + .game-section {
    margin-top: 20px;
    padding-top: 20px;
  }
  .stats-mock .stats-table--cumulative {
    --col-rank-width: 2.6rem;
    font-size: 10px;
  }
  .stats-mock .stats-table--cumulative th,
  .stats-mock .stats-table--cumulative td { padding: 5px 3px; }
  .stats-mock .stats-table--cumulative thead th { font-size: 10px; }
  .stats-mock .stats-table--cumulative .col-rank,
  .stats-mock .stats-table--cumulative .col-name {
    position: static;
    left: auto;
    box-shadow: none;
    border-right: 1px solid #c5cdd6;
  }
  .stats-mock .stats-table--cumulative .col-name {
    min-width: 5.5em;
    max-width: 8em;
    padding-left: 6px;
    padding-right: 8px;
    font-size: 11px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .stats-mock .chrome,
  .stats-mock .stats-team-panel,
  .stats-mock .chart-box,
  .stats-mock .scoreboard,
  .stats-mock .sheet {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .stats-mock .nav a { background: #eef2f6; }
  .stats-mock .toolbar select,
  .stats-mock .toolbar-search input { background: #fff; }
  .stats-mock .view-toggle { background: #eef2f6; }
}

@media (prefers-reduced-motion: reduce) {
  .stats-mock .nav a,
  .stats-mock .toolbar select,
  .stats-mock .view-toggle button,
  .stats-mock .scoreboard,
  .stats-mock .stats-table tbody tr {
    transition: opacity 150ms ease;
  }

  .stats-mock .nav a:active,
  .stats-mock .toolbar select:active,
  .stats-mock .view-toggle button:active,
  .stats-mock .scoreboard:active,
  .stats-mock .stats-table tbody tr:active {
    transform: none;
    opacity: 0.85;
  }

  .stats-mock .mock-content-region,
  .stats-mock #gamesContainer {
    will-change: opacity;
  }
}
