.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: "";
}

:root {
  --bg-base: #0a0c10;
  --bg-card: #11141c;
  --bg-card-inner: #151923;
  --bg-card-subtle: #181d29;
  --bg-chip: #0d1017;
  --bg-glass: #0d1017d9;
  --color-gold: #fcd34d;
  --color-gold-bright: #ffe600;
  --color-amber: #f59e0b;
  --color-amber-hover: #d97706;
  --color-gold-glow: 0 0 25px #f59e0b38;
  --color-gold-border: #f59e0b40;
  --text-primary: #fff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #fcd34d;
  --status-online: #10b981;
  --status-offline: #ef4444;
  --status-waiting: #f59e0b;
  --border-subtle: #ffffff12;
  --border-card: #ffffff17;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all .2s cubic-bezier(.16, 1, .3, 1);
}

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

html, body {
  min-height: 100%;
  background-color: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Plus Jakarta Sans, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

body {
  background-image: radial-gradient(80% 50% at 50% -10%, #f59e0b29, #0000 65%), radial-gradient(circle at 85% 90%, #f59e0b0a, #0000 50%), linear-gradient(to right, #ffffff05 1px, #0000 1px), linear-gradient(#ffffff05 1px, #0000 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  border-radius: var(--radius-full);
  background: #202636;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-amber);
}

a {
  color: var(--color-gold);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  color: var(--color-gold-bright);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

#push {
  min-height: calc(100vh - 60px);
  padding-bottom: 40px;
  display: none;
  position: relative;
}

#perc-bar-container {
  width: 100%;
  border-bottom: 1px solid var(--border-subtle);
  background: #0a0c10e6;
  overflow: hidden;
}

#perc-bar {
  height: 16px;
  width: 100%;
  background: #00000080;
  position: relative;
  overflow: hidden;
}

.perc-bar-part {
  height: 100%;
  cursor: pointer;
  transition: opacity .15s, filter .15s;
  position: absolute;
  top: 0;
}

.perc-bar-part:hover {
  opacity: .9;
  filter: brightness(1.3) drop-shadow(0 0 6px var(--color-gold));
  z-index: 10;
}

.app-header {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  border-bottom: 1px solid #ffffff14;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 25px #0006;
}

.header-container {
  max-width: 1320px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  display: flex;
}

.brand-section {
  align-items: center;
  display: flex;
}

.brand-logo-wrap {
  align-items: center;
  gap: 12px;
  display: flex;
}

.brand-logo-wrap .logo-image {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px #f59e0b73);
}

.brand-title-wrap {
  flex-direction: column;
  display: flex;
}

.brand-title-wrap .logo-text {
  letter-spacing: 1.5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.live-beacon {
  letter-spacing: 1px;
  color: var(--color-gold);
  text-transform: uppercase;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.beacon-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--color-amber);
  box-shadow: 0 0 8px var(--color-amber);
  border-radius: 50%;
  animation: 2s ease-in-out infinite pulse-glow;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.35);
  }
}

.header-right-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  display: flex;
}

.header-quick-stats {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  background: #151923cc;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  display: flex;
}

.quick-stat-item {
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: flex;
}

.quick-stat-label {
  color: var(--text-secondary);
}

.quick-stat-val {
  color: var(--color-gold);
  font-family: JetBrains Mono, monospace;
  font-weight: 800;
}

.quick-stat-divider {
  color: var(--text-muted);
}

.header-nav-buttons {
  align-items: center;
  gap: 10px;
  display: flex;
}

.header-nav-btn {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  transition: var(--transition);
  background: #151923cc;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.header-nav-btn:hover {
  border-color: var(--color-gold-border);
  color: var(--color-gold);
  background: #1c2230;
  transform: translateY(-1px);
}

.header-nav-btn.site-btn:hover {
  border-color: var(--color-amber);
  color: var(--color-gold);
  box-shadow: 0 0 14px #f59e0b4d;
}

.header-nav-btn.discord-btn {
  color: #a5b4fc;
  background: #5865f21f;
  border-color: #5865f266;
}

.header-nav-btn.discord-btn:hover {
  color: #fff;
  background: #5865f240;
  border-color: #5865f2;
  box-shadow: 0 0 14px #5865f266;
}

.dashboard-wrapper {
  max-width: 1320px;
  flex-direction: column;
  gap: 32px;
  margin: 28px auto 0;
  padding: 0 20px;
  display: flex;
}

.hero-showcase-section {
  width: 100%;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: #11141c;
  border: 1px solid #ffffff14;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px #00000080, 0 0 40px #f59e0b0d;
}

.hero-card-glow {
  width: 40%;
  height: 80px;
  pointer-events: none;
  background: radial-gradient(at top, #f59e0b40, #0000 70%);
  position: absolute;
  top: 0;
  left: 30%;
}

.hero-content-grid {
  z-index: 2;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 48px;
  display: grid;
  position: relative;
}

.hero-left {
  flex-direction: column;
  display: flex;
}

.hero-pill-badge {
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  color: var(--color-gold);
  text-transform: uppercase;
  background: #f59e0b1f;
  border: 1px solid #f59e0b4d;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--color-amber);
  box-shadow: 0 0 6px var(--color-amber);
  border-radius: 50%;
}

.hero-headline {
  color: #fff;
  letter-spacing: -.5px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
}

.highlight-gold {
  color: var(--color-gold);
  text-shadow: 0 0 20px #fcd34d40;
  font-weight: 900;
}

.hero-subline {
  color: var(--text-secondary);
  max-width: 580px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.hero-search-bar {
  max-width: 540px;
  transition: var(--transition);
  background: #181d29;
  border: 1px solid #ffffff17;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 6px 8px 6px 16px;
  display: flex;
}

.hero-search-bar:focus-within {
  border-color: var(--color-amber);
  background: #1c2230;
  box-shadow: 0 0 16px #f59e0b33;
}

.search-input-wrap {
  flex: 1;
  align-items: center;
  gap: 10px;
  display: flex;
}

.search-svg-icon {
  color: var(--text-muted);
  align-items: center;
  display: flex;
}

#server-search-input {
  color: #fff;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
}

#server-search-input::placeholder {
  color: var(--text-muted);
}

.hero-search-btn {
  background: var(--color-amber);
  color: #0b0c10;
  transition: var(--transition);
  white-space: nowrap;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 800;
}

.hero-search-btn:hover {
  background: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: 0 0 14px #f59e0b66;
}

.hero-right {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.hero-stat-card {
  transition: var(--transition);
  background: #171b26;
  border: 1px solid #ffffff0f;
  border-radius: 16px;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px;
  display: flex;
}

.hero-stat-card:hover {
  background: #1b202d;
  border-color: #f59e0b4d;
  transform: translateX(4px);
}

.hero-stat-number {
  color: #fff;
  font-family: JetBrains Mono, monospace;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-stat-desc {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.graph-showcase-section {
  width: 100%;
}

.section-card-container {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  background: #11141c;
  padding: 24px 30px;
  box-shadow: 0 15px 45px #0006;
}

.section-header-bar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  display: flex;
}

.section-title-wrap {
  align-items: center;
  gap: 14px;
  display: flex;
}

.section-icon {
  font-size: 22px;
}

.section-title {
  color: #fff;
  letter-spacing: -.3px;
  font-size: 19px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 13px;
}

#big-graph-wrapper {
  width: 100%;
}

#big-graph {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  background: #0d1017;
  padding: 16px;
  overflow: hidden;
}

#big-graph-controls {
  margin-top: 16px;
  display: none;
}

#big-graph-controls-drawer {
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-lg);
  background: #151923;
  padding: 16px 20px;
  display: none;
  box-shadow: 0 10px 30px #00000080;
}

.graph-drawer-header {
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  display: flex;
}

.drawer-title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 13px;
  font-weight: 700;
}

.graph-controls-setall {
  align-items: center;
  gap: 8px;
  display: flex;
}

.button.graph-controls-show {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff0d;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.button.graph-controls-show:hover {
  color: var(--color-gold);
  border-color: var(--color-gold-border);
  background: #1e2433;
}

.button.btn-fav-filter {
  color: var(--color-gold);
}

#big-graph-checkboxes {
  margin-top: 14px;
}

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

#big-graph-checkboxes td {
  color: var(--text-secondary);
  padding: 6px 12px;
  font-size: 13px;
}

#big-graph-checkboxes label {
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: color .15s;
  display: inline-flex;
}

#big-graph-checkboxes label:hover {
  color: var(--color-gold);
}

#big-graph-checkboxes input[type="checkbox"] {
  accent-color: var(--color-amber);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.servers-section {
  width: 100%;
}

.servers-section-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  display: flex;
}

.toolbar-btn {
  border: 1px solid var(--border-subtle);
  color: #fff;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  background: #171b26;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.toolbar-btn:hover {
  border-color: var(--color-gold-border);
  color: var(--color-gold);
  background: #1c2230;
}

.toolbar-btn.active {
  border-color: var(--color-amber);
  color: var(--color-gold);
  box-shadow: var(--color-gold-glow);
  background: #f59e0b1f;
}

.toolbar-btn .btn-icon {
  color: var(--color-amber);
  font-size: 14px;
}

.toolbar-btn strong {
  color: var(--color-gold);
}

.chevron-icon {
  color: var(--text-muted);
  font-size: 11px;
  transition: transform .2s;
}

.toolbar-btn.active .chevron-icon {
  color: var(--color-gold);
  transform: rotate(180deg);
}

.sort-wrapper {
  position: relative;
}

.sort-dropdown-menu {
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px #000000b3, var(--color-gold-glow);
  min-width: 180px;
  z-index: 200;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #161a25;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
}

.sort-dropdown-menu.show {
  animation: .15s ease-out fadeInDown;
  display: flex;
}

.sort-dropdown-item {
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.sort-dropdown-item:hover {
  color: var(--color-gold);
  background: #1f2536;
}

.sort-dropdown-item.active {
  color: var(--color-gold);
  background: #f59e0b26;
  font-weight: 700;
}

.sort-dropdown-item.active:after {
  content: "✓";
  color: var(--color-amber);
  font-weight: 900;
}

.servers-grid {
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(560px, 1fr));
  gap: 20px;
  display: grid;
}

.server-card {
  border-radius: var(--radius-xl);
  transition: var(--transition);
  background: #12151e;
  border: 1px solid #ffffff14;
  flex-direction: column;
  padding: 20px 24px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 25px #00000059;
}

.server-card:hover {
  box-shadow: 0 14px 40px #0000008c, var(--color-gold-glow);
  background: #151924;
  border-color: #f59e0b73;
  transform: translateY(-3px);
}

.server-card-inner {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  display: flex;
}

.server-card-top {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  display: flex;
}

.server-branding {
  flex: 1;
  align-items: center;
  gap: 14px;
  display: flex;
}

.favicon-wrapper {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  position: relative;
}

.server-favicon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--border-subtle);
  object-fit: cover;
  background: #000;
  border-radius: 14px;
  display: block;
}

.server-rank {
  color: #0b0c10;
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  border-radius: 6px;
  padding: 2px 6px;
  font-family: JetBrains Mono, monospace;
  font-size: 11px;
  font-weight: 900;
  position: absolute;
  bottom: -4px;
  right: -4px;
  box-shadow: 0 2px 6px #0009;
}

.server-meta {
  flex-direction: column;
  flex: 1;
  gap: 6px;
  display: flex;
}

.server-title-row {
  align-items: center;
  gap: 8px;
  display: flex;
}

.favorite-btn {
  cursor: pointer;
  font-size: 17px;
  transition: transform .15s;
}

.favorite-btn:hover {
  transform: scale(1.2);
}

.server-is-favorite {
  text-shadow: 0 0 10px #fcd34d80;
  color: var(--color-gold) !important;
}

.server-is-not-favorite {
  color: var(--text-muted) !important;
}

.server-is-not-favorite:hover {
  color: var(--color-gold) !important;
}

.server-name {
  color: #fff;
  letter-spacing: -.3px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.server-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.server-status-dot.online {
  background: var(--status-online);
  box-shadow: 0 0 8px var(--status-online);
}

.server-status-dot.offline {
  background: var(--status-offline);
  box-shadow: 0 0 8px var(--status-offline);
}

.server-status-dot.waiting {
  background: var(--status-waiting);
  box-shadow: 0 0 8px var(--status-waiting);
}

.server-address-chip {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  background: #171b26;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
  display: inline-flex;
}

.server-address-chip:hover {
  border-color: var(--color-gold-border);
  color: var(--color-gold);
  background: #1d2230;
}

.server-address-chip.copied {
  background: var(--color-amber);
  color: #0b0c10;
  border-color: var(--color-amber);
  font-weight: 800;
}

.ip-copy-icon {
  opacity: .7;
  align-items: center;
  display: flex;
}

.server-error-banner {
  color: #fca5a5;
  border-radius: var(--radius-sm);
  background: #ef444426;
  border: 1px solid #ef44444d;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  display: none;
}

.server-stats-grid {
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  display: grid;
}

.stat-chip {
  background: var(--bg-chip);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  display: flex;
}

.stat-chip:hover {
  background: #11151e;
  border-color: #ffffff26;
}

.stat-chip.stat-chip-active-sort {
  border-color: var(--color-amber);
  background: #f59e0b1a;
  box-shadow: inset 0 0 10px #f59e0b14;
}

.stat-chip.stat-chip-active-sort .stat-value {
  font-weight: 800;
  color: var(--color-gold) !important;
}

.stat-icon-label {
  align-items: center;
  gap: 6px;
  display: flex;
}

.stat-icon {
  color: var(--color-amber);
  align-items: center;
  display: flex;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 10px;
  font-weight: 700;
}

.stat-value {
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: JetBrains Mono, monospace;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}

.stat-chip-version .stat-value {
  color: var(--text-secondary);
  font-size: 12px;
}

.server-sparkline-wrap {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #0000004d;
  padding: 6px 8px;
  overflow: hidden;
}

.server-col-graph {
  width: 100%;
  height: 100px;
}

.social-showcase-section {
  width: 100%;
}

.social-card {
  border-radius: var(--radius-xl);
  background: #11141c;
  border: 1px solid #ffffff14;
  flex-direction: column;
  gap: 20px;
  padding: 36px 44px;
  display: flex;
  box-shadow: 0 15px 40px #0006;
}

.social-badge-title {
  letter-spacing: 1.5px;
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.social-description {
  color: var(--text-secondary);
  max-width: 680px;
  margin-top: 6px;
  font-size: 15px;
}

.social-buttons-grid {
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  display: flex;
}

.social-box-btn {
  width: 52px;
  height: 52px;
  color: var(--text-secondary);
  transition: var(--transition);
  background: #161a25;
  border: 1px solid #ffffff14;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  box-shadow: 0 4px 12px #0000004d;
}

.social-box-btn:hover {
  color: var(--color-gold);
  background: #1c2232;
  border-color: #f59e0b66;
  transform: translateY(-3px)scale(1.05);
  box-shadow: 0 8px 25px #00000080, 0 0 15px #f59e0b33;
}

.social-box-btn.discord:hover {
  color: #fff;
  background: #5865f2;
  border-color: #5865f2;
  box-shadow: 0 8px 25px #5865f266;
}

.social-box-btn.website:hover {
  border-color: var(--color-amber);
  color: #0b0c10;
  background: var(--color-amber);
  box-shadow: 0 8px 25px #f59e0b66;
}

.social-box-btn.youtube:hover {
  color: #fff;
  background: red;
  border-color: red;
  box-shadow: 0 8px 25px #f006;
}

.social-box-btn.instagram:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
  box-shadow: 0 8px 25px #e1306c66;
}

.social-box-btn.tiktok:hover {
  color: #fff;
  background: #010101;
  border-color: #00f2fe;
  box-shadow: 0 8px 25px #00f2fe66;
}

#tooltip {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold-border);
  color: #fff;
  z-index: 10000;
  box-shadow: 0 12px 35px #000c, var(--color-gold-glow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  pointer-events: none;
  background: #0e1118f2;
  padding: 8px 14px;
  font-size: 12px;
  display: none;
  position: absolute;
}

.tooltip-content {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.tooltip-players {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 800;
}

.tooltip-time {
  color: var(--text-secondary);
  font-family: JetBrains Mono, monospace;
  font-size: 11px;
}

#status-overlay {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 9999;
  background: #0a0c10eb;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.status-overlay-card {
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px #000000b3, var(--color-gold-glow);
  background: #131722;
  margin: 15% auto 0;
  padding: 40px;
}

.status-logo-pulse {
  margin-bottom: 16px;
}

.status-logo-pulse .logo-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px var(--color-amber));
  animation: 2s ease-in-out infinite pulse-glow;
}

.status-overlay-card .logo-text {
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
}

.status-badge {
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  border-radius: var(--radius-full);
  background: #f59e0b1f;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

#footer {
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  width: 100%;
  background: #0d1017;
  padding: 18px 20px;
  display: none;
}

.footer-container {
  max-width: 1320px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  font-size: 13px;
  display: flex;
}

.footer-brand-wrap {
  align-items: center;
  gap: 8px;
  display: flex;
}

.footer-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-brand {
  letter-spacing: 1px;
  color: var(--color-gold);
  font-weight: 800;
}

.footer-dot {
  color: var(--text-muted);
}

.footer-note {
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .servers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .server-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .servers-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 28px 24px;
  }

  .hero-headline {
    font-size: 28px;
  }

  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  .hero-search-btn {
    width: 100%;
  }

  .app-header {
    padding: 12px 16px;
  }

  .header-container {
    flex-direction: column;
    align-items: stretch;
  }

  .header-right-actions {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .server-stats-grid {
    grid-template-columns: 1fr;
  }

  .header-nav-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .social-card {
    padding: 24px 20px;
  }
}

.uplot .select {
  background: var(--color-amber);
  opacity: .25;
}

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