

:root {
  --bg-primary: #060608;
  --bg-panel: rgba(12, 12, 16, 0.72);
  --bg-panel-solid: #0d0d11;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.25);

  --accent-cyan: #ffc93c;
  --accent-cyan-rgb: 255, 201, 60;
  --accent-blue: #e0243c;
  --accent-blue-rgb: 224, 36, 60;
  --accent-red: #ff3355;
  --accent-red-rgb: 255, 51, 85;

  --win-color: #ffd24a;
  --win-color-rgb: 255, 210, 74;
  --lose-color: #ff3355;
  --lose-color-rgb: 255, 51, 85;

  --text-main: #f3f4f6;
  --text-sub: rgba(243, 244, 246, 0.62);
  --text-faint: rgba(243, 244, 246, 0.35);

  --glow-cyan: 0 0 15px rgba(255, 201, 60, 0.4);
  --glow-blue: 0 0 15px rgba(224, 36, 60, 0.4);
  --chrome-gradient: linear-gradient(135deg, #a1a1aa 0%, #ffffff 40%, #e4e4e7 60%, #71717a 100%);
  --accent-gradient: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);

  --head-win-grad: linear-gradient(90deg, rgba(120, 40, 0, 0.95), rgba(255, 180, 60, 0.9));
  --head-lose-grad: linear-gradient(90deg, rgba(120, 20, 44, 0.95), rgba(200, 40, 70, 0.9));
  --head-neut-grad: linear-gradient(90deg, rgba(46, 32, 14, 0.95), rgba(90, 62, 24, 0.9));

  --font-main: 'Outfit', 'Segoe UI', sans-serif;
  --font-display: 'Chakra Petch', sans-serif;
  --font-code: 'Fira Code', monospace;
  --font-hero: 'Orbitron', 'Chakra Petch', sans-serif;
}


body.win {
  --tint-1: rgba(255, 210, 74, 0.12);
  --tint-2: rgba(255, 201, 60, 0.10);
}
body.lose {
  --tint-1: rgba(255, 51, 85, 0.12);
  --tint-2: rgba(255, 51, 85, 0.07);
}
body.neutral {
  --tint-1: rgba(255, 201, 60, 0.06);
  --tint-2: rgba(224, 36, 60, 0.05);
}


* { box-sizing: border-box; margin: 0; padding: 0; scrollbar-width: thin; scrollbar-color: var(--border-hover) transparent; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 201, 60, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 201, 60, 0.5); }

::selection { background: rgba(var(--accent-cyan-rgb), 0.35); color: #fff; text-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.6); }
.srv-first ::selection, #srv-dd ::selection, #srv-dd-menu ::selection { background: rgba(var(--accent-cyan-rgb), 0.35); color: #fff; text-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.6); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 50% -10%, var(--tint-2, rgba(255,201,60,0.22)), transparent 60%),
    radial-gradient(45% 35% at 85% 25%, rgba(224,36,60,0.20), transparent 60%),
    radial-gradient(50% 40% at 15% 75%, rgba(255,201,60,0.16), transparent 60%),
    radial-gradient(40% 35% at 70% 90%, rgba(224,36,60,0.18), transparent 60%),
    radial-gradient(35% 30% at 30% 35%, rgba(255,51,85,0.12), transparent 60%),
    linear-gradient(120deg, #070503 0%, #140a04 50%, #070503 100%);
  background-size: 170% 170%, 150% 150%, 160% 160%, 140% 140%, 150% 150%, 100% 100%;
  animation: bgDrift 16s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  0%   { background-position: 0% 0%, 100% 0%, 0% 100%, 50% 50%, 30% 30%, 0 0; }
  50%  { background-position: 60% 40%, 30% 60%, 60% 30%, 80% 30%, 60% 70%, 0 0; }
  100% { background-position: 100% 100%, 0% 50%, 50% 0%, 100% 100%, 20% 80%, 0 0; }
}


body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 3px,
    rgba(0, 0, 0, 0.14) 3px,
    rgba(0, 0, 0, 0.14) 4px
  );
  opacity: 0.35;
  animation: scanDrift 12s linear infinite;
}
@keyframes scanDrift {
  from { background-position: 0 0; }
  to   { background-position: 0 4px; }
}

body.cov::before,
body.cov::after { animation: none; }

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}


html {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { width: 0; height: 0; display: none; }
html::-webkit-scrollbar-track, html::-webkit-scrollbar-thumb { background: transparent; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { width: 0; height: 0; display: none; }
body::-webkit-scrollbar-track, body::-webkit-scrollbar-thumb { background: transparent; }

.app {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.site-header {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 8, 0.22);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.site-main {
  flex: 1 1 auto;
  padding: 34px 20px 30px;
}

.site-footer {
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(6, 6, 8, 0.22);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  font-family: var(--font-code);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-sub);
}
.site-footer .sf-ico {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: 15px;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}
.site-footer .sf-sep { color: rgba(var(--accent-cyan-rgb), 0.4); }

.container { max-width: 1240px; margin: 0 auto; position: relative; }


.wordmark {
  text-align: center;
  margin-bottom: 26px;
  font-family: var(--font-hero);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-sub);
}
.wordmark b {
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wordmark::before {
  content: "[ ";
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}
.wordmark::after {
  content: " ]";
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}


.hero {
  position: relative;
  background:
    radial-gradient(85% 130% at 0% 0%, rgba(var(--accent-blue-rgb), 0.24), transparent 55%),
    radial-gradient(70% 120% at 100% 0%, rgba(var(--accent-cyan-rgb), 0.18), transparent 55%),
    radial-gradient(100% 90% at 50% 115%, rgba(var(--accent-blue-rgb), 0.16), transparent 60%),
    linear-gradient(135deg, #141c30 0%, #0b101e 45%, #101a30 100%);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 44px 40px 38px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), inset 0 0 60px rgba(var(--accent-blue-rgb), 0.06);
  animation: rise 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.hero:hover { border-color: rgba(var(--accent-cyan-rgb), 0.35); box-shadow: 0 10px 40px rgba(0,0,0,0.45), var(--glow-cyan); }


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(var(--accent-cyan-rgb), 0.07) 18%,
    rgba(var(--accent-blue-rgb), 0.1) 30%,
    rgba(var(--accent-cyan-rgb), 0.14) 42%,
    rgba(var(--accent-blue-rgb), 0.07) 55%,
    rgba(var(--accent-cyan-rgb), 0.1) 68%,
    rgba(var(--accent-blue-rgb), 0.12) 80%,
    transparent 100%
  );
  background-size: 220% 220%;
  mix-blend-mode: screen;
  animation: heroShift 11s ease-in-out infinite;
}
@keyframes heroShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero > * { position: relative; z-index: 1; }


.hero::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 10%,
    var(--accent-cyan) 30%,
    var(--accent-blue) 45%,
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
  animation: rotateBorder 6s linear infinite;
  z-index: 2;
}
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes rotateBorder { to { --border-angle: 360deg; } }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.matchup { display: flex; align-items: stretch; gap: 16px; }

.side {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
}
.side-label {
  font-family: var(--font-code);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 14px;
}
.side-name {
  font-family: var(--font-display);
  font-size: clamp(19px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.15;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  max-width: 100%;
  overflow-wrap: break-word;
}
.side.winner .side-name {
  background: linear-gradient(135deg, #ffffff, var(--win-color) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(var(--win-color-rgb), 0.55));
}
.side.winner .side-label { color: var(--win-color); text-shadow: 0 0 10px rgba(var(--win-color-rgb), 0.5); }

.side-rule { width: 34px; height: 2px; margin-top: 16px; border-radius: 99px; background: var(--border-hover); }
.side.winner .side-rule { background: var(--accent-gradient); box-shadow: var(--glow-cyan); }


.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.5);
  background: rgba(255, 201, 60, 0.06);
  color: var(--accent-cyan);
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: var(--glow-cyan), inset 0 0 20px rgba(var(--accent-cyan-rgb), 0.08);
  flex-shrink: 0;
  text-shadow: 0 0 12px rgba(var(--accent-cyan-rgb), 0.8);
  animation: vsPulse 3s ease-in-out infinite;
}
@keyframes vsPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.3), inset 0 0 20px rgba(var(--accent-cyan-rgb), 0.06); }
  50% { box-shadow: 0 0 26px rgba(var(--accent-cyan-rgb), 0.65), inset 0 0 24px rgba(var(--accent-cyan-rgb), 0.14); }
}


.center { text-align: center; min-width: 280px; padding: 0 10px; margin-top: 30px; }

.score {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: var(--font-code);
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}
.score .x { font-size: 15px; color: var(--text-sub); -webkit-text-fill-color: var(--text-sub); filter: none; }

.meta-row { display: flex; justify-content: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 12.5px;
  color: var(--text-main);
  font-family: var(--font-code);
  transition: all 0.3s ease;
}
.meta:hover { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan); }
.meta .label {
  font-family: var(--font-code);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sub);
}
.meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-cyan); box-shadow: var(--glow-cyan); }

.result-line { margin-top: 18px; font-size: 13px; color: var(--text-sub); font-family: var(--font-code); }
.result-line .who { color: var(--text-main); font-weight: 600; }
.winner-name { color: var(--win-color); text-shadow: 0 0 12px rgba(var(--win-color-rgb), 0.5); font-weight: 700; }
.result-progress { color: var(--accent-cyan); text-shadow: var(--glow-cyan); animation: pulseProgress 2s ease-in-out infinite; }
@keyframes pulseProgress {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.time-line { margin-top: 6px; font-size: 12px; color: rgba(243, 244, 246, 0.4); font-family: var(--font-code); }


.teams { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 960px) { .teams { grid-template-columns: 1fr; } }

.panel {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: rise 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.panel:nth-child(2) { animation-delay: 0.12s; }
.panel:hover { border-color: rgba(var(--accent-cyan-rgb), 0.3); box-shadow: 0 12px 44px rgba(0,0,0,0.45), 0 0 20px rgba(var(--accent-cyan-rgb), 0.07); }

.panel::before,
.server-card::before,
.points-list::before,
.fight-list::before,
.empty-box::before,
.error-card::before {  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
  background:
    linear-gradient(var(--accent-cyan) 0 0) top left / 13px 2px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) top left / 2px 13px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) top right / 13px 2px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) top right / 2px 13px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) bottom left / 13px 2px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) bottom left / 2px 13px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) bottom right / 13px 2px no-repeat,
    linear-gradient(var(--accent-cyan) 0 0) bottom right / 2px 13px no-repeat;
  filter: drop-shadow(0 0 5px rgba(var(--accent-cyan-rgb), 0.55));
}

.panel-head { padding: 22px 24px 18px; position: relative; overflow: hidden; }
.head-win  { background: var(--head-win-grad); }
.head-lose { background: var(--head-lose-grad); }
.head-neut { background: var(--head-neut-grad); }
.head-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }


.head-win::after,
.head-lose::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 25%,
    rgba(var(--accent-cyan-rgb), 0.16) 40%,
    rgba(var(--accent-blue-rgb), 0.14) 52%,
    rgba(255, 255, 255, 0.1) 68%,
    transparent 100%
  );
  background-size: 240% 240%;
  mix-blend-mode: screen;
  animation: heroShift 8s ease-in-out infinite;
}
.head-top,
.head-stats { position: relative; z-index: 1; }

.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag {
  font-family: var(--font-code);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  margin-left: 8px;
  vertical-align: middle;
}

.badge {
  font-family: var(--font-code);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.badge-win { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.14); }
.badge-lose { border-color: rgba(255, 255, 255, 0.25); }
.badge-neut { border-color: rgba(var(--accent-cyan-rgb), 0.4); background: rgba(var(--accent-cyan-rgb), 0.08); }

.head-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.stat-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-box:hover { border-color: rgba(var(--accent-cyan-rgb), 0.4); box-shadow: inset 0 0 14px rgba(var(--accent-cyan-rgb), 0.06); }
.stat-num {
  display: block;
  font-family: var(--font-code);
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  display: block;
  font-family: var(--font-code);
  font-size: 8.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}
@media (max-width: 560px) { .head-stats { grid-template-columns: repeat(2, 1fr); } }


.table-wrap {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 201, 60, 0.25) transparent;
}
.table-wrap::-webkit-scrollbar { width: 6px; }
.table-wrap::-webkit-scrollbar-thumb { background: rgba(255, 201, 60, 0.25); border-radius: 3px; }
.table-wrap::-webkit-scrollbar-thumb:hover { background: rgba(255, 201, 60, 0.5); }

table { width: 100%; border-collapse: collapse; font-size: 13px; }

thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #0c0e14;
  padding: 11px 12px;
  text-align: center;
  color: var(--text-sub);
  font-family: var(--font-code);
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(var(--accent-cyan-rgb), 0.15);
}
thead th.name { text-align: left; }
thead th.rank { width: 42px; }

tbody td {
  padding: 11px 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  font-family: var(--font-code);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}
tbody td.name { text-align: left; font-family: var(--font-main); font-weight: 600; max-width: 200px; overflow: hidden; text-overflow: ellipsis; }
tbody td.rank { color: rgba(243, 244, 246, 0.35); font-weight: 500; }

tbody tr { transition: background 0.15s ease; }
tbody tr:hover { background: rgba(var(--accent-cyan-rgb), 0.05); }
tbody tr:first-child td.name { color: var(--accent-cyan); text-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.4); }
tbody tr:first-child td.rank { color: var(--accent-cyan); }

.dim { opacity: 0.45; font-size: 0.85em; }
.empty { text-align: center; color: var(--text-sub); padding: 30px !important; }


.icon {
  font-family: 'Material Symbols Outlined';
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  color: rgba(255, 201, 60, 0.7);
  display: inline-block;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}
th:hover .icon { color: #fff; text-shadow: var(--glow-cyan); }

th.sortable { cursor: pointer; user-select: none; transition: color 0.15s ease, border-color 0.15s ease; }
th.sortable:hover { color: var(--text-main); border-bottom-color: rgba(var(--accent-cyan-rgb), 0.4); }
th.sortable::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: 1px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(243, 244, 246, 0.3);
  transition: border-color 0.15s ease;
}
th.sortable[data-dir="asc"]::after { border-top-color: var(--accent-cyan); border-bottom: none; }
th.sortable[data-dir="desc"]::after { border-top: none; border-bottom: 5px solid var(--accent-cyan); }
th.sortable[data-dir="asc"], th.sortable[data-dir="desc"] { color: var(--accent-cyan); border-bottom-color: rgba(var(--accent-cyan-rgb), 0.5); }


.tooltip-fx {
  position: fixed;
  transform: translate(-50%, -100%);
  margin-top: -10px;
  background: var(--bg-panel-solid);
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.4);
  color: var(--text-main);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11.5px;
  font-family: var(--font-code);
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
  z-index: 100;
  box-shadow: var(--glow-cyan), 0 8px 24px rgba(0, 0, 0, 0.5);
}
.tooltip-fx.show { opacity: 1; }


.error-page { min-height: 50vh; display: flex; align-items: center; justify-content: center; }
.error-card {
  position: relative;
  background: var(--bg-panel-solid);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 56px 64px;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.error-card .mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-red-rgb), 0.5);
  background: rgba(var(--accent-red-rgb), 0.08);
  color: var(--accent-red);
  font-family: var(--font-hero);
  font-size: 28px;
  font-weight: 900;
  line-height: 62px;
  box-shadow: 0 0 24px rgba(var(--accent-red-rgb), 0.2);
}
.error-card h1 { font-family: var(--font-display); color: var(--accent-red); margin-bottom: 12px; font-size: 24px; letter-spacing: 2px; text-transform: uppercase; }
.error-card p { color: var(--text-sub); line-height: 1.7; font-size: 14px; font-family: var(--font-code); }


body, body * { cursor: none !important; }

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 2147483000;
  transition: opacity 0.2s ease;
}
.cursor-ring {
  transition: opacity 0.2s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.cursor-dot {
  display: none;
}
.cursor-ring {
  width: 36px;
  height: 36px;
}
.cursor-ring::before,
.cursor-ring::after {
  content: "";
  position: absolute;
  background: rgba(var(--accent-cyan-rgb), 0.8);
  box-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.55);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.cursor-ring::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.cursor-ring::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.cursor-spin {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px dotted rgba(255, 255, 255, 0);
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
.cursor-ring.is-hover::before,
.cursor-ring.is-hover::after {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(var(--accent-cyan-rgb), 0.8);
}
.cursor-ring.is-hover .cursor-spin {
  border-color: var(--accent-cyan);
  opacity: 1;
  animation: cursorSpin 3.2s linear infinite;
}
@keyframes cursorSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.cursor-ring.is-down {
  width: 22px;
  height: 22px;
}
.cursor-ring.is-down::before,
.cursor-ring.is-down::after {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.cursor-ring.is-down .cursor-spin { animation-duration: 1.2s; }
@media (hover: none), (pointer: coarse) {
  body { cursor: auto !important; }
  body a, body button, body th, body .side, body .stat-box, body .meta, body tr, body td { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}


.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-sub);
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tab .tab-ico {
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  color: rgba(var(--accent-cyan-rgb), 0.7);
}
.tab:hover {
  color: var(--text-main);
  border-color: rgba(var(--accent-cyan-rgb), 0.4);
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}
.tab.active {
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(var(--accent-blue-rgb), 0.25), rgba(var(--accent-cyan-rgb), 0.15));
  border-color: rgba(var(--accent-cyan-rgb), 0.6);
  box-shadow: var(--glow-cyan), inset 0 0 18px rgba(var(--accent-cyan-rgb), 0.06);
}
.tab.active .tab-ico { color: var(--accent-cyan); text-shadow: var(--glow-cyan); }

.srv-pick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 16px 12px;
}
.srv-pick-label {
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sub);
}
.srv-dd {
  position: relative;
}
.srv-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 170px;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  cursor: none !important;
  outline: none;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}
.srv-dd-cur {
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}
.srv-dd-arrow {
  flex-shrink: 0;
  font-size: 9px;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}
.srv-dd.open .srv-dd-arrow, .srv-dd-btn[aria-expanded="true"] ~ .srv-dd-menu ~ .srv-dd-btn .srv-dd-arrow {
  transform: rotate(180deg);
}
.srv-dd-btn:hover, .srv-dd.open .srv-dd-btn {
  border-color: rgba(var(--accent-cyan-rgb), 0.5);
  box-shadow: var(--glow-cyan);
}
.srv-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 240px;
  z-index: 60;
  background: rgba(10, 14, 20, 0.96);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(var(--accent-cyan-rgb), 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
  padding: 6px;
}
.srv-dd-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.srv-dd-search {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-main);
  font-family: var(--font-code);
  font-size: 12px;
  padding: 8px 10px;
  margin-bottom: 6px;
  outline: none;
}
.srv-dd-search:focus {
  border-color: rgba(var(--accent-cyan-rgb), 0.5);
}
.srv-dd-search:-webkit-autofill,
.srv-dd-search:-webkit-autofill:hover,
.srv-dd-search:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-main);
  -webkit-box-shadow: 0 0 0 1000px #0b0e13 inset;
  transition: background-color 9999s ease-in-out 0s;
}
.srv-dd-list {
  max-height: 300px;
  overflow-y: auto;
}
.srv-dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-sub);
  font-family: var(--font-code);
  font-size: 12px;
  cursor: none !important;
  transition: all 0.2s ease;
}
.srv-dd-item:hover {
  background: rgba(var(--accent-cyan-rgb), 0.1);
  color: var(--text-main);
}
.srv-dd-item.on {
  color: var(--accent-cyan);
  background: rgba(var(--accent-cyan-rgb), 0.12);
}
.srv-dd-emoji {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}
.srv-dd-num {
  flex-shrink: 0;
  min-width: 22px;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(var(--accent-cyan-rgb), 0.12);
  color: var(--accent-cyan);
  font-family: var(--font-code);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
.srv-dd-item.on .srv-dd-num {
  background: var(--accent-cyan);
  color: #04070c;
}
.srv-dd-name {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.srv-dd-check {
  flex-shrink: 0;
  color: var(--accent-cyan);
}
.srv-dd-empty {
  padding: 10px;
  text-align: center;
  color: var(--text-sub);
  font-family: var(--font-code);
  font-size: 12px;
}

.tab-title {
  text-align: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-main);
}
.tab-title .title-ico {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: 20px;
  vertical-align: -3px;
  margin-right: 8px;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}
.mat-tiny {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: 15px;
  vertical-align: -2px;
  margin-right: 4px;
}
.mi {
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  flex: none;
  fill: currentColor;
  vertical-align: -0.3em;
  margin-right: 2px;
}
.mat-tiny .mi, .tab-ico .mi, .title-ico .mi, .sf-ico .mi {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.16em;
  margin-right: 0;
}
.tab-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--accent-gradient);
  box-shadow: var(--glow-cyan);
}


.sort-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
}
.sort-label {
  font-family: var(--font-code);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-right: 6px;
}
.sort-btn {
  padding: 7px 18px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-sub);
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sort-btn:hover {
  color: var(--text-main);
  border-color: rgba(var(--accent-cyan-rgb), 0.4);
  box-shadow: var(--glow-cyan);
}
.sort-btn.active {
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(var(--accent-blue-rgb), 0.25), rgba(var(--accent-cyan-rgb), 0.15));
  border-color: rgba(var(--accent-cyan-rgb), 0.6);
  box-shadow: var(--glow-cyan), inset 0 0 18px rgba(var(--accent-cyan-rgb), 0.06);
}

.empty-box {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-sub);
  font-family: var(--font-code);
  letter-spacing: 1px;
  background: var(--bg-panel);
  border: 1px dashed var(--border-hover);
  border-radius: 12px;
}


.fight-list { position: relative; display: grid; gap: 14px; perspective: 1200px; }
.fight-list .fight-card { animation-duration: 0.5s; animation-fill-mode: backwards; }
.fight-list .fight-card:nth-child(1) { animation-delay: 0.03s; }
.fight-list .fight-card:nth-child(2) { animation-delay: 0.08s; }
.fight-list .fight-card:nth-child(3) { animation-delay: 0.13s; }
.fight-list .fight-card:nth-child(4) { animation-delay: 0.18s; }
.fight-list .fight-card:nth-child(5) { animation-delay: 0.23s; }
.fight-list .fight-card:nth-child(6) { animation-delay: 0.28s; }
.fight-list .fight-card:nth-child(7) { animation-delay: 0.33s; }
.fight-list .fight-card:nth-child(8) { animation-delay: 0.38s; }
.fight-list .fight-card:nth-child(9) { animation-delay: 0.43s; }
.fight-list .fight-card:nth-child(10) { animation-delay: 0.48s; }
.fight-list .fight-card:nth-child(n+11) { animation-delay: 0.53s; }

.fight-card {
  position: relative;
  display: block;
  padding: 20px 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(22, 24, 34, 0.92), rgba(12, 12, 16, 0.94)) padding-box,
    linear-gradient(135deg, rgba(var(--accent-cyan-rgb), 0.55), rgba(var(--accent-blue-rgb), 0.35) 45%, rgba(var(--accent-cyan-rgb), 0.2)) border-box;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  text-decoration: none;
  overflow: hidden;
  transform: translateZ(0);
  transform-style: preserve-3d;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  animation: rise 0.5s cubic-bezier(0.25, 1, 0.5, 1) backwards;
  will-change: transform;
}
.fight-card:hover {
  transform: scale(1.02);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--glow-cyan), 0 12px 34px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.fight-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}
.fight-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: rgba(var(--accent-cyan-rgb), 0.5);
  box-shadow: 0 0 12px rgba(var(--accent-cyan-rgb), 0.45);
}
.fight-card.fc-win::before { background: var(--win-color); box-shadow: 0 0 12px rgba(var(--win-color-rgb), 0.7); }
.fight-card.fc-lose::before { background: var(--lose-color); box-shadow: 0 0 12px rgba(var(--lose-color-rgb), 0.7); }

.fc-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fc-team {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--chrome-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.fc-team.fc-left { text-align: right; }
.fc-team.fc-right { text-align: left; }
.fc-vs {
  font-family: var(--font-hero);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
  flex-shrink: 0;
}
.fc-result {
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sub);
}
.fc-result::before,
.fc-result::after { content: "—"; color: rgba(var(--accent-cyan-rgb), 0.4); padding: 0 10px; }
.fight-card.fc-win .fc-result { color: var(--win-color); text-shadow: 0 0 10px rgba(var(--win-color-rgb), 0.4); }
.fight-card.fc-lose .fc-result { color: var(--lose-color); text-shadow: 0 0 10px rgba(var(--lose-color-rgb), 0.4); }
.fc-time {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-code);
  font-size: 11px;
  color: rgba(243, 244, 246, 0.4);
}
.fc-map {
  text-align: center;
  margin-top: 6px;
  font-family: var(--font-code);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-cyan);
  text-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.3);
}


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

.server-card {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  animation: rise 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.server-card:hover {
  border-color: rgba(var(--accent-cyan-rgb), 0.45);
  box-shadow: var(--glow-cyan), 0 16px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}
.sc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.server-card:hover .sc-bg { transform: scale(1.06); }
.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.15) 0%, rgba(6, 6, 8, 0.88) 70%, rgba(6, 6, 8, 0.95) 100%);
}
.sc-content { position: relative; z-index: 1; padding: 18px 20px; }

.sc-num {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-hero);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(6, 6, 8, 0.55);
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.4);
  box-shadow: var(--glow-cyan);
  text-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.5);
}

.sc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.sc-ico {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px;
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.3);
  box-shadow: var(--glow-cyan);
}
.sc-emoji.sc-mat {
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
  filter: none;
}
.sc-emoji {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(var(--accent-cyan-rgb), 0.4));
}
.sc-online-tag {
  font-family: var(--font-code);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
  font-variant-numeric: tabular-nums;
}
.sc-max { font-size: 13px; color: var(--text-sub); font-weight: 500; text-shadow: none; }

.sc-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.sc-bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.sc-disc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(114, 137, 255, 0.4);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.16), rgba(114, 137, 255, 0.08));
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 18px rgba(88, 101, 242, 0.12);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.sc-disc:hover {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.28), rgba(114, 137, 255, 0.14));
  border-color: rgba(114, 137, 255, 0.85);
  box-shadow: inset 0 0 18px rgba(88, 101, 242, 0.2), 0 0 16px rgba(88, 101, 242, 0.25);
}
.sc-disc-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.sc-disc-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.sc-disc-ico svg { display: block; fill: #fff; }
.sc-disc-txt {
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #8b9bff, #c4ccff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 8px rgba(88, 101, 242, 0.45);
  line-height: 1.2;
}
.sc-disc-pt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-code);
  font-size: 10.5px;
  letter-spacing: 0.3px;
  color: rgba(243, 244, 246, 0.78);
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sc-disc-pt::before {
  content: "🗓";
  font-size: 11px;
  opacity: 0.9;
}
.sc-disc-cd {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-code);
  font-size: 10.5px;
  letter-spacing: 0.3px;
  color: rgba(243, 244, 246, 0.85);
  flex-wrap: wrap;
}
.sc-disc-cd::before {
  content: "⏱";
  font-size: 11px;
  opacity: 0.9;
}
.sc-cd-att { color: #ff7b6d; font-weight: 700; }
.sc-cd-deff { color: #7bd5ff; font-weight: 700; }
.sc-cd-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 3px;
}
.sc-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.sc-bar-fill.low  { background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan)); box-shadow: var(--glow-blue); }
.sc-bar-fill.mid  { background: linear-gradient(90deg, #f0b429, #ff7a00); box-shadow: 0 0 10px rgba(255, 160, 0, 0.5); }
.sc-bar-fill.hot  { background: linear-gradient(90deg, #ff3355, #ff6b35); box-shadow: 0 0 12px rgba(var(--lose-color-rgb), 0.6); }
.sc-bar-label {
  margin-top: 6px;
  font-family: var(--font-code);
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(243, 244, 246, 0.45);
  text-align: right;
}

.site-header {
  position: sticky;
}
.status-widget {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-code);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.sw-clockbox {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}
.sw-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.sw-time {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(var(--accent-cyan-rgb), 0.45);
  font-variant-numeric: tabular-nums;
}
.sw-tz {
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(243, 244, 246, 0.45);
  text-transform: uppercase;
}
.sw-sep {
  width: 1px;
  height: 18px;
  background: rgba(var(--accent-cyan-rgb), 0.25);
}
.sw-updated {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.4);
}
.sw-updated b {
  font-weight: 700;
  color: rgba(var(--accent-cyan-rgb), 0.85);
  font-variant-numeric: tabular-nums;
}
.sw-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(243, 244, 246, 0.35);
}
.sw-dot.ok {
  background: #ffd24a;
  box-shadow: 0 0 8px rgba(255, 210, 74, 0.7);
  animation: swPulse 2s ease-in-out infinite;
}
.sw-dot.bad {
  background: #ff3355;
  box-shadow: 0 0 8px rgba(255, 51, 85, 0.7);
  animation: swPulse 1s ease-in-out infinite;
}
.sw-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(243, 244, 246, 0.65);
}
.sw-dot.ok + .sw-text { color: #ffd24a; }
.sw-dot.bad + .sw-text { color: #ff3355; }
@keyframes swPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.points-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.point-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.point-row:hover {
  background: rgba(var(--accent-cyan-rgb), 0.05);
  border-color: rgba(var(--accent-cyan-rgb), 0.2);
}
.pp-rank {
  flex-shrink: 0;
  width: 34px;
  text-align: center;
  font-family: var(--font-code);
  font-size: 13px;
  font-weight: 700;
  color: rgba(243, 244, 246, 0.35);
}
.pp-name {
  flex: 1 1 220px;
  min-width: 160px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pp-fid {
  flex-shrink: 0;
  width: 90px;
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(243, 244, 246, 0.45);
  text-align: right;
}
.pp-bar {
  flex: 1 1 auto;
  height: 8px;
  min-width: 60px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.pp-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(224, 36, 60, 0.8), var(--accent-cyan));
  box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.5);
}
.pp-points {
  flex-shrink: 0;
  min-width: 110px;
  text-align: right;
  font-family: var(--font-code);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  font-variant-numeric: tabular-nums;
}
.pp-points .dim {
  font-weight: 400;
  font-size: 11px;
  color: rgba(243, 244, 246, 0.45);
}
.point-row { will-change: transform; }
.point-row.bz-up .pp-points { color: #ffd24a; text-shadow: 0 0 12px rgba(255, 210, 74, 0.35); }
.point-row.bz-down .pp-points { color: #ff7b6d; text-shadow: 0 0 12px rgba(255, 123, 109, 0.35); }

.bz-map {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 22, 1);
  user-select: none;
}
#bz-map-cv {
  display: block;
  cursor: grab;
  background: rgba(10, 15, 22, 1);
  touch-action: none;
}
.bz-map .cursor-dot,
.bz-map .cursor-ring {
  display: none !important;
}
.bz-map {
  cursor: auto;
}
.bz-map #bz-map-cv {
  cursor: auto;
}
.bz-load {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(10, 15, 22, 0.92);
  transition: opacity 0.25s ease;
}
.bz-load-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 36px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 205, 60, 0.45);
  background: rgba(18, 25, 36, 0.85);
}
.bz-load-ico {
  font-family: 'Material Symbols Outlined';
  font-size: 40px;
  color: #ffcd3c;
  line-height: 1;
}
.bz-load-txt {
  font-family: var(--font-code);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.4px;
}
.bz-load:hover .bz-load-inner {
  border-color: rgba(255, 205, 60, 0.9);
  background: rgba(24, 32, 46, 0.95);
}

.bz-war-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.bz-war-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}
.bz-war-marker .bz-war-ring {
  position: absolute;
  left: -19px;
  top: -19px;
  width: 38px;
  height: 38px;
  border: 2px dashed #ffcd3c;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 205, 60, 0.35), inset 0 0 8px rgba(255, 205, 60, 0.15);
  animation: bzWarSpin 1.5s linear infinite;
  will-change: transform;
}
.bz-war-marker .bz-war-dot {
  position: absolute;
  left: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe27a, #ffbe1e 70%);
  border: 1.5px solid rgba(30, 20, 0, 0.85);
}
@keyframes bzWarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.bz-load.done {
  opacity: 0;
  pointer-events: none;
}
.bz-tip {
  display: block;
  position: absolute;
  z-index: 6;
  pointer-events: none;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10, 14, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 24px rgba(var(--accent-cyan-rgb), 0.12);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.bz-tip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.bz-tip-ico {
  font-family: 'Material Symbols Outlined';
  font-size: 20px;
  position: absolute;
  top: 10px;
  left: 12px;
  line-height: 1;
}
.bz-tip-body {
  padding-left: 30px;
}
.bz-tip-title {
  font-family: var(--font-code);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.3px;
}
.bz-tip-title.bz-tip-house {
  color: #ff6b82;
}
.bz-tip-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(243, 244, 246, 0.4);
  font-weight: 600;
  margin: 2px 0 6px;
}
.bz-tip-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-code);
  font-size: 12px;
  color: rgba(243, 244, 246, 0.9);
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.bz-tip-name-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bz-tip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(243, 244, 246, 0.5);
}
.bz-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bz-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(10, 15, 22, 0.85);
  color: var(--text-main);
  font-size: 16px;
  font-family: var(--font-code);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.bz-btn:hover {
  background: rgba(var(--accent-cyan-rgb), 0.15);
  border-color: rgba(var(--accent-cyan-rgb), 0.4);
}
.bz-legend {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 4;
  display: flex;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(8, 12, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.bz-lg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(243, 244, 246, 0.7);
  font-family: var(--font-code);
}
.bz-scroll-pts {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 60, 0.35);
  background: rgba(8, 12, 18, 0.9);
  color: var(--text-main);
  font-family: var(--font-code);
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 18px rgba(255, 201, 60, 0.12);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.bz-scroll-pts:hover {
  background: rgba(var(--accent-cyan-rgb), 0.12);
  border-color: rgba(var(--accent-cyan-rgb), 0.6);
  box-shadow: 0 0 22px rgba(255, 201, 60, 0.25);
}
.bz-sp-arrow {
  color: var(--accent-cyan);
  font-size: 13px;
  line-height: 1;
  animation: bzSpBounce 1.8s ease-in-out infinite;
}
.bz-sp-label { white-space: nowrap; }
@keyframes bzSpBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
@media (max-width: 560px) {
  .bz-scroll-pts { padding: 8px 12px; }
  .bz-sp-label { display: none; }
}
.bz-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.bz-ico {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.bz-fam { background: hsl(45, 85%, 55%); }
.bz-ico.bz-fam { background: none; color: hsl(45, 85%, 55%); }
.bz-house { color: #ff5470; }
.bz-ghetto {
  background: #d4a04a;
  border-radius: 2px;
}
.bz-war-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  background: rgba(255, 205, 60, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 205, 60, 0.25);
  animation: bz-war-pulse 1.6s ease-in-out infinite;
}
@keyframes bz-war-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 205, 60, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(255, 205, 60, 0.05); }
}

.bz-fam-panel {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}
.pp-updated {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.4);
  margin: -6px 0 12px;
}
.bfp-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 4px;
  letter-spacing: 0.4px;
}

.pp-family {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: left;
  font-size: 12px;
  color: rgba(243, 244, 246, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: radial-gradient(circle at 50% 40%, #0d1520 0%, #05070c 55%, #020407 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.splash.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-logo {
  width: 96px;
  height: 72px;
  border: 1px solid rgba(255, 201, 60, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -3px;
  text-indent: -3px;
  color: var(--accent-cyan);
  background: rgba(255, 201, 60, 0.06);
  box-shadow: 0 0 30px rgba(255, 201, 60, 0.25), inset 0 0 18px rgba(255, 201, 60, 0.12);
  animation: splashPulse 1.6s ease-in-out infinite;
}
@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 201, 60, 0.25), inset 0 0 18px rgba(255, 201, 60, 0.12); transform: scale(1); }
  50% { box-shadow: 0 0 44px rgba(255, 201, 60, 0.45), inset 0 0 24px rgba(255, 201, 60, 0.2); transform: scale(1.04); }
}
.splash-title {
  font-family: var(--font-code);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.7);
}
.splash-bar {
  width: min(320px, 70vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}
.splash-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-cyan), #ffe27a);
  box-shadow: 0 0 12px rgba(255, 201, 60, 0.7);
  width: 0%;
  transition: width 0.3s ease;
}
.splash-status {
  font-family: var(--font-code);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(243, 244, 246, 0.45);
  min-height: 14px;
}
.splash-pct {
  font-family: var(--font-code);
  font-size: 13px;
  color: var(--accent-cyan);
}
@media (prefers-reduced-motion: reduce) {
  .splash-logo { animation: none; }
}

.srv-first {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 4, 7, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
  box-sizing: border-box;
}
.srv-first.open {
  opacity: 1;
  visibility: visible;
}
.srv-first-card {
  width: min(520px, 100%);
  max-height: 82vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #0d1520 0%, #080b12 100%);
  border: 1px solid rgba(255, 201, 60, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(255, 201, 60, 0.18), 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: srvFirstIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes srvFirstIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.srv-first-logo {
  width: 54px;
  height: 54px;
  margin: 30px auto 0;
  border: 1px solid rgba(255, 201, 60, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent-cyan);
  background: rgba(255, 201, 60, 0.06);
  box-shadow: 0 0 30px rgba(255, 201, 60, 0.25), inset 0 0 18px rgba(255, 201, 60, 0.12);
}
.srv-first-title {
  margin: 18px auto 4px;
  font-family: var(--font-hero);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 16px rgba(255, 201, 60, 0.35);
}
.srv-first-sub {
  margin: 0 auto 18px;
  font-family: var(--font-code);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(243, 244, 246, 0.55);
  text-align: center;
}
.srv-first-loading {
  padding: 26px;
  text-align: center;
  font-family: var(--font-code);
  font-size: 12px;
  color: rgba(243, 244, 246, 0.5);
}
.srv-first-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
}
.srv-first-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.srv-first-item:hover {
  background: rgba(255, 201, 60, 0.12);
  border-color: rgba(255, 201, 60, 0.55);
  box-shadow: 0 0 18px rgba(255, 201, 60, 0.12);
  transform: translateX(3px);
}
.srv-first-emoji { font-size: 20px; flex-shrink: 0; }
.srv-first-num {
  flex-shrink: 0;
  min-width: 34px;
  text-align: center;
  font-family: var(--font-hero);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(6, 6, 8, 0.55);
  border: 1px solid rgba(255, 201, 60, 0.4);
  box-shadow: var(--glow-cyan);
  text-shadow: 0 0 8px rgba(255, 201, 60, 0.5);
}
.srv-first-name {
  flex: 1;
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #eef0ff;
}
.srv-first-arr {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(243, 244, 246, 0.35);
}
.srv-first-none {
  padding: 24px;
  text-align: center;
  font-family: var(--font-code);
  font-size: 12px;
  color: rgba(243, 244, 246, 0.5);
}
@media (max-width: 480px) {
  .srv-first-card { border-radius: 16px; }
  .srv-first-list { padding: 4px 14px 18px; }
  .srv-first-title { font-size: 17px; }
}

@media (max-width: 900px) {
  .teams { grid-template-columns: 1fr; gap: 22px; }
  .container { padding-bottom: 10px; }
}

@media (max-width: 700px) {
  .site-main { padding: 22px 12px 20px; }
  .wordmark { font-size: 11px; letter-spacing: 5px; margin-bottom: 18px; }
  .tab-title { font-size: 13px; letter-spacing: 2px; }
  .tab-title .title-ico { font-size: 18px; margin-right: 6px; }

  .tabs {
    gap: 6px;
    padding: 10px 8px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tabs::-webkit-scrollbar { width: 0; height: 0; display: none; }
  .tab {
    flex-shrink: 0;
    gap: 6px;
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 7px;
  }
  .tab .tab-ico { font-size: 16px; }

  .status-widget { position: static; transform: none; justify-content: center; }
  .status-widget { display: flex; align-items: center; gap: 10px; padding: 6px 12px 10px; }
  .sw-clockbox { display: inline-flex; flex-direction: row; align-items: center; gap: 8px; }
  .sw-tz, .sw-updated { display: none; }
  .sw-time { font-size: 13px; }
  .sw-sep { display: none; }

  .site-footer { gap: 8px; padding: 12px 10px; font-size: 9px; letter-spacing: 1px; }
  .site-footer .sf-ico { font-size: 13px; }

  .sort-bar { gap: 6px; margin-bottom: 18px; }
  .sort-btn { padding: 7px 12px; font-size: 10px; letter-spacing: 1px; }
}

.fw-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
}
.fw-search-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto 14px;
}
.fw-sec {
  max-width: 860px;
  margin: 0 auto 18px;
}
.fw-sec-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--font-hero);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.5);
}
.fw-sec-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 201, 60, 0.35), transparent);
}
#fw-sec-cur .fw-sec-title {
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
}
#fw-sec-cur .fw-row {
  border-color: rgba(255, 201, 60, 0.5);
  background: linear-gradient(135deg, rgba(255, 201, 60, 0.14), rgba(88, 101, 242, 0.08));
}
#fw-sec-cur .fw-row:hover {
  border-color: rgba(255, 201, 60, 0.85);
  background: linear-gradient(135deg, rgba(255, 201, 60, 0.24), rgba(88, 101, 242, 0.14));
  box-shadow: 0 0 18px rgba(255, 201, 60, 0.25);
}
.fw-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  color: rgba(243, 244, 246, 0.4);
  pointer-events: none;
}
.fw-search {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px 11px 42px;
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
  background: rgba(10, 12, 16, 0.75);
  color: #fff;
  font-family: var(--font-code);
  font-size: 13.5px;
  letter-spacing: 0.3px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.fw-search::placeholder { color: rgba(243, 244, 246, 0.35); }
.fw-search:focus {
  border-color: rgba(var(--accent-cyan-rgb), 0.6);
  box-shadow: var(--glow-cyan);
}
.fw-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(114, 137, 255, 0.05));
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.fw-row:hover {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.24), rgba(114, 137, 255, 0.12));
  border-color: rgba(114, 137, 255, 0.65);
  transform: translateX(3px);
  box-shadow: 0 0 18px rgba(88, 101, 242, 0.22);
}
.fw-num {
  flex-shrink: 0;
  min-width: 42px;
  text-align: center;
  font-family: var(--font-hero);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(6, 6, 8, 0.55);
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.4);
  box-shadow: var(--glow-cyan);
  text-shadow: 0 0 8px rgba(var(--accent-cyan-rgb), 0.5);
}
.fw-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.fw-ico svg { display: block; fill: #fff; }
.fw-name {
  flex: 1 1 160px;
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #e7e9ff;
  text-shadow: 0 0 12px rgba(88, 101, 242, 0.35);
}
.fw-pt, .fw-cd {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  flex: 0 0 118px;
  white-space: nowrap;
}
.fw-cd { flex: 0 0 88px; }
.fw-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.4);
}
.fw-val {
  font-family: var(--font-code);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #e7e9ff;
}
.fw-val-att { color: #ff7b6d; text-shadow: 0 0 10px rgba(255, 80, 90, 0.35); }
.fw-val-deff { color: #7bd5ff; text-shadow: 0 0 10px rgba(90, 190, 255, 0.35); }
.fw-online {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 56px;
  font-family: var(--font-code);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: var(--glow-cyan);
  white-space: nowrap;
}
.fw-online.fw-off { color: rgba(243, 244, 246, 0.35); text-shadow: none; font-weight: 400; }
.fw-online-lbl {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.4);
}
.fw-go {
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(243, 244, 246, 0.35);
  transition: color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.fw-row:hover .fw-go { color: #c4ccff; transform: translateX(3px); }

@media (max-width: 760px) {
  .fw-row { flex-wrap: wrap; gap: 8px 12px; padding: 12px 14px; }
  .fw-name { flex: 1 1 100%; }
  .fw-go { display: none; }
  .fw-num { min-width: 38px; }
  .fw-pt, .fw-cd { flex: 0 0 108px; }
  .fw-cd { flex: 0 0 82px; }
}

@media (max-width: 480px) {
  .hero { padding: 26px 14px 24px; margin-bottom: 20px; border-radius: 12px; }
  .matchup { flex-direction: column; align-items: stretch; gap: 10px; }
  .side { min-width: 0; padding: 10px 4px; }
  .vs-badge { width: 46px; height: 46px; font-size: 13px; align-self: center; }
  .center { min-width: 0; margin-top: 6px; }
  .score { font-size: 28px; }
  .meta { font-size: 11px; padding: 5px 10px; }

  .panel-head { padding: 18px 16px 14px; }
  .head-top { flex-wrap: wrap; }
  .head-stats { gap: 8px; margin-top: 14px; }
  .stat-box { padding: 10px 6px; }
  .stat-num { font-size: 18px; }

  .table-wrap { max-height: 420px; overflow-x: auto; }
  table { font-size: 11.5px; }
  thead th, tbody td { padding: 9px 8px; }
  tbody td.name { max-width: 110px; }

  .fight-card { padding: 16px 14px; }
  .fc-result::before, .fc-result::after { padding: 0 6px; }

  .servers-grid { grid-template-columns: 1fr; gap: 14px; }
  .server-card { min-height: 160px; }
  .sc-content { padding: 14px 16px; }

  .error-card { padding: 32px 20px; }
}
@media (max-width: 700px) {
  .bz-map { height: 72vh; min-height: 380px; border-radius: 10px; }
  .bz-controls { top: 10px; right: 10px; }
  .bz-btn { width: 32px; height: 32px; font-size: 15px; }
  .bz-legend {
    left: 8px; right: 8px; bottom: 8px;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 7px 10px;
    font-size: 10px;
  }
  .bz-lg { gap: 5px; }
  .bz-tip { max-width: 220px; }
  .point-row { gap: 10px; padding: 10px 12px; }
  .pp-rank { width: 28px; }
  .pp-name { flex: 1 1 120px; min-width: 90px; font-size: 13px; }
  .pp-fid { width: 60px; font-size: 10px; }
  .pp-bar { min-width: 40px; }
  .pp-points { min-width: 80px; font-size: 13px; }
}

@media (max-width: 480px) {
  .bz-map { height: 66vh; min-height: 340px; }
  .bz-load-inner { padding: 20px 18px; }
  .bz-load-ico { font-size: 32px; }
  .bz-load-txt { font-size: 12px; }
  .bz-tip { max-width: 200px; padding: 8px 10px; }
  .points-list { gap: 6px; }
  .pp-fid { display: none; }
  .point-row { padding: 9px 10px; }
}
html { -webkit-text-size-adjust: 100%; touch-action: manipulation; }
button, a { -webkit-tap-highlight-color: transparent; }

