:root {
  color-scheme: dark;
  --bg: #090d0f;
  --panel: #121a1d;
  --panel-2: #182225;
  --ink: #edf7f2;
  --muted: #98a9a5;
  --line: rgba(255, 255, 255, .13);
  --accent: #29d4a7;
  --accent-2: #e0b24d;
  --danger: #ef6461;
  --blue: #59a7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.home-page {
  background:
    linear-gradient(180deg, rgba(9, 13, 15, .78) 0%, rgba(9, 13, 15, .58) 42%, rgba(9, 13, 15, .86) 100%),
    linear-gradient(90deg, rgba(9, 13, 15, .82) 0%, rgba(9, 13, 15, .28) 52%, rgba(9, 13, 15, .86) 100%),
    url("eliteark-hero-bg.png?v=2") center center / cover fixed no-repeat,
    var(--bg);
}

body::selection { background: rgba(41, 212, 167, .35); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 15, .87);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41, 212, 167, .5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(41, 212, 167, .28), rgba(224, 178, 77, .28));
  color: #fff;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.nav a,
.header-data-link,
.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 11px;
  color: #d7e3df;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  border-color: rgba(41, 212, 167, .62);
  background: linear-gradient(180deg, rgba(41, 212, 167, .28), rgba(31, 130, 174, .24));
  color: #ecfff9;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}

.nav a:hover,
.header-data-link:hover,
.header-cta:hover { background: rgba(255, 255, 255, .08); }

.nav a:hover,
.nav a.active {
  border-color: rgba(41, 212, 167, .95);
  background: linear-gradient(180deg, rgba(41, 212, 167, .9), rgba(28, 154, 190, .82));
  color: #061b17;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.header-data-link {
  border: 1px solid rgba(41, 212, 167, .36);
  background: rgba(41, 212, 167, .1);
  color: var(--accent);
}

.header-data-link.active {
  background: rgba(41, 212, 167, .2);
  box-shadow: inset 0 0 0 1px rgba(41, 212, 167, .28);
}

.header-cta { border: 1px solid var(--line); }

.site-header .nav a,
.site-header .header-data-link,
.site-header .header-cta {
  border-color: rgba(41, 212, 167, .86) !important;
  background: linear-gradient(180deg, #2ee6bd 0%, #1d95bc 100%) !important;
  color: #041713 !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .22) !important;
}

.site-header .nav a:hover,
.site-header .nav a.active,
.site-header .header-data-link:hover,
.site-header .header-data-link.active,
.site-header .header-cta:hover {
  border-color: rgba(117, 255, 223, 1) !important;
  background: linear-gradient(180deg, #6dffe2 0%, #29d4a7 48%, #1b87b9 100%) !important;
  color: #02110e !important;
}

.hero {
  position: relative;
  min-height: calc(100vh - 214px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

body.home-page .hero-media {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 15, .10) 0%, rgba(9, 13, 15, .52) 48%, #090d0f 100%),
    linear-gradient(90deg, rgba(9, 13, 15, .88) 0%, rgba(9, 13, 15, .42) 54%, rgba(9, 13, 15, .82) 100%);
}

body.home-page .hero-shade {
  background:
    linear-gradient(180deg, rgba(9, 13, 15, .10) 0%, rgba(9, 13, 15, .35) 56%, rgba(9, 13, 15, .72) 100%),
    linear-gradient(90deg, rgba(9, 13, 15, .72) 0%, rgba(9, 13, 15, .18) 54%, rgba(9, 13, 15, .74) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 190px 0 22px;
  transform: none;
}

.mydata-page main {
  min-height: calc(100vh - 164px);
}

.mydata-page .announcement {
  margin-bottom: 16px;
}

.mydata-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.mydata-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 42px;
}

.mydata-hero-content h1 {
  margin: 0 0 14px;
}

.mydata-hero-content p:not(.kicker) {
  margin-top: 0;
  max-width: 720px;
  color: #c5d3cf;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

.live-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.live-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(7, 12, 13, .62);
  color: #d9e6e2;
  font-size: 14px;
  font-weight: 750;
}

.live-strip strong { color: #fff; }
.kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 800px;
  margin-bottom: 10px;
  font-size: clamp(58px, 10vw, 128px);
  line-height: .86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
  letter-spacing: 0;
}

h3 { letter-spacing: 0; }
.hero-copy {
  max-width: 670px;
  color: #d7e4df;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .55) 48%, rgba(41, 212, 167, .38) 55%, transparent 70%);
  transform: translateX(-125%) skewX(-18deg);
  transition: transform .55s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(125%) skewX(-18deg);
}

.button.primary:hover {
  box-shadow: 0 0 0 3px rgba(41, 212, 167, .15), 0 16px 34px rgba(41, 212, 167, .28);
}

.button.secondary:hover {
  border-color: rgba(41, 212, 167, .55);
  background: rgba(41, 212, 167, .12);
  box-shadow: 0 0 0 3px rgba(41, 212, 167, .1), 0 14px 30px rgba(0, 0, 0, .28);
}

.button.primary {
  background: var(--accent);
  color: #06211b;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.button.compact { min-height: 40px; padding: 0 14px; font-size: 14px; }

.status-band,
.announcement,
.section,
.cta-band,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.announcement {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(224, 178, 77, .42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(224, 178, 77, .22), rgba(18, 26, 29, .96) 45%, rgba(41, 212, 167, .13)),
    #121a1d;
  box-shadow: var(--shadow), 0 0 0 0 rgba(224, 178, 77, .18);
  animation: announcementGlow 2.8s ease-in-out infinite;
  padding: 22px;
  margin-top: 16px;
  margin-bottom: -142px;
}

.announcement h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 48px);
}

.announcement p:not(.kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: #d7e4df;
  line-height: 1.6;
}

.status-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  transform: translateY(-122px);
}

.status-band article,
.stat-card,
.leader-row,
.server-card,
.shop-card,
.kit-card,
.pass-step,
.lookup-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 26, 29, .92);
  box-shadow: var(--shadow);
}

body.home-page .announcement,
body.home-page .status-band article,
body.home-page .stat-card,
body.home-page .leader-row,
body.home-page .server-card,
body.home-page .shop-card,
body.home-page .kit-card,
body.home-page .pass-step,
body.home-page .lookup-card,
body.home-page .cluster-chat-shell,
body.home-page .pass-section,
body.home-page .cta-band {
  background-color: rgba(15, 23, 25, .72);
  backdrop-filter: blur(5px);
}

.status-band article {
  min-height: 150px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.wipe-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(41, 212, 167, .28);
  background:
    linear-gradient(90deg, rgba(41, 212, 167, .18) 0 4px, transparent 4px),
    radial-gradient(circle at 88% 18%, rgba(41, 212, 167, .16), transparent 26%),
    linear-gradient(145deg, rgba(9, 16, 18, .98), rgba(17, 26, 29, .94) 58%, rgba(33, 39, 31, .9));
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.wipe-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 36%),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, .035) 8px 9px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(41, 212, 167, .06) 38px 39px);
  opacity: .54;
  animation: hudNoise 4.2s steps(6) infinite;
}

.wipe-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 42%, rgba(224, 178, 77, .9), transparent);
  opacity: .82;
}

.wipe-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wipe-card-head > div:first-child {
  display: grid;
  gap: 8px;
}

.wipe-status-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(224, 178, 77, .38);
  border-radius: 8px;
  background: rgba(224, 178, 77, .10);
  color: #ffe6ad;
  font-size: 11px;
  font-weight: 900;
  padding: 0 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wipe-status-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #29d4a7;
  box-shadow: 0 0 10px rgba(41, 212, 167, .95), 0 0 22px rgba(41, 212, 167, .55);
  animation: armedBlink 1.05s ease-in-out infinite;
}

.cluster-pulse-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 18%, rgba(41, 212, 167, .14), transparent 34%),
    linear-gradient(135deg, rgba(18, 26, 29, .98), rgba(13, 24, 26, .96) 52%, rgba(16, 35, 33, .9));
}

.cluster-pulse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(41, 212, 167, .08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 36px);
  opacity: .78;
  transform: translateX(-42%);
  animation: pulseSweep 6s linear infinite;
}

.pulse-card-head,
.pulse-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pulse-card-head > div:first-child {
  display: grid;
  gap: 8px;
}

.pulse-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(41, 212, 167, .38);
  border-radius: 999px;
  background: rgba(41, 212, 167, .11);
  color: #dffdf5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.pulse-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(41, 212, 167, .6);
  animation: liveDot 1.65s ease-out infinite;
}

.pulse-panel {
  position: relative;
  min-height: 72px;
  border: 1px solid rgba(126, 154, 148, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent),
    rgba(4, 10, 12, .26);
  margin-top: 10px;
  overflow: hidden;
  padding: 15px 14px 12px;
}

.status-band span,
.stat-card span,
.meta,
.server-card small,
.shop-card span,
.kit-card span,
.pass-step span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-band strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
}

.status-band small { color: #c2d0cc; }

.timezone-note {
  display: block;
  margin-top: -3px;
  color: rgba(215, 228, 223, .68);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
  text-transform: none;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.timebox {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(41, 212, 167, .18);
  background:
    linear-gradient(135deg, rgba(41, 212, 167, .14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03)),
    rgba(5, 12, 14, .66);
  box-shadow: inset 0 -2px 0 rgba(41, 212, 167, .13), 0 14px 26px rgba(0, 0, 0, .2);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  padding: 12px 6px 10px;
  text-align: center;
}

.timebox::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  opacity: .72;
  pointer-events: none;
}

.timebox b {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(41, 212, 167, .22);
}

.timebox span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  color: var(--muted);
}

.timebox-secs {
  border-color: rgba(41, 212, 167, .35);
  background:
    linear-gradient(180deg, rgba(41, 212, 167, .14), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 50% 0%, rgba(41, 212, 167, .18), transparent 62%),
    rgba(5, 12, 14, .72);
  animation: secondSoftTick .72s ease-out both;
}

.countdown[data-tick="0"] .timebox-secs {
  animation-name: secondSoftTickA;
}

.countdown[data-tick="1"] .timebox-secs {
  animation-name: secondSoftTickB;
}

.timebox-secs::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(41, 212, 167, .24), transparent);
  opacity: 0;
  animation: secondSoftSweep .72s ease-out both;
}

.timebox-secs::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  z-index: 1;
  height: 1px;
  background: rgba(41, 212, 167, .42);
  opacity: .7;
  pointer-events: none;
}

.timebox-secs b {
  z-index: 2;
  color: #f4fffc;
  text-shadow: 0 0 12px rgba(41, 212, 167, .25);
  animation: digitSoftDrop .72s ease-out both;
}

.countdown[data-tick="0"] .timebox-secs b {
  animation-name: digitSoftDropA;
}

.countdown[data-tick="1"] .timebox-secs b {
  animation-name: digitSoftDropB;
}

.timebox-secs span {
  z-index: 2;
}

.wipe-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.wipe-rail span {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  overflow: hidden;
}

.wipe-rail span::before {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  animation: railCharge 1.8s ease-in-out infinite;
}

.wipe-rail span:nth-child(2)::before { animation-delay: .18s; }
.wipe-rail span:nth-child(3)::before { animation-delay: .36s; }
.wipe-rail span:nth-child(4)::before { animation-delay: .54s; }
.wipe-rail span:nth-child(5)::before { animation-delay: .72s; }

.other-wipe-timers {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
  padding-top: 2px;
}

.other-wipe-item {
  position: relative;
  display: inline-flex;
  padding-top: 10px;
  margin-top: -10px;
}

.other-wipe-item::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 100%;
  height: 22px;
}

.other-wipe-timer {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(41, 212, 167, .18);
  border-radius: 999px;
  padding: 0 8px;
  background:
    linear-gradient(135deg, rgba(41, 212, 167, .11), transparent 56%),
    rgba(4, 10, 12, .52);
  color: #dcebe6;
  cursor: default;
  font: inherit;
  outline: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.other-wipe-timer strong {
  font-size: clamp(10px, 1.05vw, 13px);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.other-wipe-timer:hover,
.other-wipe-timer:focus,
.other-wipe-item:hover .other-wipe-timer,
.other-wipe-item.is-open .other-wipe-timer {
  z-index: 4;
  border-color: rgba(41, 212, 167, .56);
  background:
    linear-gradient(135deg, rgba(41, 212, 167, .18), rgba(224, 178, 77, .08)),
    rgba(4, 10, 12, .82);
  box-shadow: 0 0 0 3px rgba(41, 212, 167, .08), 0 12px 28px rgba(0, 0, 0, .32);
  transform: translateY(-1px);
}

.mini-wipe-popout {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 6;
  width: 198px;
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(41, 212, 167, .38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(41, 212, 167, .06) 32px 33px),
    rgba(5, 12, 14, .96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .52), 0 0 24px rgba(41, 212, 167, .12);
  opacity: 0;
  pointer-events: auto;
  transform: translate(-50%, 8px) scale(.94);
  transform-origin: 50% 100%;
  transition: opacity .16s ease, transform .2s cubic-bezier(.18, .9, .18, 1);
}

.mini-wipe-popout::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(41, 212, 167, .28);
  border-bottom: 1px solid rgba(41, 212, 167, .28);
  background: rgba(5, 12, 14, .96);
  transform: translate(-50%, -7px) rotate(45deg);
}

.mini-wipe-popout::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 212, 167, .22) 42%, rgba(224, 178, 77, .18) 52%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-118%) skewX(-16deg);
}

.other-wipe-item:first-child .mini-wipe-popout {
  left: 0;
  transform: translate(0, 8px) scale(.94);
  transform-origin: 18% 100%;
}

.other-wipe-item:first-child .mini-wipe-popout::after {
  left: 36px;
}

.other-wipe-item:last-child .mini-wipe-popout {
  left: auto;
  right: 0;
  transform: translate(0, 8px) scale(.94);
  transform-origin: 82% 100%;
}

.other-wipe-item:last-child .mini-wipe-popout::after {
  left: auto;
  right: 24px;
}

.other-wipe-item:hover .mini-wipe-popout,
.other-wipe-timer:hover + .mini-wipe-popout,
.other-wipe-timer:focus + .mini-wipe-popout,
.other-wipe-item.is-open .mini-wipe-popout {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.other-wipe-item:first-child:hover .mini-wipe-popout,
.other-wipe-item:first-child .other-wipe-timer:hover + .mini-wipe-popout,
.other-wipe-item:first-child .other-wipe-timer:focus + .mini-wipe-popout,
.other-wipe-item:first-child.is-open .mini-wipe-popout,
.other-wipe-item:last-child:hover .mini-wipe-popout,
.other-wipe-item:last-child .other-wipe-timer:hover + .mini-wipe-popout,
.other-wipe-item:last-child .other-wipe-timer:focus + .mini-wipe-popout,
.other-wipe-item:last-child.is-open .mini-wipe-popout {
  transform: translate(0, 0) scale(1);
}

.mini-wipe-date {
  color: #9fb1ac;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.wipe-floating-popout {
  left: 0;
  bottom: calc(100% + 8px);
  transform: translateY(12px) scale(.88) rotateX(-12deg);
  transform-origin: var(--arrow-left, 50%) 100%;
}

.wipe-floating-popout::after {
  left: var(--arrow-left, 50%);
}

.wipe-floating-popout.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  animation: wipePopIn .28s cubic-bezier(.2, .82, .24, 1) both;
}

.wipe-floating-popout.is-visible::before {
  animation: wipePopScan .46s ease-out 80ms both;
}

@keyframes wipePopIn {
  0% {
    opacity: 0;
    filter: brightness(1.14);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .42), 0 0 0 rgba(41, 212, 167, 0);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .52), 0 0 24px rgba(41, 212, 167, .12);
  }
}

@keyframes wipePopScan {
  0% { opacity: 0; transform: translateX(-118%) skewX(-16deg); }
  34% { opacity: .46; }
  100% { opacity: 0; transform: translateX(118%) skewX(-16deg); }
}

@keyframes hudNoise {
  50% { opacity: .72; transform: translateY(2px); }
}

@keyframes armedBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .28; transform: scale(.68); }
}

@keyframes secondImpact {
  0% { transform: translateY(-3px) scale(.97); filter: brightness(1.6); }
  34% { transform: translateY(1px) scale(1.07); filter: brightness(1.22); }
  100% { transform: translateY(0) scale(1); filter: brightness(1); }
}

@keyframes secondSoftTick {
  0% { transform: translateY(-2px); filter: brightness(1.28); box-shadow: 0 0 16px rgba(41, 212, 167, .16); }
  100% { transform: translateY(0); filter: brightness(1); box-shadow: inset 0 -2px 0 rgba(41, 212, 167, .13), 0 14px 26px rgba(0, 0, 0, .2); }
}

@keyframes secondSoftTickA {
  0% { transform: translateY(-2px); filter: brightness(1.28); box-shadow: 0 0 16px rgba(41, 212, 167, .16); }
  100% { transform: translateY(0); filter: brightness(1); box-shadow: inset 0 -2px 0 rgba(41, 212, 167, .13), 0 14px 26px rgba(0, 0, 0, .2); }
}

@keyframes secondSoftTickB {
  0% { transform: translateY(-2px); filter: brightness(1.28); box-shadow: 0 0 16px rgba(41, 212, 167, .16); }
  100% { transform: translateY(0); filter: brightness(1); box-shadow: inset 0 -2px 0 rgba(41, 212, 167, .13), 0 14px 26px rgba(0, 0, 0, .2); }
}

@keyframes digitSoftDrop {
  0% { transform: translateY(-7px); opacity: .28; filter: blur(.8px); }
  42% { transform: translateY(1px); opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes digitSoftDropA {
  0% { transform: translateY(-7px); opacity: .28; filter: blur(.8px); }
  42% { transform: translateY(1px); opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes digitSoftDropB {
  0% { transform: translateY(-7px); opacity: .28; filter: blur(.8px); }
  42% { transform: translateY(1px); opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes secondSoftSweep {
  0% { transform: translateX(-78%); opacity: 0; }
  28% { opacity: .65; }
  100% { transform: translateX(78%); opacity: 0; }
}

@keyframes railCharge {
  0% { transform: translateX(-120%); opacity: .25; }
  45%, 70% { opacity: 1; }
  100% { transform: translateX(260%); opacity: .25; }
}

.mini-bars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  align-items: end;
  min-height: 46px;
}

.mini-bars i {
  --h: 10px;
  --d: 0s;
  display: block;
  flex: 1 1 4px;
  width: 100%;
  min-width: 2px;
  max-width: 16px;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #6dffe2, var(--accent));
  box-shadow: 0 0 12px rgba(41, 212, 167, .36);
  transform-origin: bottom;
  animation: pulseBar 1.9s ease-in-out infinite;
  animation-delay: var(--d);
}

.mini-bars i span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .42), transparent 48%);
}

.mini-bars i.warm {
  background: linear-gradient(180deg, #f8e59f, #e0b24d);
  box-shadow: 0 0 13px rgba(224, 178, 77, .33);
}

.mini-bars i.hot {
  background: linear-gradient(180deg, #fff0b7, #ffb62c 50%, #29d4a7);
  box-shadow: 0 0 18px rgba(255, 182, 44, .44);
}

.scan-line {
  position: absolute;
  left: -20%;
  right: auto;
  bottom: 13px;
  width: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 212, 167, .94), transparent);
  box-shadow: 0 0 16px rgba(41, 212, 167, .65);
  animation: scanLine 3.2s linear infinite;
}

.pulse-footer {
  align-items: center;
  color: #a8c1bb;
  font-size: 12px;
  font-weight: 800;
  margin-top: 7px;
}

.pulse-footer span:last-child {
  color: var(--accent);
}

@keyframes pulseSweep {
  0% { transform: translateX(-46%); }
  100% { transform: translateX(46%); }
}

@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(41, 212, 167, .55); }
  70% { box-shadow: 0 0 0 7px rgba(41, 212, 167, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 212, 167, 0); }
}

@keyframes pulseBar {
  0%, 100% { transform: scaleY(.82); filter: brightness(.95); }
  50% { transform: scaleY(1.08); filter: brightness(1.22); }
}

@keyframes scanLine {
  0% { transform: translateX(0); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateX(540%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before {
    transition: none;
  }

  .button:hover { transform: none; }

  .cluster-pulse-card::before,
  .wipe-card::before,
  .wipe-status-chip i,
  .timebox-secs,
  .timebox-secs::before,
  .timebox-secs b,
  .wipe-rail span::before,
  .pulse-chip i,
  .mini-bars i,
  .scan-line {
    animation: none;
  }
}

.section,
.hero,
.status-band {
  scroll-margin-top: 96px;
}

.section { padding: 52px 0; }
.stats-section {
  display: grid;
  gap: 18px;
  padding-top: 20px;
}

.stats-title {
  display: grid;
  gap: 4px;
}

.stats-title h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .92;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-width: 0;
  padding: 18px;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(34px, 3.2vw, 46px);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: .96;
  white-space: nowrap;
}

.cluster-chat-section {
  padding-top: 10px;
  padding-bottom: 0;
  max-width: min(1060px, calc(100% - 32px));
}

.cluster-chat-section .section-head {
  align-items: center;
}

.cluster-chat-section .section-head > div {
  min-width: 0;
}

.cluster-chat-section h2 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(30px, 5.2vw, 54px);
  line-height: .94;
  overflow-wrap: anywhere;
}

.cluster-chat-shell {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(41, 212, 167, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(41, 212, 167, .13), transparent 28%),
    linear-gradient(135deg, rgba(18, 26, 29, .96), rgba(7, 13, 15, .92));
  box-shadow: var(--shadow);
  transition: box-shadow .24s ease, border-color .24s ease, transform .24s ease;
}

.cluster-chat-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(41, 212, 167, .07), transparent),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(41, 212, 167, .045) 40px 41px);
  opacity: .7;
}

.cluster-chat-feed {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  height: clamp(310px, 36vh, 420px);
  overflow-y: auto;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
  scrollbar-color: rgba(41, 212, 167, .45) rgba(255, 255, 255, .06);
}

.cluster-chat-line,
.cluster-chat-empty {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(5, 10, 11, .48);
}

.cluster-chat-line {
  min-height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 7px 12px;
  overflow: hidden;
  transition: background .18s ease, border-color .18s ease;
}

.cluster-chat-line.no-cluster-tag {
  grid-template-columns: minmax(0, 1fr) auto;
}

.chat-cluster-tag {
  display: inline;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  margin-right: 3px;
  white-space: nowrap;
}

.cluster-chat-line p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #d9e8e3;
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cluster-chat-line time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.chat-main p {
  max-width: 100%;
  margin: 0;
  color: #c6d7d2;
  font-size: 13px;
  line-height: 1.42;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: pre-wrap;
}

.cluster-chat-empty {
  display: grid;
  gap: 5px;
  padding: 16px;
  color: #c6d7d2;
}

.cluster-chat-empty strong {
  color: #fff;
}

.players-section {
  align-items: stretch;
}

.players-section .section-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.player-chat-panel {
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 22px;
}

.player-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.player-chat-head .kicker {
  margin-bottom: 0;
}

.cluster-chat-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.cluster-chat-enlarge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: var(--mint);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.cluster-chat-enlarge:hover,
.cluster-chat-enlarge:focus-visible,
.cluster-chat-enlarge[aria-pressed="true"] {
  outline: none;
  border-color: rgba(41, 212, 167, .42);
  background: rgba(41, 212, 167, .12);
  box-shadow: 0 0 0 3px rgba(41, 212, 167, .08);
}

.player-chat-panel .cluster-chat-shell {
  flex: 1 1 auto;
  min-height: 0;
}

.player-chat-panel .cluster-chat-feed {
  height: auto;
  max-height: 438px;
  grid-auto-rows: minmax(34px, auto);
}

.player-chat-panel.is-enlarged {
  position: relative;
  z-index: 15;
  min-height: min(82vh, 760px);
}

.player-chat-panel.is-enlarged .cluster-chat-shell {
  position: absolute;
  top: 38px;
  left: 0;
  width: min(1040px, calc(100vw - 32px));
  max-width: none;
  border-color: rgba(41, 212, 167, .48);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .52), 0 0 0 1px rgba(41, 212, 167, .18);
  transform: translateY(-2px);
}

.player-chat-panel.is-enlarged .cluster-chat-feed {
  width: 100%;
  height: auto;
  max-height: min(76vh, 700px);
  padding: 14px;
  gap: 10px;
}

.player-chat-panel.is-enlarged .cluster-chat-line {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding: 10px 11px;
}

.player-chat-panel.is-enlarged .cluster-chat-line.no-cluster-tag {
  grid-template-columns: minmax(0, 1fr) auto;
}

.player-chat-panel.is-enlarged .cluster-chat-line p,
.cluster-chat-line:focus p {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.cluster-chat-line:hover,
.cluster-chat-line:focus {
  outline: none;
  border-color: rgba(41, 212, 167, .34);
  background: rgba(10, 22, 23, .72);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: center;
}

.two-column.reverse { grid-template-columns: minmax(420px, 1fr) minmax(280px, .72fr); }
.section-copy p:not(.kicker),
.pass-section p,
.cta-band p {
  color: #b9c8c3;
  line-height: 1.7;
  font-size: 16px;
}

.leaderboard,
.kit-list,
.lookup-results {
  display: grid;
  gap: 10px;
}

.leader-row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px;
}

.rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(41, 212, 167, .13);
  color: var(--accent);
  font-weight: 900;
}

.leader-main strong { display: block; font-size: 18px; }
.leader-main span { color: var(--muted); font-size: 13px; }
.score {
  color: var(--accent-2);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.kill-score {
  display: grid;
  justify-items: end;
  gap: 2px;
  line-height: 1;
}

.kill-score strong {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.kill-score span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.server-head-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.server-update-timer {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 0 10px;
  color: #aac0ba;
  background: rgba(255, 255, 255, .04);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, .05);
}

.segment {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  background: transparent;
  color: #c8d5d1;
  font-weight: 800;
}

.segment.active { background: var(--accent); color: #06211b; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.server-grid {
  display: grid;
  gap: 12px;
}

.server-card,
.shop-card,
.kit-card,
.lookup-card {
  padding: 16px;
}

.server-card {
  display: grid;
  gap: 12px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.card-head h3,
.shop-card h3,
.kit-card h3,
.lookup-card h3 {
  margin: 0;
  font-size: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255, 255, 255, .09);
  color: #d6e4df;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.pill.online { background: rgba(41, 212, 167, .17); color: var(--accent); }
.pill.offline { background: rgba(239, 100, 97, .15); color: var(--danger); }

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.server-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #c7d3cf;
  font-size: 13px;
}

.player-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 27px;
}

.player-name-list span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(41, 212, 167, .11);
  color: #d8f5ed;
  font-size: 12px;
  font-weight: 800;
}

.player-name-list em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.server-empty {
  grid-column: 1 / -1;
}

.admin-server-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.admin-server-group-header {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 0;
  background: rgba(255, 255, 255, .055);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.admin-server-group-header:hover {
  background: rgba(41, 212, 167, .08);
}

.admin-server-group-title {
  min-width: 0;
  display: grid;
  gap: 3px;
  flex: 1 1 auto;
}

.admin-server-group-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-server-group-title small {
  color: #9fb1ac;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-wipe-timer {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(41, 212, 167, .24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(41, 212, 167, .12), transparent 52%),
    rgba(4, 10, 12, .48);
  box-shadow: inset 0 -1px 0 rgba(41, 212, 167, .16);
}

.mini-wipe-timer span {
  min-height: 32px;
  display: grid;
  place-items: center;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(7, 14, 15, .72);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mini-wipe-timer b {
  color: #f4fffc;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.group-toggle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(41, 212, 167, .17);
  color: var(--accent);
  font-weight: 900;
}

.admin-server-group.is-collapsed .admin-server-group-header {
  border-bottom: 0;
}

.admin-server-group.is-collapsed .admin-server-group-body {
  display: none;
}

.admin-server-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) 110px 100px minmax(280px, 1.7fr);
  gap: 14px;
  align-items: start;
  min-height: 84px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.admin-server-row:last-child { border-bottom: 0; }

.admin-server-main strong {
  display: block;
  font-size: 16px;
}

.admin-server-main span,
.subtle {
  color: var(--muted);
  font-size: 13px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-online {
  color: var(--accent);
  background: rgba(41, 212, 167, .17);
}

.status-offline {
  color: var(--danger);
  background: rgba(239, 100, 97, .15);
}

.admin-player-count {
  color: var(--ink);
  font-weight: 800;
}

.admin-player-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-player-list .player-pill {
  display: inline-flex;
  max-width: 260px;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255, 255, 255, .08);
  color: #dbe8e3;
  font-size: 12px;
  font-weight: 750;
}

.shop-section { padding-top: 68px; }
.shop-card {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 16px;
}

.shop-card p,
.kit-card p,
.lookup-card p {
  color: #b9c8c3;
  line-height: 1.55;
}

.price {
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 900;
}

.kit-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.kit-card p { margin-bottom: 0; }

.pass-section,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(41, 212, 167, .12), rgba(24, 34, 37, .96) 52%, rgba(224, 178, 77, .12));
  padding: 34px;
}

.pass-section {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 24px;
  align-items: center;
}

.pass-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pass-step {
  min-height: 140px;
  padding: 14px;
  display: grid;
  align-content: space-between;
}

.pass-step strong {
  display: block;
  font-size: 22px;
}

.my-data { padding-bottom: 68px; }
.lookup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
  width: min(480px, 100%);
}

.lookup label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lookup input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

.lookup input:focus { border-color: rgba(41, 212, 167, .72); }
.lookup-results {
  grid-template-columns: repeat(3, 1fr);
}

.lookup-card .meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.discord-data-panel {
  display: grid;
  gap: 16px;
}

.discord-data-loading,
.discord-login-card,
.discord-profile-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, .13), transparent 36%),
    rgba(15, 22, 24, .9);
}

.discord-data-loading {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.discord-data-loading small {
  display: block;
  margin-top: 8px;
  color: #cddbd7;
  font-size: 13px;
  font-weight: 750;
}

.discord-login-card {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
}

.discord-login-card h3,
.discord-profile-card h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
}

.discord-login-card p {
  max-width: 58rem;
  color: #b9c8c3;
  line-height: 1.55;
}

.discord-login-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button.is-disabled {
  pointer-events: none;
  opacity: .58;
}

.button:disabled {
  cursor: wait;
  opacity: .6;
  transform: none;
}

.discord-profile-card {
  padding: 24px;
}

.discord-profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.discord-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.discord-profile-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.discord-identity-lines {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.discord-identity-lines span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.discord-identity-lines b {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.discord-avatar {
  width: 58px;
  height: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 101, 242, .5);
  border-radius: 8px;
  background: rgba(88, 101, 242, .18);
}

.discord-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discord-avatar-fallback {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.discord-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.discord-stat-tile,
.discord-cluster-breakdown {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  padding: 14px;
}

.discord-stat-tile {
  min-height: 106px;
  display: grid;
  align-content: space-between;
  gap: 8px;
}

.discord-stat-tile span,
.discord-cluster-breakdown > strong {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.discord-stat-tile strong {
  overflow-wrap: anywhere;
  font-size: clamp(19px, 2.6vw, 30px);
  line-height: 1;
}

.discord-stat-tile small,
.discord-cluster-breakdown p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.profile-update-tile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(44, 255, 180, .22);
  background:
    linear-gradient(135deg, rgba(44, 255, 180, .09), rgba(255, 255, 255, .035) 48%, rgba(255, 209, 102, .06)),
    rgba(255, 255, 255, .045);
  box-shadow: inset 0 0 0 1px rgba(44, 255, 180, .04), 0 12px 28px rgba(0, 0, 0, .18);
}

.profile-update-tile::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -1;
  background: conic-gradient(from -90deg, rgba(44, 255, 180, .48) var(--profile-timer-progress, 360deg), transparent 0);
  opacity: .22;
  animation: profile-timer-spin 9s linear infinite;
}

.profile-update-tile::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  background: linear-gradient(120deg, rgba(18, 27, 32, .94), rgba(24, 34, 38, .88));
}

.profile-update-tile strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6dffd4;
  text-shadow: 0 0 18px rgba(44, 255, 180, .28);
}

.profile-timer-orb {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #ecfff8 0 18%, #2cffb4 19% 38%, transparent 39%),
    conic-gradient(from -90deg, #2cffb4 var(--profile-timer-progress, 360deg), rgba(255, 255, 255, .12) 0);
  box-shadow: 0 0 20px rgba(44, 255, 180, .24);
  animation: profile-orb-pulse 2.6s ease-in-out infinite;
}

.profile-update-tile.is-refresh-soon {
  border-color: rgba(255, 209, 102, .45);
}

.profile-update-tile.is-refresh-soon strong {
  color: #ffd166;
}

.profile-update-tile.is-refresh-ready {
  border-color: rgba(255, 255, 255, .35);
  animation: profile-ready-flash 1.2s ease-in-out infinite;
}

.discord-cluster-breakdown {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.discord-data-section {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.discord-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discord-section-head strong {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.discord-mini-grid,
.discord-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.discord-mini-card,
.discord-badge,
.discord-feed-row,
.discord-top-row {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  padding: 12px;
}

.discord-mini-card {
  min-height: 92px;
  display: grid;
  align-content: space-between;
  gap: 8px;
}

.discord-mini-card span,
.discord-badge span,
.discord-top-row small,
.discord-feed-row small,
.discord-empty-line {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.discord-mini-card strong,
.discord-badge b,
.discord-top-row span,
.discord-feed-row span {
  color: #f4fffc;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.discord-mini-card strong {
  font-size: clamp(18px, 2.2vw, 25px);
}

.discord-mini-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.discord-badge {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  animation: badge-rise .72s cubic-bezier(.2, .86, .2, 1) both;
  animation-delay: var(--badge-delay, 0ms);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.discord-badge::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 24%, rgba(44, 255, 180, .22), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(255, 209, 102, .17), transparent 24%),
    linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, .14) 44%, transparent 54%);
  opacity: .72;
  transform: translateX(-32%) rotate(8deg);
  animation: badge-shimmer 4.8s ease-in-out infinite;
  animation-delay: var(--badge-delay, 0ms);
}

.discord-badge::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  border: 1px solid rgba(44, 255, 180, .12);
  pointer-events: none;
}

.discord-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 255, 180, .38);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28), 0 0 24px rgba(44, 255, 180, .08);
}

.discord-badge-art {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.discord-badge-art::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: rgba(44, 255, 180, .2);
  filter: blur(14px);
  animation: badge-pulse 2.8s ease-in-out infinite;
}

.discord-badge-art img {
  position: relative;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .32));
  animation: badge-float 3.4s ease-in-out infinite;
  animation-delay: var(--badge-delay, 0ms);
}

.discord-badge-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.discord-rank-shell {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 10px;
}

.discord-rank-list,
.discord-feed,
.discord-top-list {
  display: grid;
  gap: 8px;
}

.discord-top-row,
.discord-feed-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(48px, auto);
  gap: 6px 10px;
  align-items: center;
}

.discord-top-row b,
.discord-feed-row b {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.discord-top-row small,
.discord-feed-row small {
  grid-column: 1 / -1;
}

.discord-feed-row {
  border-left: 3px solid rgba(255, 255, 255, .18);
}

.discord-feed-row.event-kill { border-left-color: #2cffb4; }
.discord-feed-row.event-death { border-left-color: #ff5b6e; }
.discord-feed-row.event-structure { border-left-color: #ffd166; }

.discord-tribe-log-open-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(44, 255, 180, .18);
  border-radius: 8px;
  background: rgba(44, 255, 180, .055);
}

.discord-tribe-log-open-card.is-locked {
  color: inherit;
  text-decoration: none;
  border-color: rgba(255, 91, 110, .34);
  background:
    linear-gradient(135deg, rgba(255, 91, 110, .14), rgba(44, 255, 180, .04)),
    rgba(13, 18, 20, .86);
  cursor: pointer;
}

.discord-tribe-log-open-card.is-locked:hover {
  border-color: rgba(255, 91, 110, .56);
  transform: translateY(-1px);
}

.discord-tribe-log-open-card span {
  display: block;
  color: #f4fffc;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.discord-tribe-log-open-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tribe-log-locked-main {
  min-width: 0;
}

.tribe-log-locked-preview {
  display: grid;
  gap: 5px;
  max-width: 580px;
  margin-top: 10px;
  user-select: none;
  pointer-events: none;
  filter: blur(3px);
  opacity: .5;
}

.tribe-log-locked-preview p {
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  color: rgba(244, 255, 252, .64);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 850;
  overflow: hidden;
  white-space: nowrap;
}

.tribe-log-locked-cta {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex: 0 0 auto;
  max-width: 280px;
  text-align: right;
}

.tribe-log-locked-cta strong {
  color: #ff6f80;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.tribe-log-locked-cta b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 7px;
  color: #111817;
  background: #ff6f80;
  box-shadow: 0 10px 24px rgba(255, 91, 110, .18);
  font-size: 13px;
  font-weight: 950;
}

.mydata-disclaimer {
  margin: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

@keyframes badge-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes profile-timer-spin {
  to { transform: rotate(360deg); }
}

@keyframes profile-orb-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.22); }
}

@keyframes profile-ready-flash {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(44, 255, 180, .08), 0 12px 28px rgba(0, 0, 0, .18); }
  50% { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 0 28px rgba(44, 255, 180, .24); }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(1.5deg); }
}

@keyframes badge-pulse {
  0%, 100% { opacity: .45; transform: scale(.92); }
  50% { opacity: .86; transform: scale(1.08); }
}

@keyframes badge-shimmer {
  0%, 35% { transform: translateX(-34%) rotate(8deg); opacity: .42; }
  58% { transform: translateX(28%) rotate(8deg); opacity: .82; }
  100% { transform: translateX(28%) rotate(8deg); opacity: .42; }
}

.discord-empty-line {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  padding: 14px;
}

.discord-cluster-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) repeat(4, minmax(54px, auto));
  gap: 8px;
  align-items: center;
  min-height: 34px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 8px;
  color: #dbe8e3;
}

.discord-cluster-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 850;
}

.discord-cluster-row b {
  color: #f4fffc;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 64px;
}

.cta-band h2 { margin-bottom: 10px; }
.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #b7c5c0;
}

.footer strong { color: #fff; }
.footer a { color: var(--accent); font-weight: 850; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .nav { grid-column: 1 / -1; justify-content: start; overflow-x: auto; flex-wrap: nowrap; }
  .status-band,
  .stats-grid,
  .shop-grid,
  .lookup-results,
  .pass-track { grid-template-columns: repeat(2, 1fr); }
  .admin-server-group-header { flex-wrap: wrap; }
  .admin-server-row { grid-template-columns: minmax(220px, 1fr) 100px 90px; }
  .admin-server-group-body { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .admin-player-list { grid-column: 1 / -1; }
  .two-column,
  .two-column.reverse,
  .pass-section { grid-template-columns: 1fr; }
  .player-chat-panel.is-enlarged {
    min-height: min(82vh, 740px);
  }
  .player-chat-panel.is-enlarged .cluster-chat-shell {
    width: 100%;
  }
  .player-chat-panel.is-enlarged .cluster-chat-feed {
    width: 100%;
  }
  .leaderboard,
  .kit-list { min-width: 0; }
  .discord-login-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .discord-login-actions { justify-content: flex-start; }
  .discord-stat-grid,
  .discord-mini-grid,
  .discord-badge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discord-rank-shell { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    padding: 10px 8px;
  }
  .brand span:last-child { display: none; }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
  .header-data-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
  .nav {
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 34px;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0 12px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }
  .announcement {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 18px 20px 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
  }
  .announcement h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1;
  }
  .announcement p:not(.kicker) {
    font-size: 15px;
    line-height: 1.45;
  }
  .announcement .button {
    width: 100%;
  }
  .hero { min-height: 460px; }
  .hero-content {
    width: min(100% - 32px, 1120px);
    padding-top: 34px;
    padding-bottom: 36px;
    transform: none;
  }
  h1 {
    font-size: clamp(46px, 15vw, 72px);
    line-height: .9;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions .button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
  }
  .live-strip span { width: 100%; }
  .status-band,
  .stats-grid,
  .shop-grid,
  .lookup-results,
  .pass-track { grid-template-columns: 1fr; }
  .admin-server-group-header { align-items: flex-start; }
  .admin-server-group-title strong { white-space: normal; }
  .mini-wipe-timer {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cluster-chat-feed {
    height: clamp(300px, 46vh, 380px);
  }
  .player-chat-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .cluster-chat-actions {
    width: 100%;
    justify-content: space-between;
  }
  .admin-server-row { grid-template-columns: 1fr; }
  .discord-profile-head {
    grid-template-columns: auto 1fr;
  }
  .discord-profile-head .button {
    width: 100%;
  }
  .discord-profile-actions {
    grid-column: 1 / -1;
    width: 100%;
  }
  .discord-stat-grid,
  .discord-mini-grid,
  .discord-badge-grid { grid-template-columns: 1fr; }
  .discord-badge {
    grid-template-columns: 62px 1fr;
    min-height: 104px;
  }
  .discord-badge-art,
  .discord-badge-art img {
    width: 58px;
    height: 58px;
  }
  .discord-cluster-row {
    grid-template-columns: 1fr repeat(4, minmax(42px, auto));
  }
  .discord-top-row,
  .discord-feed-row { grid-template-columns: 1fr; }
  .discord-top-row b,
  .discord-feed-row b { text-align: left; }
  .discord-tribe-log-open-card {
    align-items: stretch;
    flex-direction: column;
  }
  .tribe-log-locked-cta {
    justify-items: stretch;
    max-width: none;
    text-align: left;
  }
  .admin-server-row.server-pop-only { grid-template-columns: 1fr auto; }
  .section-head,
  .cta-band { align-items: stretch; flex-direction: column; }
  .leader-row { grid-template-columns: 44px 1fr; }
  .score { grid-column: 2; }
  .lookup { grid-template-columns: 1fr; }
  .kit-card { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: start; justify-content: center; }
}


.tribes-armed .tribe-reveal-row {
  opacity: .82;
  transform: translateX(-10px) scale(.992);
  filter: none;
}

.tribes-revealed .tribe-reveal-row {
  position: relative;
  overflow: hidden;
  animation: tribe-row-reveal .72s cubic-bezier(.2, .86, .2, 1) both;
  animation-delay: calc(var(--reveal-index, 0) * 105ms);
}

.tribes-revealed .tribe-reveal-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 212, 167, .18) 44%, rgba(255, 190, 78, .18) 52%, transparent 68%);
  transform: translateX(-120%) skewX(-18deg);
  animation: tribe-row-scan 1.15s ease-out both;
  animation-delay: calc(var(--reveal-index, 0) * 105ms + 120ms);
}

.tribes-revealed .tribe-reveal-row .rank {
  animation: tribe-rank-pop .62s cubic-bezier(.2, .86, .2, 1) both;
  animation-delay: calc(var(--reveal-index, 0) * 105ms + 90ms);
}

@keyframes tribe-row-reveal {
  from { opacity: .82; transform: translateX(-10px) scale(.992); filter: none; }
  to { opacity: 1; transform: translateX(0) scale(1); filter: none; }
}

@keyframes tribe-row-scan {
  0% { opacity: 0; transform: translateX(-120%) skewX(-18deg); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: translateX(135%) skewX(-18deg); }
}

@keyframes tribe-rank-pop {
  0% { transform: scale(.72); box-shadow: 0 0 0 rgba(41, 212, 167, 0); }
  64% { transform: scale(1.08); box-shadow: 0 0 24px rgba(41, 212, 167, .22); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before {
    transition: none;
  }

  .button:hover { transform: none; }

  .players-armed .player-reveal-row,
  .players-revealed .player-reveal-row,
  .players-revealed .player-reveal-row .rank,
  .tribes-armed .tribe-reveal-row,
  .tribes-revealed .tribe-reveal-row,
  .tribes-revealed .tribe-reveal-row .rank {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .players-revealed .player-reveal-row::after,
  .tribes-revealed .tribe-reveal-row::after {
    display: none;
  }
}


.players-armed .player-reveal-row {
  opacity: .82;
  transform: translateX(10px) scale(.992);
  filter: none;
}

.players-revealed .player-reveal-row {
  position: relative;
  overflow: hidden;
  animation: player-row-reveal .72s cubic-bezier(.2, .86, .2, 1) both;
  animation-delay: calc(var(--reveal-index, 0) * 95ms);
}

.players-revealed .player-reveal-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(157, 223, 255, .16) 42%, rgba(41, 212, 167, .2) 52%, transparent 68%);
  transform: translateX(-120%) skewX(-18deg);
  animation: player-row-scan 1.1s ease-out both;
  animation-delay: calc(var(--reveal-index, 0) * 95ms + 110ms);
}

.players-revealed .player-reveal-row .rank {
  animation: player-rank-pop .58s cubic-bezier(.2, .86, .2, 1) both;
  animation-delay: calc(var(--reveal-index, 0) * 95ms + 80ms);
}

@keyframes player-row-reveal {
  from { opacity: .82; transform: translateX(10px) scale(.992); filter: none; }
  to { opacity: 1; transform: translateX(0) scale(1); filter: none; }
}

@keyframes player-row-scan {
  0% { opacity: 0; transform: translateX(-120%) skewX(-18deg); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: translateX(135%) skewX(-18deg); }
}

@keyframes player-rank-pop {
  0% { transform: scale(.72); box-shadow: 0 0 0 rgba(157, 223, 255, 0); }
  64% { transform: scale(1.08); box-shadow: 0 0 24px rgba(157, 223, 255, .2); }
  100% { transform: scale(1); }
}


.my-data {
  scroll-margin-top: 96px;
}

#kits {
  display: none;
}


.server-head-tools .segmented {
  display: none;
}


.admin-server-group-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  padding: 12px;
}

.admin-server-row.server-pop-only {
  min-height: 54px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(5, 10, 11, .38);
}

.admin-server-row.server-pop-only:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.server-pop-only .admin-server-main strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.server-pop-only .admin-player-count {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(41, 212, 167, .14);
  color: #eafff8;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}


.server-online-title {
  color: var(--accent);
}

.server-total-pop {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-left: 12px;
  border: 1px solid rgba(41, 212, 167, .28);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(41, 212, 167, .1);
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  vertical-align: middle;
}


.announcement .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement .kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29d4a7;
  box-shadow: 0 0 10px rgba(41, 212, 167, .92), 0 0 22px rgba(41, 212, 167, .45);
  animation: announcementDot 1.05s ease-in-out infinite;
}

@keyframes announcementGlow {
  0%, 100% {
    border-color: rgba(224, 178, 77, .42);
    box-shadow: var(--shadow), 0 0 0 0 rgba(224, 178, 77, .12);
  }
  50% {
    border-color: rgba(41, 212, 167, .55);
    box-shadow: var(--shadow), 0 0 26px rgba(41, 212, 167, .16), 0 0 34px rgba(224, 178, 77, .1);
  }
}

@keyframes announcementDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .32; transform: scale(.72); }
}


.legal-footer {
  min-height: auto;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
}

.legal-footer p {
  max-width: 980px;
  margin: 0;
  color: #b7c5c0;
  font-size: 13px;
  line-height: 1.6;
}

.legal-page main {
  min-height: 62vh;
}

.legal-hero,
.legal-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-hero {
  padding: 72px 0 22px;
}

.legal-hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
}

.legal-shell {
  margin-bottom: 64px;
}

.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(18, 26, 29, .86);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  display: none;
}

.legal-document h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.legal-document p,
.legal-document li {
  color: #d5e0dc;
  font-size: 15px;
  line-height: 1.72;
}

.legal-document p {
  margin-bottom: 14px;
}

.legal-document ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.legal-document a {
  color: var(--accent);
  font-weight: 850;
}
