@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
.uplot, .uplot *, .uplot :before, .uplot :after {
  box-sizing: border-box;
}

.uplot {
  width: max-content;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.5;
}

.uplot .title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.uplot .wrap {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

.uplot .over, .uplot .under {
  position: absolute;
  overflow: hidden;
}

.uplot canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.uplot .legend {
  text-align: center;
  margin: auto;
  font-size: 14px;
}

.uplot .legend.inline {
  display: block;
}

.uplot .legend.inline * {
  display: inline-block;
}

.uplot .legend.inline tr {
  margin-right: 16px;
}

.uplot .legend th {
  font-weight: 600;
}

.uplot .legend th > * {
  vertical-align: middle;
  display: inline-block;
}

.uplot .legend .ident {
  width: 1em;
  height: 1em;
  border: 2px solid #0000;
  margin-right: 4px;
}

.uplot .legend.inline th:after {
  content: ":";
  vertical-align: middle;
}

.uplot .legend .series > * {
  padding: 4px;
}

.uplot .legend .series th {
  cursor: pointer;
}

.uplot .legend .off > * {
  opacity: .3;
}

.uplot .select {
  pointer-events: none;
  background: #00000012;
  position: absolute;
}

.uplot .select.off {
  display: none;
}

.uplot .cursor-x, .uplot .cursor-y {
  pointer-events: none;
  will-change: transform;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
}

.uplot .cursor-x {
  height: 100%;
  border-right: 1px dashed #607d8b;
}

.uplot .cursor-y {
  width: 100%;
  border-bottom: 1px dashed #607d8b;
}

.uplot .cursor-pt {
  filter: brightness(85%);
  pointer-events: none;
  will-change: transform;
  z-index: 100;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

@font-face {
  font-family: icomoon;
  src: url("icomoon.f7eef27e.ttf") format("truetype"), url("icomoon.826fedc0.woff") format("woff"), url("icomoon.cb96eb9d.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-star:before {
  content: "";
}

.icon-star-o:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-eye:before {
  content: "";
}

.icon-eye-slash:before {
  content: "";
}

.icon-cogs:before, .icon-gears:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-sort-amount-desc:before {
  content: "";
}

.icon-street-view:before {
  content: "";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-panel: #121826f2;
  --bg-card: #ffffff08;
  --bg-card-hover: #3b82f614;
  --bg-elevated: #1d2638f2;
  --text-primary: #fff;
  --text-secondary: #ccc;
  --text-muted: #8f9bad;
  --accent-blue: #3b82f6;
  --accent-blue-hover: #60a5fa;
  --accent-purple: #8b5cf6;
  --accent-purple-strong: #7c3aed;
  --accent-purple-dark: #3730a3;
  --border-color: #333;
  --border-soft: #ffffff14;
  --border-hover: #3b82f659;
  --gold: gold;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-panel: 0 20px 60px #0006;
  --shadow-card: 0 18px 40px #00000040;
}

html, body {
  min-height: 100%;
}

body {
  min-width: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--accent-blue-hover);
  cursor: pointer;
}

strong {
  font-weight: 800;
}

#push {
  min-height: 100vh;
  padding-bottom: 2rem;
  display: none;
}

#push:before {
  content: "";
  z-index: -1;
  background: radial-gradient(circle at 15% 0%, #8b5cf629, transparent 34rem), radial-gradient(circle at 85% 10%, #3b82f61f, transparent 30rem), var(--bg-primary);
  position: fixed;
  inset: 0;
}

.logo-image {
  object-fit: contain;
}

.logo-text {
  color: var(--text-primary);
  letter-spacing: 0;
  font-weight: 800;
  line-height: 1;
}

header {
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 1.5rem 20px;
  display: flex;
}

header .column-left {
  grid-template-columns: 52px 1fr;
  grid-template-areas: "logo eyebrow"
                       "logo title"
                       "logo status";
  align-items: center;
  column-gap: 1rem;
  display: grid;
}

header .column-right {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: .75rem;
  display: flex;
}

header .logo-image {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-soft);
  background: #ffffff0a;
  border-radius: 14px;
  grid-area: logo;
  padding: 8px;
}

header .logo-eyebrow {
  color: var(--accent-purple);
  letter-spacing: .22em;
  text-transform: uppercase;
  grid-area: eyebrow;
  margin-bottom: .25rem;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
}

header .logo-text {
  grid-area: title;
  font-size: clamp(2rem, 4vw, 3rem);
}

header .logo-status {
  color: var(--text-secondary);
  grid-area: status;
  font-size: .98rem;
}

header .header-button {
  min-width: 128px;
  min-height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .65rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background .2s, border-color .2s, transform .2s;
  display: none;
}

header .header-button > span:first-of-type {
  vertical-align: -1px;
  margin-right: .35rem;
  font-size: .95rem;
  display: inline-block;
}

header .header-button strong {
  color: var(--text-primary);
  letter-spacing: 0;
  text-transform: none;
  margin-top: .2rem;
  font-size: .78rem;
  display: block;
}

header .header-button-single {
  cursor: pointer;
}

header .header-button-single:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

footer {
  max-width: 1200px;
  color: var(--text-muted);
  text-align: center;
  margin: 1.5rem auto 0;
  padding: 1rem 20px 2rem;
  font-size: .92rem;
  display: none;
}

footer a {
  color: var(--accent-blue);
  font-weight: 700;
}

#status-overlay {
  width: min(360px, 100vw - 32px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow-panel);
  color: var(--text-primary);
  text-align: center;
  padding: 2rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#status-overlay .logo-image {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
}

#status-overlay .logo-text {
  margin-bottom: .4rem;
  font-size: 2.25rem;
}

#status-text {
  color: var(--text-secondary);
}

#tooltip {
  z-index: 10000;
  max-width: 300px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: #0a0a0af0;
  padding: .65rem .8rem;
  font-size: .82rem;
  display: none;
  position: absolute;
  box-shadow: 0 14px 30px #00000059;
}

#server-list {
  max-width: 1200px;
  gap: .9rem;
  margin: 1.25rem auto 0;
  padding: 0 20px;
  display: grid;
}

.server {
  min-height: 136px;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  border-radius: 18px;
  grid-template-columns: 86px minmax(220px, .9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  transition: background .25s, border-color .25s, transform .25s;
  display: grid;
}

.server:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.server .column {
  float: none;
}

.server .column-favicon {
  width: auto;
  justify-items: center;
  gap: .55rem;
  display: grid;
}

.server .column-favicon .server-favicon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-soft);
  object-fit: cover;
  background: #00000038;
  border-radius: 16px;
  margin-top: 0;
  box-shadow: 0 0 24px #8b5cf61f;
}

.server .column-favicon .server-rank {
  min-width: 46px;
  min-height: 26px;
  color: var(--text-secondary);
  background: #8b5cf61f;
  border: 1px solid #8b5cf642;
  border-radius: 999px;
  place-items: center;
  padding: .2rem .5rem;
  font-size: .78rem;
  font-weight: 800;
  display: inline-grid;
}

.server .column-status {
  width: auto;
  gap: .65rem;
  display: grid;
}

.server .server-heading {
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  display: flex;
}

.server .column-status .server-name {
  min-width: 0;
  color: var(--text-primary);
  align-items: center;
  gap: .45rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  display: flex;
}

.server .server-address {
  color: var(--text-muted);
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 700;
}

.server .server-error {
  color: var(--danger);
  font-size: .9rem;
  font-weight: 700;
  display: none;
}

.server .server-stats {
  grid-template-columns: minmax(104px, 1fr) minmax(82px, .8fr) minmax(112px, 1fr);
  gap: .65rem;
  display: grid;
}

.server .column-status .server-label, .server-highlighted-label {
  min-height: 70px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #ffffff06;
  padding: .65rem .7rem;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  display: none;
}

.server .column-status .server-value, .server-highlighted-value {
  color: var(--text-primary);
  letter-spacing: 0;
  text-transform: none;
  word-break: break-word;
  margin-top: .35rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  display: block;
}

.server .player-count-label, .server-highlighted-label.player-count-label {
  background: linear-gradient(145deg, #8b5cf62e, #3b82f614);
  border-color: #8b5cf659;
}

.server .player-count-label .server-value, .server-highlighted-label.player-count-label .server-highlighted-value {
  color: #fff;
  font-size: 2rem;
}

.server .version-label {
  min-height: auto;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  background: none;
  border: 0;
  padding: 0;
  font-size: .78rem;
}

.server .column-graph {
  width: 100%;
  min-width: 0;
  height: 112px;
  overflow: hidden;
}

.server .uplot {
  width: 100% !important;
}

.server-is-favorite, .server-is-not-favorite {
  cursor: pointer;
  flex: none;
  transition: color .2s, transform .2s;
}

.server-is-favorite {
  color: var(--gold);
}

.server-is-favorite:hover:before {
  content: "";
}

.server-is-not-favorite {
  color: #ffffff3d;
}

.server-is-not-favorite:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.global-stat {
  color: var(--text-primary);
  font-weight: 800;
}

#sort-by {
  background: var(--accent-purple-strong);
  border-color: var(--accent-purple);
}

#settings-toggle {
  background: #1f2937;
  border-color: #475569;
  margin-left: 0 !important;
}

#big-graph, #big-graph-controls {
  width: calc(100% - 40px);
  max-width: 1200px;
}

#big-graph {
  border: 1px solid var(--border-soft);
  background: linear-gradient(145deg, #0f172af5, #111827fa);
  border-radius: 18px;
  margin: 0 auto 1rem;
  padding: 1.25rem 1rem .75rem;
  overflow: hidden;
  box-shadow: 0 24px 80px #00000059;
}

#big-graph-controls {
  margin: 0 auto 1.25rem;
  display: none;
}

#big-graph-controls-drawer {
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  border-radius: 18px;
  padding: 1rem;
  display: none;
  overflow: auto;
}

#big-graph-controls-drawer .graph-controls-setall {
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 1rem 0 0;
  display: flex;
}

#big-graph-controls .icon-star {
  color: var(--gold);
}

#big-graph-checkboxes {
  width: 100%;
  color: var(--text-secondary);
  margin: 0 auto;
  font-size: .9rem;
}

#big-graph-checkboxes > table {
  width: 100%;
  border-collapse: collapse;
}

#big-graph-checkboxes td {
  padding: .3rem .45rem;
}

.graph-control {
  accent-color: var(--accent-purple);
}

.graph-controls-show {
  color: var(--text-primary);
}

.button {
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius-sm);
  background: var(--accent-purple-strong);
  color: var(--text-primary);
  letter-spacing: .04em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .65rem .9rem;
  font-size: .85rem;
  font-weight: 800;
  transition: background .2s, border-color .2s, transform .2s;
  display: inline-flex;
}

.button:hover {
  border-color: var(--accent-purple-strong);
  color: var(--text-primary);
  background: #6d28d9;
  transform: translateY(-1px);
}

#perc-bar {
  height: 6px;
  background: #111827;
  position: relative;
  overflow: hidden;
}

#perc-bar .perc-bar-part {
  height: 100%;
  opacity: .9;
  display: inline-block;
  position: absolute;
}

.uplot {
  color: var(--text-secondary);
  font-family: Inter, sans-serif;
}

.uplot .select {
  background: var(--accent-blue);
  opacity: .22;
}

.uplot .u-cursor-x, .uplot .u-cursor-y {
  border-color: #ffffff52;
}

@media only screen and (max-width: 1050px) {
  header {
    flex-direction: column;
    align-items: stretch;
  }

  header .column-right {
    justify-content: flex-start;
  }

  .server {
    grid-template-columns: 76px 1fr;
  }

  .server .column-graph {
    grid-column: 1 / -1;
  }
}

@media only screen and (max-width: 720px) {
  body {
    font-size: 15px;
  }

  header, #server-list {
    padding-left: 14px;
    padding-right: 14px;
  }

  header .column-left {
    grid-template-columns: 44px 1fr;
    column-gap: .85rem;
  }

  header .logo-image {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  header .logo-status {
    font-size: .88rem;
  }

  header .column-right {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  header .header-button {
    min-width: 0;
    width: 100%;
  }

  #big-graph, #big-graph-controls {
    width: calc(100% - 28px);
  }

  .server {
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 1rem;
  }

  .server .column-favicon {
    grid-template-columns: 64px 1fr;
    justify-items: start;
  }

  .server .column-favicon .server-rank {
    align-self: center;
  }

  .server .server-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }

  .server .server-address {
    white-space: normal;
  }

  .server .server-stats {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=index.a8b7e4b1.css.map */
