:root {
  color-scheme: dark;
  --ink: #05090d;
  --ink-raised: #09121a;
  --panel: #0c1720;
  --panel-soft: #101e29;
  --line: rgba(158, 220, 235, .15);
  --line-bright: rgba(126, 231, 255, .42);
  --ice: #7ee8ff;
  --ice-bright: #dffaff;
  --blue: #5e96ff;
  --toxic: #b8f14b;
  --amber: #ffbe55;
  --red: #ff5b62;
  --green: #65e7a5;
  --muted: #8da2af;
  --text: #f4f9fb;
  --shadow: 0 28px 80px rgba(0, 0, 0, .35);
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 76px;
  --map-viewport-height: 100vh;
  --pointer-x: 50vw;
  --pointer-y: 35vh;
}

@supports (height: 100dvh) {
  :root { --map-viewport-height: 100dvh; }
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 20%, rgba(65, 167, 210, .08), transparent 24rem),
    linear-gradient(180deg, #05090d 0%, #071018 58%, #05090d 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .48;
  background: radial-gradient(420px circle at var(--pointer-x) var(--pointer-y), rgba(126, 232, 255, .075), transparent 68%);
  mix-blend-mode: screen;
}
main,
.site-header,
.site-footer,
.toast-region,
.skip-link { position: relative; z-index: 1; }
.site-header { position: fixed; }
@keyframes global-particle-orbit {
  0% {
    transform: translate3d(0, 0, 0) scale(.86);
    filter: brightness(.88);
  }
  50% {
    transform: translate3d(var(--particle-drift-x), var(--particle-drift-y), 0) scale(1.68);
    filter: brightness(1.32);
  }
  100% {
    transform: translate3d(var(--particle-return-x), var(--particle-return-y), 0) scale(1.02);
    filter: brightness(1.04);
  }
}
.cinematic-ambient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 82;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  pointer-events: none;
  opacity: .68;
  mix-blend-mode: screen;
  transition: opacity .2s ease;
}
.cinematic-particle {
  position: absolute;
  left: var(--particle-left);
  top: var(--particle-top);
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: var(--ice);
  box-shadow:
    0 0 var(--particle-glow-soft) rgba(126, 232, 255, .88),
    0 0 var(--particle-glow) rgba(126, 232, 255, .58);
  opacity: var(--particle-opacity);
  transform: translate3d(0, 0, 0);
  animation: global-particle-orbit var(--particle-duration) ease-in-out var(--particle-delay) infinite alternate;
  will-change: transform, filter;
}
.cinematic-ambient.is-suspended {
  opacity: 0;
}
.cinematic-ambient.is-suspended .cinematic-particle {
  animation-play-state: paused;
}
.cinematic-reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 30px, 0) scale(.988);
  transition:
    opacity .8s cubic-bezier(.2, .72, .2, 1),
    transform .8s cubic-bezier(.2, .72, .2, 1),
    filter .8s cubic-bezier(.2, .72, .2, 1);
  transition-delay: var(--cinematic-delay, 0ms);
}
.cinematic-reveal.is-cinematic-visible,
.cinematic-static .cinematic-reveal {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ice);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.7) 0 1px, transparent 1px 4px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 9, 13, .82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: .08em; }
.brand-mark, .footer-mark, .radar-mark, .loading-mark, .login-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 232, 255, .48);
  border-radius: 50%;
  color: var(--ice-bright);
  background: radial-gradient(circle, rgba(126,232,255,.12), transparent 68%);
  text-shadow: 0 0 15px rgba(126, 232, 255, .7);
}
.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  padding: 4px;
  font-size: 0;
  background: radial-gradient(circle, rgba(126, 232, 255, .16), rgba(5, 9, 13, .96) 72%);
  box-shadow: inset 0 0 0 1px rgba(126, 232, 255, .08), 0 0 18px rgba(126, 232, 255, .08);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #d9dde0 url("/assets/img/site-icon-192.png") center center / contain no-repeat;
  box-shadow: 0 0 0 1px rgba(223, 250, 255, .22);
}
.footer-mark { width: 58px; height: 58px; flex: 0 0 58px; font-size: 1.5rem; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1.16rem; letter-spacing: .22em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .62rem; letter-spacing: .18em; }
.site-nav { display: flex; flex-wrap: nowrap; align-items: center; gap: 30px; }
.site-nav > a { position: relative; color: #b9c8d0; font-size: .82rem; font-weight: 700; letter-spacing: .06em; white-space: nowrap; }
.site-nav > a:not(.nav-login)::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 1px;
  transform: scaleX(0);
  background: var(--ice);
  transition: transform .2s ease;
}
.site-nav > a:hover { color: var(--text); }
.site-nav > a:hover::after { transform: scaleX(1); }
.nav-login { padding: 9px 15px; border: 1px solid var(--line-bright); color: var(--ice-bright) !important; }
.nav-toggle { display: none; border: 0; background: transparent; color: white; }

.hero {
  position: relative;
  min-height: 830px;
  height: 100svh;
  max-height: 1040px;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 9, 13, .98) 0%, rgba(5, 9, 13, .91) 43%, rgba(5, 9, 13, .48) 71%, rgba(5, 9, 13, .9) 100%),
    radial-gradient(ellipse at 76% 42%, rgba(76, 158, 184, .16), transparent 42%),
    linear-gradient(130deg, #080f15, #0a1b25 50%, #061018);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .44;
  background:
    linear-gradient(115deg, transparent 59%, rgba(126, 232, 255, .08) 60%, transparent 61%),
    linear-gradient(63deg, transparent 65%, rgba(126, 232, 255, .05) 66%, transparent 67%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}
.hero-orb { display: none; }
.hero-content { position: relative; z-index: 2; padding-top: 40px; }
.eyebrow { margin: 0 0 18px; color: var(--ice); font-size: .72rem; font-weight: 800; letter-spacing: .22em; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(101, 231, 165, .09), 0 0 18px var(--green); }
.hero h1, .section-heading h2, .performance-copy h2, .join-content h2 {
  margin: 0;
  font-family: Impact, "Arial Black", "Yu Gothic UI", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: .025em;
}
.hero h1 { max-width: 850px; font-size: clamp(3.2rem, 6.1vw, 6.35rem); }
.hero h1 span, .section-heading h2 span, .performance-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(223, 250, 255, .68);
  text-shadow: 0 0 36px rgba(126, 232, 255, .09);
}
.hero-lead { max-width: 760px; margin: 30px 0 0; color: #bfccd3; font-size: clamp(.98rem, 1.3vw, 1.12rem); line-height: 2; }
.hero-actions, .join-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 12px 22px;
  border: 1px solid var(--line-bright);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ice-bright); color: #061018; border-color: var(--ice-bright); box-shadow: 0 10px 30px rgba(126, 232, 255, .11); }
.button-primary:hover { background: var(--ice); }
.button-secondary { background: rgba(8, 18, 26, .55); color: var(--text); }
.button-secondary:hover { border-color: var(--ice); background: rgba(126, 232, 255, .06); }
.hero-meta { display: flex; margin-top: 54px; }
.hero-meta div { min-width: 148px; padding: 0 30px; border-left: 1px solid var(--line); }
.hero-meta div:first-child { padding-left: 0; border-left: 0; }
.hero-meta strong { display: block; color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: 1.55rem; line-height: 1; }
.hero-meta span { display: block; margin-top: 9px; color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.hero-side { position: absolute; right: max(30px, calc((100vw - 1180px) / 2)); top: 50%; transform: translateY(-50%); width: 310px; text-align: center; }
.radar { position: relative; width: 290px; height: 290px; margin: auto; display: grid; place-items: center; border: 1px solid rgba(126, 232, 255, .22); border-radius: 50%; background: repeating-radial-gradient(circle at center, rgba(126,232,255,.045) 0 1px, transparent 1px 48px); box-shadow: 0 0 0 72px rgba(126,232,255,.018), 0 0 0 73px rgba(126,232,255,.08), 0 0 90px rgba(67,159,193,.12); }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(126, 232, 255, .18); }
.radar::before { width: 1px; height: 100%; }
.radar::after { width: 100%; height: 1px; }
.radar-ring { position: absolute; border: 1px solid rgba(126, 232, 255, .15); border-radius: 50%; }
.radar-ring-one { inset: 48px; }
.radar-ring-two { inset: 88px; }
.radar-sweep { position: absolute; inset: 50%; width: 46%; height: 1px; transform-origin: left; background: linear-gradient(90deg, var(--ice), transparent); animation: radar 5s linear infinite; }
.radar-mark { width: 122px; height: 122px; font-size: 3rem; opacity: .76; box-shadow: 0 0 26px rgba(126, 232, 255, .12); }
.hero-side p { color: var(--muted); font-size: .62rem; letter-spacing: .16em; }
.hero-side strong { color: var(--green); font-size: .72rem; }
.scroll-cue { position: absolute; bottom: 24px; left: 50%; display: flex; align-items: center; gap: 16px; transform: translateX(-50%); color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .18em; }
.scroll-cue i { width: 50px; height: 1px; background: linear-gradient(90deg, var(--ice), transparent); animation: scroll-cue 2s ease-in-out infinite; }

.hero.hero-cinematic {
  min-height: 0;
  height: auto;
  max-height: none;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #020508;
}
.hero.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 5, 8, .08), transparent 34%, rgba(2, 5, 8, .52)),
    radial-gradient(ellipse at 76% 42%, rgba(126, 232, 255, .12), transparent 42%),
    linear-gradient(90deg, rgba(2, 5, 8, .28), transparent 26%, transparent 72%, rgba(2, 5, 8, .26));
}
.hero.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: -35% 0 auto;
  z-index: 3;
  height: 42%;
  pointer-events: none;
  opacity: .55;
  background: linear-gradient(180deg, transparent, rgba(126, 232, 255, .08), transparent);
  animation: hero-scan 9s linear infinite;
}
.hero-cinematic-art {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 58% 50%;
  will-change: transform, filter;
  animation: hero-cinematic-drift 18s ease-in-out infinite alternate;
}
.hero-cinematic .scroll-cue { z-index: 4; padding: 8px 12px; background: rgba(2,7,11,.62); backdrop-filter: blur(8px); }
.hero-command-strip { position: relative; padding: 34px 0 42px; border-bottom: 1px solid var(--line); background: linear-gradient(110deg, #07121a, #050a0f); }
.hero-command-strip::before { content: ""; position: absolute; inset: 0; opacity: .15; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; }
.hero-command-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 60px; }
.hero-command-copy .eyebrow { margin-bottom: 10px; }
.hero-command-copy .hero-lead { max-width: 760px; margin-top: 0; font-size: .82rem; line-height: 1.9; }
.hero-command-copy .hero-actions { margin-top: 22px; }
.hero-command-grid .hero-meta { margin: 0; }
.hero-command-grid .hero-meta div { min-width: 124px; padding-inline: 22px; }
.hero-mobile-title { display: none; }

.status-strip { padding: 70px 0 88px; background: #071018; border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 42px; }
.section-heading.compact { display: flex; align-items: end; justify-content: space-between; }
.section-heading h2, .performance-copy h2, .join-content h2 { font-size: clamp(2.3rem, 4.7vw, 4.5rem); }
.section-heading.compact h2 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
.data-freshness { margin: 0; color: var(--muted); font-size: .72rem; }
.section-action-row { display: flex; justify-content: flex-end; margin: -28px 0 22px; }
.section-action-row a { color: var(--ice); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.status-card { position: relative; min-height: 238px; overflow: hidden; padding: 22px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(15, 30, 41, .92), rgba(7, 16, 24, .92)); }
.status-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--status-color, var(--muted)); box-shadow: 0 0 18px var(--status-color, transparent); }
.status-card[data-state="online"] { --status-color: var(--green); }
.status-card[data-state="stale"] { --status-color: var(--amber); }
.status-card[data-state="offline"] { --status-color: var(--red); }
.status-card-head { display: flex; align-items: center; justify-content: space-between; }
.status-card-head strong { font-size: .9rem; letter-spacing: .06em; }
.status-pill { color: var(--status-color); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.status-numbers { display: flex; align-items: end; gap: 9px; margin-top: 26px; }
.status-numbers strong { font-size: 2.5rem; line-height: 1; }
.status-numbers span { color: var(--muted); font-size: .74rem; }
.status-sparkline { width: 100%; height: 45px; display: block; margin-top: 18px; overflow: visible; border-bottom: 1px solid rgba(126,232,255,.08); }
.status-sparkline path { fill: none; stroke: var(--status-color); stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 4px var(--status-color)); }
.status-detail { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; padding-top: 10px; color: var(--muted); font-size: .66rem; }
.status-card-link { position: absolute; inset: auto 22px 13px; color: var(--ice); font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.skeleton { animation: skeleton 1.5s ease-in-out infinite; }

.feature-intro { padding: 125px 0; }
.feature-intro-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: end; gap: 100px; }
.feature-intro-grid > p { max-width: 520px; margin: 0 0 48px; color: #9eb0ba; font-size: 1.04rem; line-height: 2; }
.feature-cards { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 12px; }
.feature-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(14, 29, 40, .8), rgba(7, 14, 20, .85)); transition: transform .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--line-bright); }
.feature-large { background: linear-gradient(150deg, rgba(41, 61, 28, .42), rgba(8, 18, 22, .94)); }
.feature-wide { grid-column: span 3; min-height: 250px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.feature-index { position: absolute; right: 24px; top: 22px; color: rgba(223, 250, 255, .22); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.feature-icon { color: var(--ice); font-size: 2rem; }
.feature-large .feature-icon { color: var(--toxic); }
.feature-card h3 { margin: auto 0 10px; font-size: 1.3rem; letter-spacing: .03em; }
.feature-wide h3 { margin-top: 70px; }
.feature-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.feature-card > a { margin-top: 24px; color: var(--ice); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.feature-card .feature-inline-link { display: inline-block; margin-top: 18px; color: var(--ice); font-size: .68rem; font-weight: 900; }
.ranking-preview { display: grid; align-content: center; gap: 8px; }
.ranking-row { display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center; padding: 15px 18px; background: rgba(255, 255, 255, .025); border: 1px solid var(--line); }
.ranking-row b { color: var(--ice); font-size: .72rem; }
.ranking-row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 700; }
.ranking-row em { color: var(--muted); font-style: normal; font-size: .75rem; }

/* Fox Teleport2Player and Discord */
.teleport-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 232, 255, .13), transparent 25rem),
    radial-gradient(circle at 8% 100%, rgba(88, 101, 242, .12), transparent 24rem),
    linear-gradient(140deg, #07131c, #04080c 68%);
}
.teleport-section::before {
  content: "T2P";
  position: absolute;
  right: 4vw;
  top: -4rem;
  color: rgba(126, 232, 255, .025);
  font-family: Impact, sans-serif;
  font-size: clamp(12rem, 25vw, 28rem);
  line-height: 1;
  pointer-events: none;
}
.teleport-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 80px; }
.teleport-heading h2 { margin: 0; font-size: clamp(2.5rem, 5.2vw, 5rem); line-height: 1.1; }
.teleport-heading h2 span { color: transparent; -webkit-text-stroke: 1px rgba(223, 250, 255, .58); }
.teleport-heading > p { margin: 0 0 12px; color: #a4b5be; font-size: .92rem; line-height: 2; }
.teleport-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; margin-top: 48px; }
.teleport-features, .teleport-terminal { min-height: 430px; border: 1px solid var(--line); }
.teleport-features { padding: 34px; background: linear-gradient(145deg, rgba(14, 31, 42, .9), rgba(6, 14, 20, .94)); }
.teleport-kicker { margin: 0; color: var(--ice); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.teleport-features h3 { max-width: 620px; margin: 16px 0 28px; font-size: clamp(1.35rem, 2.2vw, 2.1rem); line-height: 1.45; }
.teleport-features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0; padding: 0; list-style: none; }
.teleport-features li { position: relative; min-height: 105px; display: grid; align-content: center; padding: 15px 15px 15px 50px; border: 1px solid var(--line); background: rgba(255, 255, 255, .018); }
.teleport-features li > span { position: absolute; left: 15px; top: 18px; color: var(--ice); font-family: "Arial Black", sans-serif; font-size: .66rem; }
.teleport-features li strong { font-size: .8rem; }
.teleport-features li small { margin-top: 5px; color: var(--muted); font-size: .66rem; line-height: 1.6; }
.teleport-terminal { position: relative; padding: 0 30px 26px; background: rgba(1, 5, 8, .94); box-shadow: inset 0 0 55px rgba(126, 232, 255, .025); }
.teleport-terminal::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(180deg, transparent 0 4px, rgba(126, 232, 255, .015) 4px 5px); }
.teleport-terminal-head { position: relative; display: flex; justify-content: space-between; gap: 20px; margin-inline: -30px; padding: 14px 20px; border-bottom: 1px solid var(--line); color: var(--ice); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.teleport-terminal-head i { color: var(--green); font-style: normal; }
.teleport-command { position: relative; display: grid; gap: 8px; margin-top: 28px; }
.teleport-command > span, .teleport-command > small { color: var(--muted); font-size: .58rem; font-weight: 900; letter-spacing: .11em; }
.teleport-command code { display: block; overflow-x: auto; padding: 14px 16px; border: 1px solid rgba(126, 232, 255, .28); background: rgba(126, 232, 255, .055); color: var(--ice-bright); font: 800 .92rem/1.4 Consolas, "Yu Gothic UI", monospace; white-space: nowrap; }
.teleport-command code.is-example { border-color: rgba(101, 231, 165, .25); color: var(--green); }
.teleport-terminal > p { position: absolute; left: 30px; bottom: 20px; margin: 0; color: var(--green); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.teleport-terminal > p i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.discord-invite { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-top: 12px; padding: 24px 28px; border: 1px solid rgba(126, 138, 255, .4); background: linear-gradient(110deg, rgba(88, 101, 242, .2), rgba(10, 19, 29, .9) 60%); transition: border-color .2s, transform .2s, background .2s; }
.discord-invite:hover { transform: translateY(-3px); border-color: #8e98ff; background: linear-gradient(110deg, rgba(88, 101, 242, .3), rgba(10, 19, 29, .94) 60%); }
.discord-signal { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid #8e98ff; border-radius: 50%; color: #b9c0ff; background: rgba(88, 101, 242, .18); box-shadow: 0 0 26px rgba(88, 101, 242, .25); font-size: 1.25rem; }
.discord-invite > span:nth-child(2) { display: grid; }
.discord-invite small { color: #9da7ff; font-size: .58rem; font-weight: 900; letter-spacing: .13em; }
.discord-invite strong { margin-top: 4px; font-size: 1.08rem; }
.discord-invite em { margin-top: 3px; color: var(--muted); font-style: normal; font-size: .7rem; }
.discord-invite b { color: #cbd0ff; font-size: .7rem; letter-spacing: .07em; }
.discord-action-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 12px; }
.discord-action-grid .discord-invite { margin-top: 12px; }
.discord-link-cta { display: grid; align-content: center; margin-top: 12px; padding: 24px; border: 1px solid rgba(126,232,255,.35); background: linear-gradient(145deg, rgba(126,232,255,.12), rgba(8,18,27,.94)); transition: transform .2s, border-color .2s; }
.discord-link-cta:hover { transform: translateY(-3px); border-color: var(--ice); }
.discord-link-cta small { color: var(--ice); font-size: .55rem; font-weight: 900; letter-spacing: .13em; }
.discord-link-cta strong { margin-top: 8px; font-size: .95rem; }
.discord-link-cta span { margin-top: 7px; color: var(--muted); font-size: .65rem; line-height: 1.6; }
.discord-link-cta b { float: right; color: var(--ice); }

.server-section { padding: 120px 0; background: #071018; border-block: 1px solid var(--line); }
.server-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 100px; }
.server-heading > p { margin: 0 0 8px; color: var(--muted); }
.server-list { display: grid; gap: 12px; }
.server-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 110px 1.25fr .85fr 175px; align-items: center; min-height: 146px; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(15, 31, 43, .8), rgba(8, 17, 25, .88)); transition: border-color .2s ease, transform .2s ease; }
.server-card:hover { transform: translateX(4px); border-color: var(--line-bright); }
.server-card::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--server-accent, var(--ice)); box-shadow: 0 0 24px var(--server-accent, var(--ice)); }
.server-card[data-accent="toxic"] { --server-accent: var(--toxic); }
.server-card[data-accent="green"] { --server-accent: var(--green); }
.server-card[data-accent="amber"] { --server-accent: var(--amber); }
.server-number { display: grid; place-items: center; height: 100%; border-right: 1px solid var(--line); color: transparent; -webkit-text-stroke: 1px rgba(223, 250, 255, .6); font-family: Impact, sans-serif; font-size: 3.1rem; }
.server-main { padding: 22px 26px; }
.server-main p { margin: 0 0 7px; color: var(--server-accent); font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.server-main h3 { margin: 0; font-size: 1.22rem; }
.server-main small { display: block; margin-top: 7px; color: var(--muted); }
.server-stats { display: flex; gap: 35px; }
.server-stats div { display: grid; }
.server-stats span { color: var(--muted); font-size: .55rem; font-weight: 800; letter-spacing: .12em; }
.server-stats strong { margin-top: 5px; font-size: .88rem; }
.server-actions { display: grid; gap: 8px; padding-right: 22px; }
.server-actions a, .copy-address { min-height: 36px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; color: #cad7dc; cursor: pointer; font-size: .65rem; font-weight: 800; letter-spacing: .07em; }
.server-actions a:hover, .copy-address:hover { border-color: var(--server-accent); color: white; }

.performance-section { padding: 135px 0; overflow: hidden; }
.performance-server-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 56px; border: 1px solid var(--line); background: var(--line); }
.performance-server-button { min-height: 82px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; padding: 16px 20px; border: 0; background: var(--ink-raised); color: var(--muted); cursor: pointer; text-align: left; transition: background .2s, color .2s; }
.performance-server-button span { color: var(--ice); font-family: Impact, sans-serif; font-size: 1.8rem; letter-spacing: .05em; }
.performance-server-button small { font-size: .56rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.performance-server-button.is-active { background: linear-gradient(135deg, rgba(126,232,255,.16), rgba(9,22,31,.95)); color: var(--text); box-shadow: inset 0 -2px var(--ice); }
.performance-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.performance-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); line-height: 2; }
.spec-list { margin-top: 38px; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.spec-list span { color: var(--ice); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.spec-list strong { font-size: .82rem; letter-spacing: .04em; }
.performance-visual { position: relative; min-height: 490px; display: grid; grid-template-columns: repeat(2, 140px); place-content: center; gap: 12px; }
.performance-visual::before { content: ""; position: absolute; inset: 5%; border: 1px solid var(--line); transform: rotate(45deg); }
.core { position: relative; z-index: 2; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(126, 232, 255, .35); background: rgba(8, 22, 31, .85); box-shadow: inset 0 0 35px rgba(126, 232, 255, .03); }
.core span { color: var(--ice); font-family: Impact, sans-serif; font-size: 3rem; line-height: 1; }
.core small { position: absolute; bottom: 14px; color: var(--muted); font-size: .5rem; letter-spacing: .12em; }
.core-one, .core-four { animation: core-pulse 3s ease-in-out infinite; }
.core-two, .core-three { animation: core-pulse 3s 1.5s ease-in-out infinite; }
.performance-readout { position: absolute; z-index: 3; left: 50%; bottom: 10px; transform: translateX(-50%); display: grid; padding: 12px 24px; border: 1px solid var(--line); background: var(--ink); text-align: center; }
.performance-readout span { color: var(--muted); font-size: .5rem; letter-spacing: .13em; }
.performance-readout strong { color: var(--green); font-size: .72rem; letter-spacing: .12em; }
.benchmark-section { margin-top: 90px; padding-top: 64px; border-top: 1px solid var(--line); }
.benchmark-copy { display: grid; grid-template-columns: 1fr 1.2fr; gap: 55px; align-items: end; }
.benchmark-copy .eyebrow { grid-column: 1 / -1; margin-bottom: -34px; }
.benchmark-copy h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.25; }
.benchmark-copy > p:last-child { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.9; }
.benchmark-table-wrap { overflow-x: auto; margin-top: 40px; border: 1px solid var(--line); }
.benchmark-table { width: 100%; min-width: 800px; border-collapse: collapse; background: rgba(7,16,24,.72); }
.benchmark-table th, .benchmark-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.benchmark-table th { color: var(--muted); background: rgba(255,255,255,.018); font-size: .58rem; letter-spacing: .12em; }
.benchmark-table td { color: #c8d6dc; font-variant-numeric: tabular-nums; font-size: .76rem; }
.benchmark-table td:nth-child(2), .benchmark-table td:nth-child(3) { color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: .9rem; }
.benchmark-table td strong, .benchmark-table td small { display: block; }
.benchmark-table td small { margin-top: 3px; color: var(--muted); font-size: .58rem; }
.benchmark-table tr.is-installed { background: linear-gradient(90deg, rgba(126,232,255,.08), transparent); }
.benchmark-table tr.is-installed td:first-child { box-shadow: inset 2px 0 var(--ice); }
.benchmark-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.benchmark-notes article { min-height: 190px; padding: 24px; border: 1px solid var(--line); background: var(--panel); }
.benchmark-notes span { color: var(--ice); font-size: .6rem; font-weight: 900; letter-spacing: .12em; }
.benchmark-notes strong { display: block; margin-top: 10px; letter-spacing: .04em; }
.benchmark-notes p { margin: 13px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.85; }
.benchmark-source { margin: 20px 0 0; color: #637985; font-size: .62rem; }
.benchmark-source a { color: var(--ice); text-decoration: underline; text-underline-offset: 3px; }

.services-section { padding: 115px 0; background: #071018; border-block: 1px solid var(--line); }
.section-heading.centered { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.services-grid-five { grid-template-columns: repeat(5, 1fr); }
.services-grid-six { grid-template-columns: repeat(6, 1fr); }
.services-grid a {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--ink-raised);
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
}
.services-grid a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 42%;
  transform: skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(126, 232, 255, .09), transparent);
  transition: left .6s ease;
}
.services-grid a:hover { z-index: 2; transform: translateY(-6px); background: var(--panel-soft); box-shadow: 0 24px 54px rgba(0,0,0,.3); }
.services-grid a:hover::before { left: 125%; }
.services-grid a.is-market-service { background: linear-gradient(155deg, rgba(126,232,255,.13), rgba(7,17,25,.96) 66%); }
.services-grid a.is-market-service::after { content: "MARKET"; position: absolute; right: -8px; top: 20px; color: rgba(126,232,255,.07); font: 900 2.2rem/1 Impact, sans-serif; letter-spacing: .08em; transform: rotate(90deg) translateX(75%); transform-origin: right top; }
.services-grid span { color: var(--ice); font-size: .62rem; font-weight: 800; }
.services-grid strong { margin-top: auto; font-size: 1.05rem; }
.services-grid small { margin-top: 5px; color: var(--muted); }
.services-grid i { align-self: end; margin-top: 20px; color: var(--ice); font-style: normal; }

.join-section { position: relative; overflow: hidden; padding: 150px 0; text-align: center; }
.join-backdrop { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 60%, rgba(55, 149, 181, .18), transparent 34%), linear-gradient(180deg, rgba(5, 9, 13, .1), rgba(5, 9, 13, .78)), repeating-linear-gradient(90deg, transparent 0 99px, rgba(126, 232, 255, .045) 100px); }
.join-content h2 { font-size: clamp(2.7rem, 5.5vw, 5.5rem); }
.join-content > p:not(.eyebrow):not(.join-note) { color: #b6c4cb; }
.join-actions { justify-content: center; }
.join-note { margin-top: 24px; color: var(--muted); font-size: .68rem; }

.site-footer { padding: 55px 0 24px; border-top: 1px solid var(--line); background: #04070a; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand > div { display: grid; }
.footer-brand strong { letter-spacing: .14em; }
.footer-brand span { color: var(--muted); font-size: .58rem; letter-spacing: .1em; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: .7rem; }
.site-footer nav a:hover { color: var(--ice); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--line); color: #60717c; font-size: .58rem; }
.footer-bottom p { margin: 0; }

.toast-region { position: fixed; right: 18px; bottom: 18px; z-index: 150; display: grid; gap: 8px; }
.toast { min-width: 260px; max-width: 360px; padding: 13px 16px; border: 1px solid var(--line-bright); background: rgba(7, 17, 25, .96); box-shadow: var(--shadow); color: var(--text); font-size: .78rem; animation: toast-in .25s ease both; }

/* 共通の内部ページ */
.inner-page { min-height: 100vh; padding-top: var(--header-height); background: #060d13; }
.inner-hero { padding: 70px 0 40px; border-bottom: 1px solid var(--line); }
.inner-hero-grid { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.inner-hero h1 { margin: 0; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(2.7rem, 6vw, 5.8rem); letter-spacing: .04em; }
.inner-hero p:last-child { max-width: 620px; margin-bottom: 12px; color: var(--muted); }
.control-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.field-label { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.select-control, .input-control { min-height: 42px; padding: 8px 38px 8px 13px; border: 1px solid var(--line); border-radius: 0; background: var(--panel); color: var(--text); }
.select-control:focus, .input-control:focus, button:focus-visible, a:focus-visible { outline: 2px solid var(--ice); outline-offset: 2px; }
.state-message { padding: 20px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); }

/* WebMap */
.map-document { width: 100%; height: var(--map-viewport-height); min-height: var(--map-viewport-height); overflow: hidden; overscroll-behavior: none; }
.map-page { width: 100%; height: var(--map-viewport-height); min-height: var(--map-viewport-height); overflow: hidden; overscroll-behavior: none; }
.map-layout { height: calc(var(--map-viewport-height) - var(--header-height)); min-height: 0; display: grid; grid-template-columns: 320px 1fr; transition: grid-template-columns .25s ease; }
.map-sidebar { position: relative; z-index: 10; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 30px 24px; border-right: 1px solid var(--line); background: rgba(7, 16, 24, .98); }
.map-sidebar-head h1 { margin: 0; font-family: Impact, sans-serif; font-size: 3.2rem; letter-spacing: .08em; }
.map-sidebar-head > p:last-child { color: var(--muted); font-size: .75rem; }
.map-server-select { display: grid; gap: 7px; margin-top: 25px; }
.map-server-select .select-control { width: 100%; }
.map-server-state { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 20px; border: 1px solid var(--line); background: var(--line); }
.map-server-state div { min-height: 68px; display: grid; align-content: center; gap: 4px; padding: 10px; background: var(--panel); }
.map-server-state .map-time-stat { grid-column: span 2; }
.map-server-state span { color: var(--muted); font-size: .5rem; font-weight: 800; letter-spacing: .12em; }
.map-server-state strong { color: var(--ice-bright); font-size: .78rem; }
.layer-controls { display: grid; gap: 8px; margin: 26px 0 0; padding: 0; border: 0; }
.layer-controls legend { margin-bottom: 8px; color: var(--muted); font-size: .6rem; font-weight: 900; letter-spacing: .13em; }
.layer-controls label { position: relative; display: block; cursor: pointer; }
.layer-controls input { position: absolute; opacity: 0; pointer-events: none; }
.layer-controls label > span { min-height: 42px; display: flex; align-items: center; gap: 11px; padding: 9px 12px; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; transition: border-color .2s, color .2s, background .2s; }
.layer-controls label > span em { overflow: hidden; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.layer-controls label > span b { min-width: 34px; margin-left: auto; color: rgba(126, 232, 255, .72); font-family: var(--font-display); font-size: .58rem; text-align: right; }
.layer-controls input:checked + span { border-color: rgba(126, 232, 255, .34); background: rgba(126, 232, 255, .045); color: var(--text); }
.layer-controls input:focus-visible + span { outline: 2px solid var(--ice); outline-offset: 2px; }
.map-layer-guide { margin-top: 26px; }
.map-layer-guide h2 { margin: 0; color: var(--muted); font-size: .6rem; letter-spacing: .13em; }
.map-layer-guide > p { margin: 9px 0 12px; color: #637985; font-size: .62rem; line-height: 1.6; }
.map-layer-guide ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.map-layer-guide li { min-height: 34px; display: flex; align-items: center; gap: 10px; padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .64rem; }
.layer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 8px currentColor; }
.layer-dot.online { background: var(--ice); }
.layer-dot.offline { background: #8193ff; }
.layer-dot.hostile { background: var(--red); }
.layer-dot.animal { background: var(--amber); }
.layer-dot.region { border-radius: 0; background: transparent; border: 1px solid var(--green); }
.layer-dot.poi { border-radius: 2px; background: #ffb45f; }
.layer-dot.quest-poi { border-radius: 1px; transform: rotate(45deg); background: #79b9ff; }
.layer-dot.trader { background: #63e99c; }
.layer-dot.vehicle { border-radius: 2px; background: #ffd36b; }
.layer-dot.drone { background: #7ee8ff; }
.layer-dot.reset-region { border-radius: 0; border: 1px dashed #ff6c6c; background: transparent; }
.layer-dot.advanced-claim { border-radius: 0; border: 1px solid #ae91ff; background: rgba(174, 145, 255, .22); }
.map-bulk-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 10px; }
.map-bulk-actions button { min-height: 34px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: .62rem; }
.map-bulk-actions button:hover { border-color: var(--ice); color: var(--text); }
.map-refresh-controls { display: grid; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.map-refresh-controls .button { width: 100%; }
.map-refresh-controls label { color: var(--muted); font-size: .64rem; }
.map-note { margin: 20px 0 0; color: #627985; font-size: .6rem; line-height: 1.7; }
.map-stage { position: relative; overflow: hidden; min-width: 0; min-height: 0; background: #020405; }
.map-stage iframe { width: 100%; height: 100%; min-height: 0; display: block; border: 0; background: #020405; }
.map-loading { position: absolute; inset: 0; z-index: 5; display: grid; place-content: center; justify-items: center; gap: 14px; background: #071018; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.map-loading[hidden] { display: none; }
.loading-mark { width: 72px; height: 72px; font-size: 1.8rem; animation: slow-spin 8s linear infinite; }
.map-sidebar-toggle { position: absolute; z-index: 12; top: 12px; left: 12px; display: none; min-height: 38px; padding: 8px 12px; border: 1px solid var(--line-bright); background: rgba(7, 16, 24, .92); color: var(--ice); font-size: .62rem; font-weight: 900; letter-spacing: .1em; }

/* Shop */
.shop-section, .profile-section { padding: 70px 0 110px; }
.shop-toolbar { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: end; }
.currency-tabs { display: flex; border: 1px solid var(--line); }
.currency-tabs button, .category-tabs button { min-height: 42px; padding: 9px 17px; border: 0; border-right: 1px solid var(--line); background: var(--panel); color: var(--muted); cursor: pointer; font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.currency-tabs button:last-child { border-right: 0; }
.currency-tabs button.is-active, .category-tabs button.is-active { background: var(--ice); color: var(--ink); }
.shop-toolbar label { display: grid; gap: 6px; }
.shop-search { justify-self: end; width: min(340px, 100%); }
.shop-search .input-control { width: 100%; }
.shop-server-picker, .profile-server-picker { display: grid; grid-template-columns: minmax(250px, .7fr) 1.3fr; align-items: center; gap: 36px; margin-top: 20px; padding: 24px; border: 1px solid var(--line); background: linear-gradient(120deg, rgba(126,232,255,.055), rgba(8,18,26,.88)); }
.shop-server-picker h2, .profile-server-picker h3 { margin: 2px 0 0; font-size: 1.2rem; }
.shop-server-picker p, .profile-server-picker p { margin: 5px 0 0; color: var(--muted); font-size: .68rem; }
.server-switcher { display: grid; grid-template-columns: repeat(4, minmax(90px, 1fr)); gap: 7px; }
.server-switch { min-height: 68px; display: grid; place-items: center; align-content: center; gap: 2px; padding: 10px; border: 1px solid var(--line); background: var(--ink-raised); color: var(--muted); cursor: pointer; transition: border-color .2s, color .2s, background .2s, transform .2s; }
.server-switch:hover { transform: translateY(-2px); border-color: var(--line-bright); color: var(--text); }
.server-switch span { color: var(--ice); font-family: Impact, sans-serif; font-size: 1.45rem; letter-spacing: .08em; line-height: 1; }
.server-switch small { overflow: hidden; max-width: 100%; color: inherit; font-size: .5rem; font-weight: 900; letter-spacing: .07em; text-overflow: ellipsis; white-space: nowrap; }
.server-switch.is-active { border-color: var(--ice); background: linear-gradient(145deg, rgba(126,232,255,.2), rgba(9,22,31,.96)); color: var(--text); box-shadow: 0 0 22px rgba(126,232,255,.09), inset 0 -2px var(--ice); }
.shop-account-bar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 20px; padding: 18px 22px; border: 1px solid var(--line); background: linear-gradient(115deg, rgba(255,216,77,.035), rgba(126,232,255,.055)); color: var(--muted); font-size: .72rem; }
.shop-account-bar a { color: var(--ice); font-weight: 900; }
.shop-account-identity { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-balances { display: flex; flex: 0 0 auto; gap: 10px; }
.shop-balance { min-width: 150px; display: grid; gap: 2px; padding: 11px 15px; border: 1px solid currentColor; background: rgba(4,11,17,.74); }
.shop-balance small { color: inherit; font-size: .56rem; font-weight: 950; letter-spacing: .12em; opacity: .78; }
.shop-balance strong { color: inherit; font-family: Impact, sans-serif; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 400; line-height: 1; letter-spacing: .035em; }
.shop-balance-coin { color: #ffd84d; box-shadow: inset 0 -2px rgba(255,216,77,.7), 0 0 25px rgba(255,216,77,.07); }
.shop-balance-koin { color: #7ee8ff; box-shadow: inset 0 -2px rgba(126,232,255,.72), 0 0 25px rgba(126,232,255,.09); }
.shop-category-tools { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 340px); align-items: center; gap: 16px; margin-top: 34px; }
.shop-category-tools .shop-search { justify-self: stretch; }
.category-tabs { display: flex; overflow-x: auto; gap: 7px; margin: 0; padding-bottom: 7px; }
.category-tabs button { flex: 0 0 auto; border: 1px solid var(--line); }
.shop-currency-tabs { width: fit-content; margin-top: 10px; }
.currency-tabs button[data-currency="coin"] { color: #e8c13b; }
.currency-tabs button[data-currency="koin"] { color: #7ee8ff; }
.currency-tabs button[data-currency="coin"].is-active { border-color: #ffd84d; background: #ffd84d; color: #171300; box-shadow: 0 0 20px rgba(255,216,77,.13); }
.currency-tabs button[data-currency="koin"].is-active { border-color: #7ee8ff; background: #7ee8ff; color: #00151a; box-shadow: 0 0 20px rgba(126,232,255,.15); }
.shop-result-tools { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 18px; padding: 13px 15px; border: 1px solid var(--line); background: rgba(8,18,26,.72); }
.shop-result-summary { margin-right: auto; color: var(--text); font-size: .74rem; letter-spacing: .04em; }
.shop-page-size { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .62rem; font-weight: 800; }
.shop-page-size .input-control { width: 92px; min-height: 38px; padding-block: 7px; }
.shop-view-switch { display: flex; border: 1px solid var(--line); }
.shop-view-switch button { min-height: 38px; padding: 8px 13px; border: 0; border-right: 1px solid var(--line); background: var(--panel); color: var(--muted); cursor: pointer; font-size: .6rem; font-weight: 900; }
.shop-view-switch button:last-child { border-right: 0; }
.shop-view-switch button.is-active { background: var(--ice); color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.product-grid > .state-message { grid-column: 1 / -1; }
.product-card { position: relative; min-height: 355px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); background: linear-gradient(155deg, rgba(16,33,45,.9), rgba(7,15,22,.96)); }
.product-badge { position: absolute; right: 16px; top: 16px; color: var(--ice); font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.product-visual { min-height: 105px; display: grid; place-items: center; color: var(--ice); font-size: 3.5rem; text-shadow: 0 0 28px rgba(126,232,255,.22); }
.product-visual img { width: 96px; height: 96px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(126,232,255,.16)); }
.product-primary { min-width: 0; }
.product-primary h3 { margin: 12px 0 5px; font-size: 1rem; }
.product-server { color: var(--green); font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.product-secondary { min-width: 0; }
.product-secondary > p { margin: 0; color: var(--muted); font-size: .72rem; }
.product-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin: 15px 0 4px; }
.product-metric { min-width: 0; display: grid; gap: 3px; padding: 9px 10px; border: 1px solid rgba(126,232,255,.13); background: rgba(126,232,255,.035); }
.product-metric small { overflow: hidden; color: var(--muted); font-size: .5rem; font-weight: 900; letter-spacing: .06em; text-overflow: ellipsis; white-space: nowrap; }
.product-metric strong { color: var(--text); font-size: .76rem; font-weight: 900; }
.product-purchase { display: grid; gap: 12px; margin-top: auto; }
.product-price { display: flex; align-items: baseline; gap: 9px; margin: 15px 0 0; color: var(--ice-bright); font-size: 1rem; }
.product-price del { color: var(--muted); font-size: .7rem; }
.product-price strong { color: var(--ice-bright); }
.product-card .button { width: 100%; }
.product-grid.is-list { grid-template-columns: 1fr; gap: 8px; }
.product-grid.is-list .product-card { min-height: 138px; display: grid; grid-template-columns: 86px minmax(190px, .8fr) minmax(300px, 1.35fr) 180px; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 20px; padding: 16px 20px; }
.product-grid.is-list .product-badge { right: 198px; top: 15px; }
.product-grid.is-list .product-visual { grid-column: 1; grid-row: 1 / 3; min-height: 0; }
.product-grid.is-list .product-visual img { width: 68px; height: 68px; }
.product-grid.is-list .product-primary { grid-column: 2 / 4; grid-row: 1; align-self: end; display: flex; align-items: baseline; gap: 12px; padding-right: 70px; }
.product-grid.is-list .product-primary h3 { min-width: 0; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-grid.is-list .product-secondary { grid-column: 2 / 4; grid-row: 2; align-self: start; display: grid; grid-template-columns: minmax(120px, 1fr) auto; align-items: center; gap: 16px; }
.product-grid.is-list .product-secondary > p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-grid.is-list .product-metrics { min-width: 245px; margin: 4px 0 0; }
.product-grid.is-list .product-purchase { grid-column: 4; grid-row: 1 / 3; align-self: stretch; align-content: center; padding-left: 18px; border-left: 1px solid var(--line); }
.product-grid.is-list .product-price { margin: 0; }
.shop-pagination { display: grid; grid-template-columns: minmax(130px, auto) minmax(120px, 1fr) minmax(130px, auto); align-items: center; gap: 10px; margin-top: 22px; }
.shop-pagination .button { min-width: 130px; }
.shop-pagination span { color: var(--muted); font-size: .68rem; font-weight: 900; text-align: center; letter-spacing: .05em; }
.shop-pagination button:disabled { cursor: not-allowed; opacity: .36; }
.purchase-dialog[hidden] { display: none; }
.purchase-dialog { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.purchase-dialog-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.purchase-dialog > section { position: relative; z-index: 2; width: min(480px, 100%); padding: 32px; border: 1px solid var(--line-bright); background: var(--panel); box-shadow: var(--shadow); }
.purchase-dialog h2 { margin: 0; font-size: 1.55rem; }
.purchase-dialog section > p:not(.eyebrow) { color: var(--muted); }
.dialog-close { position: absolute; right: 12px; top: 10px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 1.6rem; }
.purchase-summary { display: flex; justify-content: space-between; margin: 22px 0; padding: 14px 0; border-block: 1px solid var(--line); }
.purchase-summary span { color: var(--muted); }
.purchase-summary strong { color: var(--ice); }
.purchase-product-metrics { margin: 0 0 18px; }
.purchase-product-metrics .product-metric { padding: 11px 12px; }
.purchase-dialog label { display: grid; gap: 7px; color: var(--muted); font-size: .72rem; }
.purchase-dialog .button { width: 100%; margin-top: 20px; }
.dialog-message { min-height: 1.5em; color: var(--amber) !important; font-size: .7rem; }

/* Profile */
.login-panel { max-width: 620px; display: grid; justify-items: center; margin: 20px auto; padding: 65px 45px; border: 1px solid var(--line); background: linear-gradient(150deg, var(--panel-soft), var(--ink-raised)); text-align: center; }
.login-mark { width: 90px; height: 90px; margin-bottom: 18px; font-size: 2.2rem; box-shadow: 0 0 24px rgba(126,232,255,.1); }
.login-panel h2 { margin: 0; font-size: 1.7rem; }
.login-panel > p:not(.eyebrow) { max-width: 480px; color: var(--muted); }
.player-identity { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 28px; border: 1px solid var(--line); background: var(--panel); }
.player-avatar { width: 78px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--line-bright); background: rgba(126,232,255,.05); color: var(--ice); font-size: 1.4rem; font-weight: 900; }
.player-identity .eyebrow { margin-bottom: 5px; }
.player-identity h2 { margin: 0; font-size: 1.65rem; }
.player-identity p:last-child { margin: 4px 0 0; color: var(--muted); font-size: .7rem; }
.profile-discord-card { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-top: 12px; padding: 24px 28px; border: 1px solid rgba(126,138,255,.34); background: linear-gradient(120deg, rgba(88,101,242,.13), rgba(8,18,27,.93) 65%); }
.profile-discord-card.is-linked { border-color: rgba(83,223,156,.35); background: linear-gradient(120deg, rgba(83,223,156,.08), rgba(8,18,27,.93) 65%); }
.discord-account-signal { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid #8e98ff; border-radius: 50%; color: #cbd0ff; background: rgba(88,101,242,.13); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.profile-discord-card h3 { margin: 2px 0 0; font-size: 1.15rem; }
.profile-discord-card p:not(.eyebrow) { margin: 7px 0 2px; color: var(--muted); font-size: .7rem; }
.profile-discord-card small { color: #657b89; font-size: .62rem; }
.donor-connection-status { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 9px; }
.donor-account-state { padding: 5px 8px; border: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.025); font-size: .58rem; font-weight: 850; letter-spacing: .04em; }
.donor-account-state.state-registered { border-color: rgba(83,223,156,.4); color: var(--green); }
.donor-account-state.state-existing { border-color: rgba(126,232,255,.4); color: var(--ice); }
.donor-account-state.state-failed { border-color: rgba(255,105,123,.45); color: var(--red); }
.donor-account-state.state-pending { border-color: rgba(255,190,85,.45); color: var(--amber); }
.donor-account-state.state-unregistered { color: #71838e; }
.profile-server-picker { margin-top: 12px; }
.profile-server-picker .eyebrow { margin-bottom: 0; }
.wallet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.wallet-grid article { min-height: 140px; display: grid; align-content: center; padding: 24px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(14,30,41,.86), rgba(7,15,22,.9)); }
.wallet-grid span { color: var(--muted); font-size: .56rem; font-weight: 900; letter-spacing: .12em; }
.wallet-grid strong { margin-top: 8px; color: var(--ice); font-size: 2rem; line-height: 1; }
.wallet-grid small { margin-top: 8px; color: #607783; }
.profile-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.profile-panel { padding: 26px; border: 1px solid var(--line); background: var(--panel); }
.profile-panel-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 20px; }
.profile-panel-head .eyebrow { margin-bottom: 4px; }
.profile-panel-head h3 { margin: 0; }
.profile-panel-head > a { color: var(--ice); font-size: .68rem; }
.purchases-panel { grid-column: 1 / -1; }
.ranking-panel { grid-column: 1 / -1; }
.reward-history-panel { grid-column: 1 / -1; }
.wallet-list, .stats-list, .purchase-history, .reward-event-list { display: grid; gap: 7px; }
.reward-event { display: grid; grid-template-columns: minmax(180px,.8fr) 1.5fr auto; gap: 18px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.reward-event-heading { display: grid; gap: 4px; }
.reward-event-heading span { color: var(--ice); font-size: .53rem; font-weight: 900; letter-spacing: .12em; }
.reward-event-heading strong { font-size: .8rem; }
.reward-event p { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.6; }
.reward-event time { color: #617581; font-size: .58rem; white-space: nowrap; }
.reward-event.reward-donor { box-shadow: inset 2px 0 #8e98ff; }
.reward-event.reward-status-failed, .reward-event.reward-status-rejected { box-shadow: inset 2px 0 var(--red); }
.reward-event.reward-status-succeeded, .reward-event.reward-status-granted { box-shadow: inset 2px 0 var(--green); }
.profile-data-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; padding: 13px 15px; border: 1px solid var(--line); background: rgba(255,255,255,.018); cursor: pointer; }
.profile-data-row.is-selected { border-color: rgba(126,232,255,.48); background: rgba(126,232,255,.06); box-shadow: inset 2px 0 var(--ice); }
.profile-data-row span { color: var(--muted); font-size: .62rem; font-weight: 800; }
.profile-data-row strong { color: var(--ice-bright); }
.profile-data-row small { grid-column: 1 / -1; color: #607783; }
.purchase-row { display: grid; grid-template-columns: 1fr 60px 110px 90px; gap: 14px; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.purchase-row span, .purchase-row small { color: var(--muted); }
.purchase-status { text-align: right; }
.status-delivered { color: var(--green) !important; }
.status-failed { color: var(--red) !important; }
.profile-rank-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.profile-rank-row { min-height: 112px; display: grid; align-content: center; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.018); transition: border-color .2s, transform .2s; }
.profile-rank-row:hover { transform: translateY(-2px); border-color: var(--ice); }
.profile-rank-row span { color: var(--muted); font-size: .56rem; font-weight: 900; letter-spacing: .1em; }
.profile-rank-row strong { margin-top: 4px; color: var(--ice); font-family: Impact, sans-serif; font-size: 2rem; line-height: 1; }
.profile-rank-row small { margin-top: 8px; color: #6d8592; font-size: .58rem; }
.official-info-panel { position: relative; min-height: 110px; display: grid; align-content: center; margin-top: 12px; padding: 24px 70px 24px 26px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(110deg, rgba(126,232,255,.1), rgba(8,18,26,.92)); }
.official-info-panel::before { content: ""; position: absolute; width: 180px; height: 180px; right: -40px; top: -60px; border: 1px solid rgba(126,232,255,.17); border-radius: 50%; }
.official-info-panel span { color: var(--ice); font-size: .58rem; font-weight: 900; letter-spacing: .15em; }
.official-info-panel strong { margin-top: 5px; font-size: 1rem; }
.official-info-panel i { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); color: var(--ice); font-style: normal; font-size: 1.4rem; }
.compact-footer { padding-top: 1px; }

/* Discord link */
.discord-hero { background: radial-gradient(circle at 76% 20%, rgba(88,101,242,.2), transparent 24rem), linear-gradient(130deg, #08121a, #05090d); }
.discord-link-section { padding: 64px 0 110px; }
.discord-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.discord-benefit-grid article { min-height: 190px; display: grid; align-content: end; padding: 25px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(88,101,242,.09), rgba(7,15,22,.94)); }
.discord-benefit-grid span { margin-bottom: auto; color: #9da7ff; font-size: .56rem; font-weight: 900; letter-spacing: .13em; }
.discord-benefit-grid strong { margin-top: 35px; color: var(--ice-bright); font-size: 1.45rem; }
.discord-benefit-grid p { margin: 8px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.75; }
.discord-link-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; margin-top: 12px; }
.discord-connect-console, .discord-community-panel { min-height: 430px; border: 1px solid var(--line); background: var(--panel); }
.discord-console-head { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .57rem; font-weight: 900; letter-spacing: .12em; }
.discord-console-head i { color: var(--green); font-style: normal; }
.discord-console-body { display: grid; align-content: center; min-height: 380px; padding: 44px; }
.discord-console-body[hidden] { display: none; }
.discord-console-body h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2.35rem); }
.discord-console-body > p:not(.eyebrow) { max-width: 620px; color: var(--muted); line-height: 1.85; }
.discord-console-body .button { width: max-content; margin-top: 18px; }
.discord-error { min-height: 1.5em; color: var(--red) !important; font-size: .66rem; }
.discord-code-panel output { color: var(--ice-bright); font-family: Impact, "Arial Black", sans-serif; font-size: clamp(4rem, 10vw, 7.4rem); letter-spacing: .12em; line-height: 1; text-shadow: 0 0 25px rgba(126,232,255,.22); }
.discord-command-line { display: grid; gap: 7px; margin-top: 20px; padding: 16px; border: 1px solid var(--line); background: #050b10; }
.discord-command-line span { color: var(--muted); font-size: .53rem; font-weight: 900; letter-spacing: .12em; }
.discord-command-line code { color: var(--ice); }
.discord-code-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.discord-link-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 15px 0; }
.discord-link-badges span { padding: 6px 9px; border: 1px solid rgba(83,223,156,.35); color: var(--green); font-size: .55rem; font-weight: 900; letter-spacing: .08em; }
.discord-donor-summary { margin-top: 11px; color: var(--amber); font-size: .72rem; }
.discord-community-panel { display: grid; align-content: center; padding: 38px; background: linear-gradient(150deg, rgba(88,101,242,.15), rgba(7,15,22,.96)); }
.discord-community-panel h2 { margin: 0; font-size: 1.65rem; line-height: 1.45; }
.discord-community-panel > p:not(.eyebrow) { color: var(--muted); font-size: .72rem; line-height: 1.8; }
.discord-community-panel .button { width: max-content; margin: 12px 0 25px; }
.discord-community-panel ol { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.discord-community-panel li { padding: 12px; border-top: 1px solid var(--line); color: #a7b7c0; font-size: .68rem; }
.discord-community-panel li span { margin-right: 12px; color: #9da7ff; font-weight: 900; }
.discord-community-panel code { color: var(--ice); }

/* Ranking */
.ranking-hero { background: radial-gradient(circle at 78% 20%, rgba(255,190,85,.12), transparent 22rem), linear-gradient(130deg, #08121a, #05090d); }
.ranking-section { padding: 70px 0 110px; }
.ranking-control-panel, .status-control-panel { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 50px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.ranking-control-panel h2, .status-control-panel h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.ranking-control-panel p:last-child, .status-control-panel p:last-child { margin: 7px 0 0; color: var(--muted); font-size: .68rem; }
.ranking-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; border: 1px solid var(--line); background: var(--line); }
.ranking-summary div { min-height: 95px; display: grid; align-content: center; padding: 18px 22px; background: var(--panel); }
.ranking-summary span { color: var(--muted); font-size: .54rem; font-weight: 900; letter-spacing: .12em; }
.ranking-summary strong { margin-top: 6px; color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: 1.35rem; }
.ranking-podium { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.ranking-podium > .state-message { grid-column: 1 / -1; }
.ranking-player-card { position: relative; overflow: hidden; padding: 22px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(15,30,41,.92), rgba(7,14,20,.98)); }
.ranking-player-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--rank-accent, var(--ice)); box-shadow: 0 0 22px var(--rank-accent, var(--ice)); }
.ranking-player-card.is-podium.rank-1 { --rank-accent: #ffd76a; grid-column: 1 / -1; min-height: 365px; padding: 34px; border-color: rgba(255,215,106,.5); background: radial-gradient(circle at 86% 10%, rgba(255,215,106,.2), transparent 26rem), linear-gradient(140deg, rgba(53,42,19,.72), rgba(8,16,23,.98)); box-shadow: 0 28px 80px rgba(0,0,0,.3), inset 0 0 70px rgba(255,215,106,.035); }
.ranking-player-card.is-podium.rank-1::after { content: "01"; position: absolute; right: 28px; top: -30px; color: rgba(255,215,106,.1); font-family: Impact, sans-serif; font-size: 12rem; line-height: 1; }
.ranking-player-card.is-podium.rank-2 { --rank-accent: #c9deeb; min-height: 320px; border-color: rgba(201,222,235,.35); background: radial-gradient(circle at 90% 10%, rgba(201,222,235,.12), transparent 20rem), var(--panel); }
.ranking-player-card.is-podium.rank-3 { --rank-accent: #c88758; min-height: 305px; border-color: rgba(200,135,88,.3); background: radial-gradient(circle at 90% 10%, rgba(200,135,88,.08), transparent 18rem), var(--panel); }
.ranking-player-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 65px 1fr auto; gap: 18px; align-items: center; }
.ranking-position { color: var(--rank-accent, var(--ice)); font-family: Impact, sans-serif; font-size: 2.5rem; line-height: 1; text-shadow: 0 0 18px color-mix(in srgb, var(--rank-accent, var(--ice)) 45%, transparent); }
.rank-1 .ranking-position { font-size: 4.2rem; }
.ranking-player-identity span { color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.ranking-player-identity h3 { margin: 3px 0 0; font-size: 1.28rem; }
.rank-1 .ranking-player-identity h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.ranking-kill-score { display: grid; justify-items: end; }
.ranking-kill-score strong { color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: 1.6rem; line-height: 1; }
.rank-1 .ranking-kill-score strong { color: #ffe5a0; font-size: 2.5rem; }
.ranking-kill-score span, .ranking-detail-label { margin-top: 6px; color: var(--muted); font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.ranking-kill-score small { margin-top: 5px; color: var(--ice); font-size: .64rem; font-weight: 800; letter-spacing: .04em; }
.ranking-weapons { position: relative; z-index: 2; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.ranking-weapon-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 9px; }
.ranking-weapon { display: grid; grid-template-columns: auto 1fr; gap: 2px 9px; padding: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.ranking-weapon b { grid-row: span 2; color: var(--ice); font-size: .66rem; }
.ranking-weapon span { overflow: hidden; font-size: .78rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.ranking-weapon-name { cursor: help; }
.ranking-weapon strong { color: var(--muted); font-size: .62rem; }
.ranking-empty-detail { color: var(--muted); font-size: .65rem; }
.ranking-targets { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 8px; }
.ranking-target { display: grid; padding: 10px; border: 1px solid var(--line); }
.ranking-target span { color: var(--muted); font-size: .61rem; font-weight: 900; letter-spacing: .09em; }
.ranking-target strong { overflow: hidden; margin-top: 4px; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.ranking-target small { margin-top: 2px; color: var(--ice); font-size: .64rem; font-weight: 800; }
.ranking-list-head { display: flex; justify-content: space-between; margin: 55px 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .65rem; letter-spacing: .12em; }
.ranking-list { display: grid; gap: 8px; }
.ranking-list .ranking-player-card { padding: 20px 24px; }
.ranking-list .ranking-player-card { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: 20px; align-items: center; }
.ranking-list .ranking-player-heading { grid-template-columns: 52px 1fr; }
.ranking-list .ranking-kill-score { grid-column: 2; justify-items: start; }
.ranking-list .ranking-weapons { margin: 0; padding: 0; border: 0; }
.ranking-list .ranking-targets { grid-template-columns: 1fr 1fr; margin: 0; }

/* Daily ranking */
.daily-ranking-hero { background: radial-gradient(circle at 78% 15%, rgba(126,232,255,.15), transparent 24rem), radial-gradient(circle at 12% 100%, rgba(255,190,85,.08), transparent 22rem), linear-gradient(130deg, #08131d, #04080c); }
.daily-ranking-hero h1 { font-size: clamp(2.9rem, 7vw, 6.4rem); }
.daily-hero-copy { max-width: 620px; }
.daily-hero-copy > p { margin: 0; color: var(--muted); }
.daily-hero-copy > a { display: inline-block; margin-top: 16px; color: var(--ice); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.daily-ranking-section { padding: 70px 0 110px; }
.daily-ranking-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.daily-ranking-head h2 { margin: 0; font-size: clamp(2rem, 4.4vw, 4.2rem); }
.daily-ranking-head > p { margin: 0 0 8px; color: var(--muted); font-size: .65rem; }
.daily-world-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.daily-world-grid > .state-message { grid-column: 1 / -1; }
.daily-world-card { --daily-accent: var(--ice); position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); background: radial-gradient(circle at 100% 0, color-mix(in srgb, var(--daily-accent) 9%, transparent), transparent 25rem), linear-gradient(145deg, rgba(14,29,40,.96), rgba(5,11,16,.98)); }
.daily-world-card[data-server-id="2"] { --daily-accent: var(--green); }
.daily-world-card[data-server-id="6"] { --daily-accent: var(--toxic); }
.daily-world-card[data-server-id="7"] { --daily-accent: var(--amber); }
.daily-world-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--daily-accent); box-shadow: 0 0 24px var(--daily-accent); }
.daily-world-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.daily-world-heading span, .daily-world-meta small { color: var(--daily-accent); font-size: .52rem; font-weight: 900; letter-spacing: .13em; }
.daily-world-heading h2 { margin: 4px 0 0; font-size: 1.28rem; }
.daily-world-meta { display: grid; justify-items: end; }
.daily-world-meta strong { color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: .94rem; }
.daily-world-notice { margin: 12px 0 0; padding: 9px 12px; border: 1px solid var(--line); color: var(--muted); font-size: .58rem; }
.daily-world-notice.is-stale { color: var(--amber); border-color: rgba(255,190,85,.3); }
.daily-podium { display: grid; gap: 8px; margin-top: 18px; }
.daily-player { --rank-accent: var(--ice); display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 15px; border: 1px solid var(--line); background: rgba(3,9,14,.66); }
.daily-player.rank-1 { --rank-accent: #ffd76a; min-height: 165px; border-color: rgba(255,215,106,.45); background: radial-gradient(circle at 90% 0, rgba(255,215,106,.13), transparent 18rem), rgba(13,17,19,.8); }
.daily-player.rank-2 { --rank-accent: #c9deeb; border-color: rgba(201,222,235,.3); }
.daily-player.rank-3 { --rank-accent: #c88758; border-color: rgba(200,135,88,.28); }
.daily-position { color: var(--rank-accent); font-family: Impact, sans-serif; font-size: 2.15rem; line-height: 1; text-shadow: 0 0 14px color-mix(in srgb, var(--rank-accent) 45%, transparent); }
.daily-player-identity { min-width: 0; }
.daily-player-identity span { color: var(--muted); font-size: .48rem; font-weight: 900; letter-spacing: .1em; }
.daily-player-identity h3 { overflow: hidden; margin: 1px 0 0; font-size: .91rem; text-overflow: ellipsis; white-space: nowrap; }
.daily-kill-score { display: grid; justify-items: end; }
.daily-kill-score strong { color: var(--rank-accent); font-family: "Arial Black", sans-serif; font-size: 1.25rem; line-height: 1; }
.daily-kill-score span { margin-top: 5px; color: var(--muted); font-size: .45rem; font-weight: 900; letter-spacing: .1em; }
.daily-player-details { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.daily-player-details > div { min-width: 0; display: grid; padding: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.015); }
.daily-player-details span { color: var(--muted); font-size: .42rem; font-weight: 900; letter-spacing: .08em; }
.daily-player-details strong { overflow: hidden; margin-top: 2px; font-size: .57rem; text-overflow: ellipsis; white-space: nowrap; }
.daily-player-details small { color: var(--daily-accent); font-size: .45rem; }
.official-bridge { padding: 75px 0; border-block: 1px solid var(--line); background: radial-gradient(circle at 85% 50%, rgba(126,232,255,.08), transparent 26rem), #071018; }
.official-bridge-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.official-bridge h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.8rem); }
.official-bridge p:last-child { max-width: 720px; margin: 8px 0 0; color: var(--muted); }
.official-bridge .button { flex: 0 0 auto; }

/* Server status */
.status-hero { background: radial-gradient(circle at 78% 25%, rgba(101,231,165,.12), transparent 24rem), linear-gradient(130deg, #08121a, #05090d); }
.status-dashboard-section { padding: 55px 0 110px; }
.status-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 55px; }
.status-overview > .state-message { grid-column: 1 / -1; }
.status-overview-card { --status-color: var(--red); position: relative; min-height: 150px; padding: 21px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; transition: transform .2s, border-color .2s; }
.status-overview-card:hover { transform: translateY(-3px); border-color: var(--status-color); }
.status-overview-card[data-state="online"] { --status-color: var(--green); }
.status-overview-card[data-state="stale"] { --status-color: var(--amber); }
.status-overview-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--status-color); box-shadow: 0 0 15px var(--status-color); }
.status-overview-card > div:first-child { display: flex; justify-content: space-between; color: var(--muted); font-size: .55rem; font-weight: 900; letter-spacing: .1em; }
.status-overview-card > div:first-child strong { color: var(--status-color); }
.status-overview-card p { margin: 22px 0 14px; color: var(--muted); font-size: .62rem; }
.status-overview-card p b { color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: 2rem; line-height: 1; }
.status-overview-details { display: flex; flex-wrap: wrap; gap: 8px; color: #6c838f; font-size: .53rem; }
.telemetry-summary { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 18px; border: 1px solid var(--line); background: var(--line); }
.telemetry-summary article { min-height: 120px; display: grid; align-content: center; padding: 18px; background: var(--panel); }
.telemetry-summary span { color: var(--muted); font-size: .52rem; font-weight: 900; letter-spacing: .12em; }
.telemetry-summary strong { margin-top: 7px; color: var(--ice); font-family: "Arial Black", sans-serif; font-size: 1.55rem; line-height: 1; }
.telemetry-summary small { margin-top: 8px; color: #607783; font-size: .5rem; }
.telemetry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.telemetry-chart-card { min-height: 325px; padding: 24px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(14,30,41,.92), rgba(6,13,19,.98)); }
.telemetry-chart-card > div { display: grid; grid-template-columns: 1fr auto; align-items: end; }
.telemetry-chart-card > div span { grid-column: 1 / -1; color: var(--ice); font-size: .52rem; font-weight: 900; letter-spacing: .12em; }
.telemetry-chart-card > div strong { margin-top: 5px; font-size: 1rem; }
.telemetry-chart-card > div em { color: var(--ice-bright); font-family: "Arial Black", sans-serif; font-size: 1.2rem; font-style: normal; }
.telemetry-chart-card svg { width: 100%; height: 210px; display: block; margin-top: 20px; overflow: visible; }
.telemetry-grid-line { stroke: rgba(126,232,255,.09); stroke-width: 1; vector-effect: non-scaling-stroke; }
.telemetry-line { fill: none; stroke: var(--ice); stroke-width: 2.2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 5px rgba(126,232,255,.6)); }
.telemetry-area { fill: rgba(126,232,255,.075); }
.chart-empty-text { fill: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: 2px; }
.telemetry-note { margin: 18px 0 0; color: #667d89; font-size: .62rem; }

/* Server detail */
.server-detail-page { --detail-accent: var(--ice); }
.server-detail-page[data-server-accent="green"] { --detail-accent: var(--green); }
.server-detail-page[data-server-accent="toxic"] { --detail-accent: var(--toxic); }
.server-detail-page[data-server-accent="amber"] { --detail-accent: var(--amber); }
.server-detail-hero { position: relative; overflow: hidden; padding: 48px 0 60px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 82% 22%, color-mix(in srgb, var(--detail-accent) 15%, transparent), transparent 24rem), linear-gradient(135deg, #09141d, #05090d); }
.server-detail-hero::after { content: ""; position: absolute; width: 480px; height: 480px; right: -170px; bottom: -270px; border: 1px solid color-mix(in srgb, var(--detail-accent) 20%, transparent); border-radius: 50%; box-shadow: 0 0 80px color-mix(in srgb, var(--detail-accent) 8%, transparent); pointer-events: none; }
.server-detail-switcher { position: relative; z-index: 2; margin-bottom: 44px; }
.server-detail-switcher a { min-height: 62px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; padding: 11px 15px; border: 1px solid var(--line); background: rgba(8,18,26,.8); color: var(--muted); transition: transform .2s, border-color .2s, background .2s; }
.server-detail-switcher a:hover { transform: translateY(-2px); border-color: var(--line-bright); }
.server-detail-switcher a strong { color: var(--ice); font-family: Impact, sans-serif; font-size: 1.55rem; letter-spacing: .06em; }
.server-detail-switcher a span { overflow: hidden; font-size: .56rem; font-weight: 900; letter-spacing: .07em; text-overflow: ellipsis; white-space: nowrap; }
.server-detail-switcher a.is-active { border-color: var(--detail-accent); background: color-mix(in srgb, var(--detail-accent) 10%, rgba(8,18,26,.96)); color: var(--text); box-shadow: inset 0 -2px var(--detail-accent), 0 0 24px color-mix(in srgb, var(--detail-accent) 8%, transparent); }
.server-detail-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 260px; align-items: end; gap: 70px; }
.server-detail-hero h1 { margin: 6px 0 0; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(3.6rem, 8vw, 7rem); letter-spacing: .035em; line-height: .95; }
.server-detail-summary { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.9; }
.server-detail-actions { flex-wrap: wrap; margin-top: 30px; }
.server-detail-actions .button { min-width: 165px; }
.server-signal-card { min-height: 210px; display: grid; align-content: center; justify-items: center; padding: 28px; border: 1px solid color-mix(in srgb, var(--detail-accent) 38%, var(--line)); background: radial-gradient(circle, color-mix(in srgb, var(--detail-accent) 14%, transparent), rgba(7,15,22,.94) 68%); text-align: center; }
.server-signal-card::before { content: ""; width: 70px; height: 70px; margin-bottom: 20px; border: 1px solid var(--detail-accent); border-radius: 50%; background: radial-gradient(circle, var(--detail-accent) 0 3px, transparent 4px), repeating-radial-gradient(circle, transparent 0 13px, color-mix(in srgb, var(--detail-accent) 18%, transparent) 14px 15px); box-shadow: 0 0 35px color-mix(in srgb, var(--detail-accent) 14%, transparent); }
.server-signal-card span, .server-signal-card small { color: var(--muted); font-size: .52rem; font-weight: 900; letter-spacing: .14em; }
.server-signal-card strong { margin: 6px 0; color: var(--detail-accent); font-size: .86rem; letter-spacing: .14em; }
.server-detail-live-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 38px; border: 1px solid var(--line); background: var(--line); }
.server-detail-live-grid article { min-height: 105px; display: grid; align-content: center; padding: 18px 22px; background: rgba(8,18,26,.94); }
.server-detail-live-grid span { color: var(--muted); font-size: .52rem; font-weight: 900; letter-spacing: .13em; }
.server-detail-live-grid strong { margin-top: 6px; color: var(--detail-accent); font-family: "Arial Black", sans-serif; font-size: 1.35rem; }
.server-detail-live-grid small { margin-top: 5px; color: #5e7480; font-size: .5rem; }
.server-detail-live-grid[data-state="offline"] strong { color: var(--red); }
.server-detail-live-grid[data-state="stale"] strong { color: var(--amber); }
.server-detail-performance { padding: 105px 0; border-bottom: 1px solid var(--line); }
.server-detail-core-visual .core { border-color: color-mix(in srgb, var(--detail-accent) 45%, var(--line)); }
.server-detail-core-visual .core span { color: var(--detail-accent); }
.server-mods-section, .server-settings-section { padding: 90px 0; }
.server-settings-section { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(7,16,24,.8), rgba(5,10,15,.96)); }
.server-data-heading { align-items: end; }
.server-data-heading h2 { font-size: clamp(2.3rem, 5vw, 4.6rem); }
.server-data-tools { display: grid; justify-items: end; gap: 10px; }
.server-data-tools > span, .server-settings-meta { color: var(--detail-accent); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.server-data-tools input { width: min(360px, 80vw); min-height: 42px; padding: 10px 13px; border: 1px solid var(--line); background: var(--panel); color: var(--text); }
.server-data-tools input:focus { outline: 1px solid var(--detail-accent); border-color: var(--detail-accent); }
.server-mod-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 30px; }
.server-mod-list > .state-message { grid-column: 1 / -1; }
.server-mod-card { min-height: 190px; padding: 21px; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(14,29,40,.92), rgba(7,14,20,.98)); transition: transform .2s, border-color .2s; }
.server-mod-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--detail-accent) 48%, var(--line)); }
.server-mod-card h3 { margin: 0; font-size: .93rem; overflow-wrap: anywhere; }
.server-mod-card h3 a { color: var(--text); }
.server-mod-card h3 a:hover { color: var(--detail-accent); }
.server-mod-meta { margin: 9px 0 0; color: var(--detail-accent); font-size: .49rem; font-weight: 900; letter-spacing: .09em; }
.server-mod-description { margin: 18px 0 0; color: var(--muted); font-size: .66rem; line-height: 1.75; }
.server-settings-notice { margin: 20px 0 0; padding: 12px 15px; border: 1px solid rgba(255,190,85,.28); background: rgba(255,190,85,.05); color: var(--amber); font-size: .66rem; }
.server-settings-groups { display: grid; gap: 8px; margin-top: 28px; }
.server-settings-group { border: 1px solid var(--line); background: rgba(10,22,31,.8); }
.server-settings-group summary { min-height: 48px; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 10px 16px; cursor: pointer; list-style: none; }
.server-settings-group summary::-webkit-details-marker { display: none; }
.server-settings-group summary span { font-size: .75rem; font-weight: 900; }
.server-settings-group summary small { color: var(--detail-accent); font-size: .5rem; font-weight: 900; letter-spacing: .1em; }
.server-settings-group[open] summary { border-bottom: 1px solid var(--line); }
.server-settings-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.server-setting-row { min-height: 38px; display: grid; grid-template-columns: minmax(150px, .9fr) 1.1fr; align-items: center; gap: 12px; padding: 7px 12px; background: #09131b; }
.server-setting-row span { color: var(--muted); font-size: .58rem; line-height: 1.35; }
.server-setting-row strong { color: var(--text); font-size: .61rem; line-height: 1.35; overflow-wrap: anywhere; }


@keyframes hero-cinematic-drift {
  0% { transform: scale(1.018) translate3d(-.25%, 0, 0); filter: saturate(.96) brightness(.94); }
  100% { transform: scale(1.055) translate3d(.55%, -.45%, 0); filter: saturate(1.06) brightness(1.01); }
}
@keyframes hero-scan {
  0% { transform: translateY(-20%); opacity: 0; }
  18% { opacity: .55; }
  78% { opacity: .22; }
  100% { transform: translateY(350%); opacity: 0; }
}
@keyframes market-title-drift { to { transform: translate3d(-28px, 10px, 0); } }
@keyframes market-grid-drift { to { background-position: 78px 78px, 78px 78px; } }
@keyframes market-orbit { 50% { transform: translate3d(28px, -22px, 0) scale(1.7); opacity: .48; } }
@keyframes market-console-sweep { 0%, 24% { transform: rotate(12deg) translateX(-58%); } 65%, 100% { transform: rotate(12deg) translateX(58%); } }
@keyframes market-live-pulse { 50% { opacity: .45; box-shadow: 0 0 5px var(--green), 0 0 20px var(--green); } }
@keyframes coin-float { 50% { transform: translateY(-3px) rotate(3deg); } }
@keyframes demo-button-shine { 0%, 65% { left: -35%; } 88%, 100% { left: 120%; } }
@keyframes listing-breathe { 50% { border-color: rgba(126,232,255,.22); background: rgba(126,232,255,.028); } }

@keyframes radar { to { transform: rotate(360deg); } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes scroll-cue { 50% { opacity: .25; transform: translateX(7px); } }
@keyframes skeleton { 50% { opacity: .45; } }
@keyframes core-pulse { 50% { border-color: var(--ice); box-shadow: 0 0 25px rgba(126, 232, 255, .09), inset 0 0 35px rgba(126, 232, 255, .07); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }



/* Player Market homepage showcase */

.market-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 35%, rgba(126, 232, 255, .115), transparent 31rem),
    radial-gradient(circle at 8% 86%, rgba(255, 190, 85, .055), transparent 26rem),
    linear-gradient(135deg, #061018, #03070b 68%);
  border-block: 1px solid var(--line);
}
.market-showcase-section::before {
  content: "MARKET";
  position: absolute;
  top: 18px;
  right: -34px;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126, 232, 255, .075);
  font: 900 clamp(7rem, 17vw, 15rem)/.86 Impact, sans-serif;
  letter-spacing: .03em;
  transform: translate3d(var(--market-title-shift, 0), 0, 0);
  animation: market-title-drift 14s ease-in-out infinite alternate;
}
.market-showcase-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(126,232,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,232,255,.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, black 24%, black 82%, transparent);
  animation: market-grid-drift 20s linear infinite;
}
.market-atmosphere { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.market-atmosphere span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--ice); box-shadow: 0 0 24px var(--ice); opacity: .22; animation: market-orbit 11s ease-in-out infinite; }
.market-atmosphere span:nth-child(1) { left: 8%; top: 28%; }
.market-atmosphere span:nth-child(2) { right: 12%; top: 20%; animation-delay: -4s; }
.market-atmosphere span:nth-child(3) { right: 34%; bottom: 10%; animation-delay: -7s; }
.market-showcase-heading,
.market-showcase-layout { position: relative; z-index: 2; }
.market-showcase-heading {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 100px;
  align-items: end;
}
.market-showcase-heading h2 { margin: 0; font-size: clamp(2.5rem, 5.2vw, 5rem); line-height: 1.08; }
.market-showcase-heading h2 span { color: transparent; -webkit-text-stroke: 1px rgba(223, 250, 255, .62); text-shadow: 0 0 38px rgba(126,232,255,.08); }
.market-showcase-intro > p { margin: 0; color: #a4b5be; font-size: .94rem; line-height: 2; }
.market-showcase-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.market-showcase-layout {
  display: grid;
  grid-template-columns: .43fr 1.57fr;
  gap: 14px;
  margin-top: 52px;
  align-items: stretch;
}
.market-showcase-copy { display: grid; gap: 8px; }
.market-showcase-copy article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 116px;
  padding: 19px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(14, 31, 42, .78), rgba(6, 14, 20, .92));
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.market-showcase-copy article::after { content: ""; position: absolute; inset: auto 100% 0 0; height: 1px; background: linear-gradient(90deg, var(--ice), transparent); transition: inset .45s ease; }
.market-showcase-copy article:hover { transform: translateX(6px); border-color: rgba(126,232,255,.34); background: linear-gradient(145deg, rgba(19, 43, 57, .86), rgba(6, 14, 20, .94)); }
.market-showcase-copy article:hover::after { inset: auto 0 0 0; }
.market-showcase-copy article > span { color: var(--ice); font-family: "Arial Black", sans-serif; font-size: .68rem; }
.market-showcase-copy article small { display: block; margin-bottom: 3px; color: #58727f; font-size: .46rem; font-weight: 900; letter-spacing: .1em; }
.market-showcase-copy strong { display: block; font-size: .84rem; }
.market-showcase-copy p { margin: 6px 0 0; color: var(--muted); font-size: .69rem; line-height: 1.7; }
.market-showcase-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 232, 255, .3);
  background: rgba(3, 8, 12, .96);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .48), inset 0 0 80px rgba(126, 232, 255, .025);
}
.market-showcase-console::before {
  content: "";
  position: absolute;
  inset: -50% -30%;
  z-index: 3;
  pointer-events: none;
  opacity: .38;
  transform: rotate(12deg) translateX(-55%);
  background: linear-gradient(90deg, transparent 42%, rgba(126,232,255,.075) 50%, transparent 58%);
  animation: market-console-sweep 8s ease-in-out infinite;
}
.market-showcase-console-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(126, 232, 255, .035);
}
.market-showcase-console-head > div:first-child { display: grid; grid-template-columns: auto auto; align-items: center; gap: 3px 9px; }
.market-showcase-console-head strong { font-size: .75rem; letter-spacing: .12em; }
.market-showcase-console-head small { grid-column: 2; color: var(--muted); font-size: .53rem; letter-spacing: .1em; }
.market-showcase-live-dot { grid-row: 1 / 3; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 13px var(--green); animation: market-live-pulse 1.8s ease-in-out infinite; }
.market-showcase-bank { display: flex; align-items: center; gap: 8px; }
.market-showcase-bank > img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(255,190,85,.22)); animation: coin-float 3.6s ease-in-out infinite; }
.market-showcase-bank > span { display: grid; justify-items: end; }
.market-showcase-bank small { color: var(--amber); font-size: .48rem; font-weight: 900; letter-spacing: .1em; }
.market-showcase-bank strong { font-size: 1.08rem; letter-spacing: .03em; }
.market-showcase-toolbar { position: relative; z-index: 2; display: grid; grid-template-columns: 72px 1fr auto; gap: 10px; align-items: center; min-height: 48px; padding: 7px 10px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.market-demo-server { display: grid; place-items: center; min-height: 34px; border: 1px solid var(--line); }
.market-demo-server small { color: var(--muted); font-size: .42rem; font-weight: 900; letter-spacing: .09em; }
.market-demo-server strong { color: var(--ice); font-size: .68rem; }
.market-demo-navigation { display: flex; gap: 4px; min-width: 0; overflow: hidden; }
.market-demo-navigation span { padding: 7px 9px; color: #6e838e; font-size: .5rem; font-weight: 900; white-space: nowrap; }
.market-demo-navigation .is-active { color: var(--ice-bright); background: rgba(126,232,255,.08); box-shadow: inset 0 -1px var(--ice); }
.market-demo-session { color: var(--green); font-size: .45rem; font-weight: 900; letter-spacing: .08em; white-space: nowrap; }
.market-demo-session i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.market-showcase-tabs { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.market-showcase-tabs span { padding: 11px 16px; color: var(--muted); text-align: center; font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.market-showcase-tabs .is-active { color: var(--ice-bright); background: rgba(126, 232, 255, .1); box-shadow: inset 0 -2px var(--ice), 0 8px 24px rgba(126,232,255,.03); }
.market-showcase-demo-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 10px; padding: 10px; }
.market-sale-demo,
.market-listings-demo { min-width: 0; padding: 18px; border: 1px solid var(--line); background: rgba(12, 23, 32, .72); }
.market-demo-label { display: flex; justify-content: space-between; gap: 12px; color: var(--ice); font-size: .52rem; font-weight: 900; letter-spacing: .12em; }
.market-demo-label em { color: var(--muted); font-style: normal; }
.market-sale-demo h3,
.market-listings-demo h3 { margin: 7px 0 14px; font-size: 1rem; }
.market-sale-demo-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 10px; align-items: center; padding: 11px; background: rgba(255, 255, 255, .025); border: 1px solid var(--line); }
.market-sale-demo-item > img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(0,0,0,.32)); }
.market-sale-demo-item > div { display: grid; min-width: 0; }
.market-sale-demo-item strong { font-size: .82rem; }
.market-sale-demo-item small { overflow: hidden; color: var(--muted); font-size: .56rem; text-overflow: ellipsis; white-space: nowrap; }
.market-sale-demo-item b { color: var(--ice-bright); font-size: .72rem; }
.market-sale-demo-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 9px; }
.market-sale-demo-fields label { display: grid; gap: 5px; padding: 9px 10px; border: 1px solid var(--line); background: rgba(0, 0, 0, .16); }
.market-sale-demo-fields span,
.market-sale-demo-owner span { color: var(--muted); font-size: .52rem; font-weight: 800; }
.market-sale-demo-fields strong { color: var(--ice-bright); font: 800 .82rem/1 Consolas, monospace; }
.market-sale-demo-total,
.market-sale-demo-owner { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-top: 8px; padding: 8px 10px; border: 1px solid var(--line); }
.market-sale-demo-total > span { color: var(--muted); font-size: .55rem; }
.market-sale-demo-total strong { display: flex; gap: 5px; align-items: center; color: var(--amber); font-size: .8rem; }
.market-sale-demo-total img { width: 22px; height: 22px; object-fit: contain; }
.market-sale-demo-owner strong { font-size: .67rem; }
.market-sale-demo-submit { position: relative; overflow: hidden; display: grid; place-items: center; min-height: 36px; margin-top: 10px; background: var(--ice-bright); color: #061018; font-size: .62rem; font-weight: 900; box-shadow: 0 0 30px rgba(126,232,255,.08); }
.market-sale-demo-submit::after { content: ""; position: absolute; inset: 0 auto 0 -35%; width: 30%; transform: skewX(-18deg); background: rgba(255,255,255,.48); animation: demo-button-shine 4.2s ease-in-out infinite; }
.market-listings-demo-list { display: grid; gap: 6px; }
.market-listings-demo-list article { display: grid; grid-template-columns: 42px 1fr auto; gap: 9px; align-items: center; min-width: 0; padding: 8px 9px; border: 1px solid var(--line); background: rgba(255, 255, 255, .018); animation: listing-breathe 4s ease-in-out infinite; }
.market-listings-demo-list article:nth-child(2) { animation-delay: -.8s; }
.market-listings-demo-list article:nth-child(3) { animation-delay: -1.6s; }
.market-listings-demo-list article:nth-child(4) { animation-delay: -2.4s; }
.market-listings-demo-list article > img { width: 40px; height: 40px; object-fit: contain; }
.market-listings-demo-list article > div { display: grid; min-width: 0; }
.market-listings-demo-list strong { overflow: hidden; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.market-listings-demo-list small { color: var(--muted); font-size: .52rem; }
.market-listings-demo-list article > span { display: flex; align-items: center; gap: 4px; color: var(--amber); font-size: .67rem; }
.market-listings-demo-list article > span img { width: 20px; height: 20px; object-fit: contain; }
.market-showcase-usecases { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: stretch; padding: 0 10px 10px; }
.market-showcase-usecases > div,
.market-showcase-usecases > a { display: grid; gap: 3px; padding: 11px 13px; border: 1px solid var(--line); background: rgba(255,255,255,.016); }
.market-showcase-usecases span,
.market-showcase-usecases small { color: var(--ice); font-size: .46rem; font-weight: 900; letter-spacing: .1em; }
.market-showcase-usecases strong { color: #c8d5dc; font-size: .57rem; }
.market-showcase-usecases > a { min-width: 245px; transition: border-color .2s ease, background .2s ease; }
.market-showcase-usecases > a:hover { border-color: var(--line-bright); background: rgba(126,232,255,.055); }
.market-showcase-usecases b { color: var(--ice); }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .hero-side { opacity: .25; right: -70px; }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 2; }
  .feature-wide { grid-column: span 2; }
  .server-card { grid-template-columns: 90px 1fr 160px; }
  .server-stats { display: none; }
  .services-grid, .services-grid-six { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .benchmark-notes { grid-template-columns: 1fr 1fr; }
  .status-overview { grid-template-columns: 1fr 1fr; }
  .telemetry-summary { grid-template-columns: repeat(3, 1fr); }
  .ranking-list .ranking-player-card { grid-template-columns: 1fr; }
  .ranking-list .ranking-player-heading, .ranking-list .ranking-weapons, .ranking-list .ranking-targets { grid-column: auto; }
  .hero-command-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-command-grid .hero-meta { max-width: 440px; }
  .daily-world-grid { grid-template-columns: 1fr; }
  .discord-action-grid, .discord-link-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 1180px); --header-height: 68px; }
  .site-header { padding-inline: 14px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .brand small { display: none; }
  .nav-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; }
  .nav-toggle span:not(.sr-only) { width: 22px; height: 1px; background: white; transition: transform .2s ease; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: none; align-items: stretch; padding: 18px; border-bottom: 1px solid var(--line); background: rgba(5, 9, 13, .98); }
  .site-nav.is-open { display: grid; }
  .site-nav > a { padding: 11px; }
  .hero { min-height: 790px; height: auto; padding: 125px 0 100px; }
  .hero.hero-cinematic { min-height: 0; padding: 0; }
  .hero-cinematic-art { height: 360px; object-fit: cover; object-position: 65% center; }
  .hero-cinematic .scroll-cue { display: none; }
  .hero-command-strip { padding: 36px 0 46px; }
  .hero-mobile-title { display: block; margin: 0 0 22px; font-family: Impact, "Arial Black", "Yu Gothic UI", sans-serif; font-size: clamp(2.25rem, 10vw, 4rem); font-weight: 800; line-height: 1.08; }
  .hero-mobile-title span { color: transparent; -webkit-text-stroke: 1px rgba(223,250,255,.68); }
  .hero-command-copy .hero-lead { font-size: .78rem; }
  .hero-command-grid .hero-meta { max-width: none; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .hero-lead br { display: none; }
  .hero-side { display: none; }
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .hero-meta div { min-width: 0; padding: 0 12px; }
  .hero-meta strong { font-size: 1.25rem; }
  .hero-meta span { font-size: .48rem; }
  .section-heading.compact, .footer-grid, .footer-bottom { align-items: start; flex-direction: column; }
  .data-freshness { margin-top: 12px; }
  .feature-intro { padding: 90px 0; }
  .feature-intro-grid, .server-heading, .performance-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature-intro-grid > p { margin-bottom: 20px; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-large, .feature-wide { grid-column: auto; }
  .feature-wide { grid-template-columns: 1fr; gap: 25px; }
  .feature-wide h3 { margin-top: 50px; }
  .teleport-heading, .teleport-grid { grid-template-columns: 1fr; gap: 24px; }
  .teleport-heading > p { margin: 0; }
  .teleport-features ul { grid-template-columns: 1fr; }
  .teleport-features, .teleport-terminal { min-height: 0; }
  .teleport-terminal { min-height: 410px; }
  .discord-invite { grid-template-columns: auto 1fr; }
  .discord-invite b { grid-column: 2; }
  .discord-benefit-grid { grid-template-columns: 1fr; }
  .server-card { grid-template-columns: 68px 1fr; padding-right: 12px; }
  .server-main { padding: 18px; }
  .server-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; padding: 0 12px 12px; }
  .performance-visual { min-height: 400px; transform: scale(.84); }
  .performance-server-tabs { grid-template-columns: 1fr 1fr; }
  .benchmark-copy { grid-template-columns: 1fr; gap: 18px; }
  .benchmark-copy .eyebrow { grid-column: auto; margin-bottom: 0; }
  .benchmark-notes { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid a { min-height: 190px; }
  .inner-hero-grid { align-items: start; flex-direction: column; }
  .map-nav { display: none; }
  .map-layout { position: relative; display: block; }
  .map-sidebar { position: absolute; inset: 0 auto 0 0; width: min(320px, calc(100vw - 56px - env(safe-area-inset-right, 0px))); padding-left: max(24px, env(safe-area-inset-left)); padding-bottom: max(30px, env(safe-area-inset-bottom)); transform: translate3d(0, 0, 0); transition: transform .25s ease, visibility 0s linear; box-shadow: 18px 0 60px rgba(0,0,0,.48); will-change: transform; }
  .map-stage { height: 100%; }
  .map-sidebar-toggle { display: block; left: auto; right: max(12px, env(safe-area-inset-right)); }
  .map-layout.sidebar-collapsed .map-sidebar { visibility: hidden; pointer-events: none; transform: translate3d(-100%, 0, 0); transition: transform .25s ease, visibility 0s linear .25s; }
  .shop-toolbar { grid-template-columns: 1fr 1fr; }
  .shop-search { justify-self: stretch; }
  .shop-category-tools { grid-template-columns: 1fr; }
  .shop-server-picker, .profile-server-picker, .ranking-control-panel, .status-control-panel { grid-template-columns: 1fr; gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.is-list .product-card { grid-template-columns: 68px minmax(0, 1fr) 155px; grid-template-rows: auto auto; column-gap: 14px; min-height: 126px; padding: 14px; }
  .product-grid.is-list .product-badge { right: 170px; top: 12px; }
  .product-grid.is-list .product-visual { grid-column: 1; grid-row: 1 / 3; }
  .product-grid.is-list .product-visual img { width: 56px; height: 56px; }
  .product-grid.is-list .product-primary { grid-column: 2; grid-row: 1; padding-right: 62px; }
  .product-grid.is-list .product-secondary { grid-column: 2; grid-row: 2; grid-template-columns: 1fr; gap: 4px; }
  .product-grid.is-list .product-secondary > p { display: none; }
  .product-grid.is-list .product-metrics { min-width: 0; margin-top: 2px; }
  .product-grid.is-list .product-purchase { grid-column: 3; grid-row: 1 / 3; padding-left: 13px; }
  .player-identity { grid-template-columns: auto 1fr; }
  .player-identity .button { grid-column: 1 / -1; }
  .profile-discord-card { grid-template-columns: auto 1fr; }
  .profile-discord-card .button { grid-column: 1 / -1; width: 100%; }
  .reward-event { grid-template-columns: 1fr; gap: 8px; }
  .profile-content-grid { grid-template-columns: 1fr; }
  .purchases-panel { grid-column: auto; }
  .ranking-panel { grid-column: auto; }
  .profile-rank-list { grid-template-columns: 1fr 1fr; }
  .ranking-podium { grid-template-columns: 1fr; }
  .ranking-player-card.is-podium.rank-1 { grid-column: auto; }
  .ranking-targets { grid-template-columns: 1fr 1fr; }
  .telemetry-grid { grid-template-columns: 1fr; }
  .official-bridge-inner { align-items: flex-start; flex-direction: column; }
  .server-detail-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .server-signal-card { min-height: 150px; }
  .server-detail-live-grid { grid-template-columns: 1fr 1fr; }
  .server-mod-list { grid-template-columns: 1fr 1fr; }
  .server-data-heading { align-items: start; }
  .server-data-tools { justify-items: stretch; width: 100%; }
  .server-data-tools input { width: 100%; }
  .server-settings-list { grid-template-columns: 1fr; }
  .daily-ranking-head { align-items: start; flex-direction: column; }
}

@media (max-width: 520px) {
  .hero-actions .button, .join-actions .button { width: 100%; }
  .status-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid a { min-height: 160px; }
  .teleport-section { padding: 90px 0; }
  .teleport-features, .teleport-terminal { padding-inline: 20px; }
  .teleport-terminal-head { margin-inline: -20px; }
  .discord-invite { grid-template-columns: 1fr; padding: 22px; }
  .discord-invite b { grid-column: auto; }
  .profile-discord-card { grid-template-columns: 1fr; justify-items: start; }
  .discord-console-body, .discord-community-panel { padding: 25px; }
  .discord-code-panel output { font-size: 3.7rem; }
  .performance-visual { margin-inline: -55px; }
  .server-detail-core-visual { margin-inline: 0; }
  .performance-server-tabs { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .shop-toolbar { grid-template-columns: 1fr; }
  .shop-search { grid-column: auto; }
  .shop-category-tools { gap: 8px; }
  .currency-tabs { width: 100%; }
  .currency-tabs button { flex: 1; }
  .shop-account-bar { align-items: start; flex-direction: column; }
  .shop-balances { width: 100%; }
  .shop-balance { min-width: 0; flex: 1 1 0; }
  .shop-result-tools { align-items: stretch; }
  .shop-result-summary { width: 100%; }
  .shop-page-size { flex: 1 1 auto; justify-content: space-between; }
  .shop-view-switch { flex: 1 1 auto; }
  .shop-view-switch button { flex: 1; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.is-list .product-card { grid-template-columns: 58px minmax(0, 1fr) 116px; min-height: 116px; column-gap: 10px; padding: 11px; }
  .product-grid.is-list .product-badge { display: none; }
  .product-grid.is-list .product-primary { padding-right: 0; }
  .product-grid.is-list .product-primary { display: grid; gap: 2px; }
  .product-grid.is-list .product-primary h3 { font-size: .84rem; }
  .product-grid.is-list .product-metrics { gap: 3px; }
  .product-grid.is-list .product-metric { padding: 5px 6px; }
  .product-grid.is-list .product-metric small { display: none; }
  .product-grid.is-list .product-purchase { padding-left: 9px; }
  .product-grid.is-list .product-purchase .button { min-height: 34px; padding-inline: 6px; font-size: .57rem; }
  .shop-pagination { grid-template-columns: 1fr 1fr; }
  .shop-pagination span { grid-column: 1 / -1; grid-row: 1; }
  .shop-pagination .button { grid-row: 2; min-width: 0; }
  .wallet-grid { grid-template-columns: 1fr; }
  .server-switcher { grid-template-columns: 1fr 1fr; }
  .profile-rank-list { grid-template-columns: 1fr; }
  .player-identity { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .purchase-row { grid-template-columns: 1fr auto; }
  .purchase-row strong, .purchase-row small { text-align: right; }
  .ranking-summary { grid-template-columns: 1fr; }
  .ranking-player-heading { grid-template-columns: 52px 1fr; }
  .ranking-kill-score { grid-column: 2; justify-items: start; }
  .ranking-weapon-list { grid-template-columns: 1fr; }
  .ranking-targets { grid-template-columns: 1fr; }
  .status-overview { grid-template-columns: 1fr; }
  .telemetry-summary { grid-template-columns: 1fr 1fr; }
  .server-detail-switcher { grid-template-columns: 1fr 1fr; }
  .server-detail-live-grid, .server-mod-list { grid-template-columns: 1fr; }
  .server-detail-actions .button { width: 100%; }
  .server-setting-row { grid-template-columns: 1fr; gap: 3px; }
  .daily-world-card { padding: 17px; }
  .daily-world-heading { align-items: start; flex-direction: column; }
  .daily-world-meta { justify-items: start; }
  .daily-player { grid-template-columns: 36px minmax(0, 1fr); }
  .daily-kill-score { grid-column: 2; justify-items: start; }
  .daily-player-details { grid-column: 1 / -1; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cinematic-ambient, body::after { display: none !important; }
  .cinematic-reveal { opacity: 1 !important; filter: none !important; transform: none !important; }
}


@media (max-width: 1050px) {
  .market-showcase-heading { grid-template-columns: 1fr; gap: 28px; }
  .market-showcase-intro { max-width: 720px; }
  .market-showcase-layout { grid-template-columns: 1fr; }
  .market-showcase-copy { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .market-showcase-section { padding: 90px 0; }
  .market-showcase-copy { grid-template-columns: 1fr; }
  .market-showcase-demo-grid { grid-template-columns: 1fr; }
  .market-showcase-usecases { grid-template-columns: 1fr; }
  .market-showcase-usecases > a { min-width: 0; }
}

@media (max-width: 520px) {
  .market-showcase-actions .button { width: 100%; }
  .market-showcase-console-head { align-items: flex-start; flex-direction: column; }
  .market-showcase-bank > span { justify-items: start; }
  .market-sale-demo-fields { grid-template-columns: 1fr; }
  .market-showcase-toolbar { grid-template-columns: 62px 1fr; }
  .market-demo-session { display: none; }
  .market-demo-navigation span:nth-child(n+3) { display: none; }
  .market-showcase-demo-grid { padding: 7px; }
  .market-sale-demo, .market-listings-demo { padding: 14px; }
}

/* =========================================================
   v2.4.0: multilingual navigation and server rules
   Particle canvas remains provided by assets/js/cinematic.js.
   ========================================================= */
.site-header {
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}
.site-header .site-nav {
  margin-left: auto;
  margin-right: 92px;
  gap: clamp(14px, 1.5vw, 28px);
}
.language-menu {
  position: absolute;
  top: 50%;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 110;
  transform: translateY(-50%);
}
.language-menu-toggle {
  min-width: 74px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(126, 232, 255, .32);
  background: rgba(5, 14, 21, .78);
  color: var(--ice-bright);
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 8px 25px rgba(0,0,0,.18);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-menu-toggle:hover,
.language-menu.is-open .language-menu-toggle {
  border-color: rgba(126, 232, 255, .72);
  background: rgba(10, 28, 39, .96);
  box-shadow: 0 0 24px rgba(126, 232, 255, .12);
}
.language-menu-toggle img,
.language-menu-option img {
  width: 22px;
  height: 15px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16);
}
.language-menu-toggle span {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.language-menu-toggle i {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.language-menu.is-open .language-menu-toggle i {
  transform: translateY(2px) rotate(225deg);
}
.language-menu-panel {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 190px;
  padding: 7px;
  border: 1px solid rgba(126, 232, 255, .25);
  background: rgba(5, 12, 18, .97);
  box-shadow: 0 22px 55px rgba(0,0,0,.48);
  backdrop-filter: blur(20px);
}
.language-menu-option {
  width: 100%;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: #c8d8df;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.language-menu-option:hover,
.language-menu-option.is-active {
  color: var(--ice-bright);
  border-color: rgba(126,232,255,.18);
  background: rgba(126,232,255,.065);
}
.language-menu-option span {
  font-size: .78rem;
  font-weight: 800;
}
.language-menu-option small {
  color: var(--muted);
  font-size: .55rem;
  letter-spacing: .12em;
}
.site-nav a.is-current {
  color: var(--ice-bright);
}

.rules-highlight-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5,9,13,.98), rgba(7,22,30,.9) 55%, rgba(5,9,13,.96)),
    radial-gradient(circle at 75% 40%, rgba(126,232,255,.12), transparent 34rem);
}
.rules-highlight-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .32;
  background:
    linear-gradient(115deg, transparent 60%, rgba(126,232,255,.12) 60.2%, transparent 60.8%),
    repeating-linear-gradient(90deg, transparent 0 74px, rgba(126,232,255,.035) 75px 76px);
  animation: rules-grid-drift 18s linear infinite;
}
.rules-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}
.rules-highlight-copy h2 {
  margin: 12px 0 24px;
  font-family: Impact, "Arial Black", "Yu Gothic UI", sans-serif;
  font-size: clamp(3rem, 6vw, 6.1rem);
  line-height: .98;
  letter-spacing: -.03em;
}
.rules-highlight-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(223,250,255,.72);
}
.rules-highlight-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #bdccd3;
  font-size: .9rem;
}
.rules-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.rules-highlight-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.rules-highlight-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-height: 190px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.rules-highlight-points article:hover {
  z-index: 1;
  transform: translateY(-3px);
  border-color: rgba(126,232,255,.38);
  background: rgba(126,232,255,.055);
}
.rules-highlight-points article > span {
  color: var(--ice);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .12em;
}
.rules-highlight-points article > div {
  display: grid;
  align-content: start;
  gap: 7px;
}
.rules-highlight-points small {
  color: var(--ice);
  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.rules-highlight-points strong {
  font-size: .94rem;
}
.rules-highlight-points p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.75;
}

.rules-page .cinematic-ambient {
  opacity: .42;
}
.rules-page::after {
  opacity: .18;
}
.rules-page .inner-hero {
  min-height: 420px;
}
.rules-page .cinematic-reveal,
.rules-page .inner-hero,
.rules-page .rules-hero-copy,
.rules-page .rules-hero-copy > * {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}
.rules-section {
  padding: 34px 0 110px;
}
.rules-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(126,232,255,.045), rgba(255,255,255,.012));
}
.rules-intro-panel h2 {
  margin: 7px 0 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.2;
}
.rules-intro-panel > p {
  margin: 0;
  color: #b8c9d1;
}
.rules-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.rules-card {
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,23,32,.94), rgba(7,14,20,.96));
  box-shadow: 0 20px 58px rgba(0,0,0,.2);
}
.rules-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--ice);
  opacity: .65;
}
.rules-card-danger {
  grid-column: 1 / -1;
}
.rules-card-danger::before { background: var(--red); }
.rules-card-allowed::before { background: var(--green); }
.rules-card-caution::before { background: var(--amber); }
.rules-card-restart::before { background: var(--blue); }
.rules-card-teleport::before { background: var(--ice); }
.rules-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  letter-spacing: .02em;
}
.rules-card > p {
  margin: 0 0 14px;
  color: #c4d5dc;
}
.rules-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.2rem;
}
.rules-card li {
  padding-left: 3px;
  color: #edf7fa;
}
.rules-card small {
  color: #a3b8c1;
}
.rules-card s {
  color: #8498a1;
}
.marker-under-red {
  color: #ff858a !important;
  font-weight: 800;
}
.marker-under {
  color: #c1d4db !important;
}
.rules-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(126,232,255,.24);
  background: rgba(126,232,255,.04);
}
.rules-footer-cta h2 {
  margin: 5px 0;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
}
.rules-footer-cta p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

@keyframes rules-grid-drift {
  from { transform: translateX(0); }
  to { transform: translateX(76px); }
}

@media (max-width: 1180px) {
  .site-header .site-nav { gap: 13px; }
  .site-nav > a { font-size: .73rem; }
  .rules-highlight-grid { grid-template-columns: 1fr; }
  .rules-highlight-points { max-width: 900px; }
}
@media (max-width: 900px) {
  .language-menu {
    right: 72px;
  }
  .site-header .site-nav {
    margin-right: 0;
  }
  .rules-intro-panel { grid-template-columns: 1fr; gap: 15px; }
}
@media (max-width: 780px) {
  .language-menu {
    right: 66px;
  }
  .language-menu-toggle {
    min-width: 62px;
    height: 38px;
    padding-inline: 8px;
  }
  .language-menu-toggle span { font-size: .62rem; }
  .rules-highlight-section { padding: 88px 0; }
  .rules-highlight-points { grid-template-columns: 1fr; }
  .rules-highlight-points article { min-height: 0; }
  .rules-layout { grid-template-columns: 1fr; }
  .rules-card-danger { grid-column: auto; }
  .rules-footer-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .language-menu-toggle span,
  .language-menu-toggle i { display: none; }
  .language-menu-toggle { min-width: 42px; width: 42px; }
  .language-menu-panel { min-width: 178px; }
  .rules-highlight-copy h2 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .rules-highlight-actions .button { width: 100%; }
  .rules-intro-panel,
  .rules-card,
  .rules-footer-cta { padding: 21px 18px; }
}

/* Cinematic survival reel */
.survival-reel-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 152px) 0 clamp(86px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 89, 71, .095), transparent 30rem),
    radial-gradient(circle at 13% 72%, rgba(126, 232, 255, .09), transparent 28rem),
    linear-gradient(145deg, #050a0e 0%, #08131b 52%, #05090d 100%);
}
.survival-reel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 232, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 232, 255, .14) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, transparent, #000 17%, #000 84%, transparent);
}
.survival-reel-section::after {
  content: "SURVIVAL // FIELD RECORD";
  position: absolute;
  right: -1.5vw;
  top: 50%;
  color: rgba(223, 250, 255, .022);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(6rem, 13vw, 14rem);
  letter-spacing: .035em;
  line-height: .8;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-90deg) translateY(45%);
  transform-origin: right center;
  pointer-events: none;
}
.survival-reel-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: end;
  gap: clamp(36px, 7vw, 104px);
  margin-bottom: clamp(38px, 5vw, 66px);
}
.survival-reel-heading h2 {
  max-width: 900px;
  margin: 12px 0 0;
  font-family: Impact, "Arial Black", "Yu Gothic UI", sans-serif;
  font-size: clamp(3.1rem, 6.25vw, 6.4rem);
  font-weight: 800;
  letter-spacing: .025em;
  line-height: .98;
}
.survival-reel-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(223, 250, 255, .67);
  text-shadow: 0 0 42px rgba(126, 232, 255, .09);
}
.survival-reel-heading > p {
  max-width: 510px;
  margin: 0 0 8px;
  color: #a7b8c1;
  font-size: clamp(.83rem, 1.15vw, .98rem);
  line-height: 2;
}
.survival-reel-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 14px;
  align-items: start;
}
.survival-scene-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 590px;
  border: 1px solid rgba(126, 232, 255, .25);
  background: linear-gradient(145deg, #0b1a23, #04080c);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
}
.survival-scene-ride {
  min-height: 500px;
  margin-top: 74px;
  border-color: rgba(126, 232, 255, .22);
  background-image: linear-gradient(145deg, rgba(8, 22, 30, .24), rgba(3, 8, 12, .68)), url("/assets/video/yuki-riding-poster.webp");
  background-position: center;
  background-size: cover;
}
.survival-scene-combat {
  border-color: rgba(255, 119, 88, .3);
  background-image: linear-gradient(145deg, rgba(24, 11, 10, .18), rgba(3, 7, 10, .65)), url("/assets/video/yuki-zombie-combat-poster.webp");
  background-position: center;
  background-size: cover;
}
.survival-scene-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 12px;
  border: 1px solid rgba(223, 250, 255, .1);
  pointer-events: none;
  clip-path: polygon(0 0, 56px 0, 56px 1px, 1px 1px, 1px 56px, 0 56px, 0 0, 100% 0, 100% 56px, calc(100% - 1px) 56px, calc(100% - 1px) 1px, calc(100% - 56px) 1px, calc(100% - 56px) 0, 100% 0, 100% 100%, calc(100% - 56px) 100%, calc(100% - 56px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(100% - 56px), 100% calc(100% - 56px), 100% 100%, 0 100%, 0 calc(100% - 56px), 1px calc(100% - 56px), 1px calc(100% - 1px), 56px calc(100% - 1px), 56px 100%, 0 100%);
}
.survival-scene-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(2, 7, 10, .2) 0%, transparent 32%, rgba(2, 6, 9, .2) 52%, rgba(2, 6, 9, .95) 100%),
    linear-gradient(110deg, rgba(3, 9, 13, .42), transparent 58%);
}
.survival-scene-card video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.018);
  backface-visibility: hidden;
  will-change: opacity;
  transition: opacity .32s ease;
}
.survival-scene-card.has-video-frame video { opacity: 1; }
.survival-scene-ride video { object-position: 52% center; }
.survival-scene-combat video { object-position: 50% center; }
.survival-scene-scan {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(255,255,255,.055) 4px);
  mix-blend-mode: normal;
}
.survival-scene-topline {
  position: absolute;
  z-index: 5;
  left: clamp(25px, 3vw, 40px);
  right: clamp(25px, 3vw, 40px);
  top: clamp(25px, 3vw, 38px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(223, 250, 255, .85);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .17em;
}
.survival-scene-signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #88a1ad;
}
.survival-scene-signal::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffbe55;
  box-shadow: 0 0 12px rgba(255, 190, 85, .72);
}
.survival-scene-card.is-video-playing .survival-scene-signal::before {
  background: var(--green);
  box-shadow: 0 0 13px var(--green);
}
.survival-scene-copy {
  position: absolute;
  z-index: 5;
  left: clamp(27px, 3.4vw, 50px);
  right: clamp(27px, 3.4vw, 50px);
  bottom: clamp(30px, 4vw, 55px);
}
.survival-scene-copy p {
  margin: 0 0 10px;
  color: var(--ice);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .2em;
}
.survival-scene-combat .survival-scene-copy p { color: #ff9b83; }
.survival-scene-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, "Arial Black", "Yu Gothic UI", sans-serif;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 5px 28px rgba(0, 0, 0, .7);
}
.survival-scene-ride .survival-scene-copy h3 { font-size: clamp(2.1rem, 3.7vw, 4rem); }
.survival-scene-copy > span {
  display: block;
  max-width: 620px;
  margin-top: 15px;
  color: #c0ced5;
  font-size: clamp(.72rem, 1vw, .87rem);
  line-height: 1.8;
  text-shadow: 0 3px 18px #000;
}
.survival-reel-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  color: #536b77;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.survival-reel-footer::before,
.survival-reel-footer::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 12%;
  background: rgba(126, 232, 255, .25);
}
.survival-reel-footer::before { left: 0; transform: translateX(calc(-100% - 18px)); }
.survival-reel-footer::after { right: 0; transform: translateX(calc(100% + 18px)); }
.survival-reel-footer b { color: #93a9b3; font-weight: 900; }
.survival-reel-footer span:last-child { text-align: right; }

@media (max-width: 900px) {
  .survival-reel-heading { grid-template-columns: 1fr; gap: 24px; }
  .survival-reel-heading > p { max-width: 680px; }
  .survival-reel-grid { grid-template-columns: 1fr; }
  .survival-scene-card,
  .survival-scene-ride { min-height: clamp(390px, 72vw, 560px); margin-top: 0; }
  .survival-scene-ride { order: 1; }
  .survival-scene-combat { order: 2; }
}
@media (max-width: 560px) {
  .survival-reel-section { padding-block: 82px 76px; }
  .survival-reel-heading h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .survival-scene-card,
  .survival-scene-ride { min-height: 430px; }
  .survival-scene-topline { align-items: flex-start; flex-direction: column; gap: 7px; }
  .survival-scene-copy h3,
  .survival-scene-ride .survival-scene-copy h3 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .survival-scene-copy > span { font-size: .72rem; }
  .survival-reel-footer { grid-template-columns: 1fr auto; }
  .survival-reel-footer b { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .survival-scene-card video { transform: none !important; transition: none !important; }
  .survival-scene-scan { display: none; }
}

/* Video preload reliability base v2.4.5 */
.survival-scene-card.is-video-loading::before,
.survival-scene-card.is-video-buffering::before {
  animation: survival-video-loading-pulse 1.4s ease-in-out infinite alternate;
}
.survival-scene-card.is-video-unavailable video {
  display: none;
}
@keyframes survival-video-loading-pulse {
  from { border-color: rgba(223, 250, 255, .08); }
  to { border-color: rgba(223, 250, 255, .2); }
}
@media (prefers-reduced-motion: reduce) {
  .survival-scene-card.is-video-loading::before,
  .survival-scene-card.is-video-buffering::before {
    animation: none;
  }
}

/* Icooon Mono heading and symbol icons v2.9.0 */
.icooonmono-heading-icon {
  width: .82em;
  height: .82em;
  margin-right: .28em;
  object-fit: contain;
  vertical-align: -.08em;
  filter: drop-shadow(0 0 .28em rgba(126, 232, 255, .2));
}
.icooonmono-symbol {
  display: inline-flex;
  width: 1em;
  height: 1em;
  align-items: center;
  justify-content: center;
  margin-inline: .08em;
  vertical-align: -.13em;
}
.icooonmono-inline-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark .icooonmono-symbol,
.footer-mark .icooonmono-symbol {
  width: 100%;
  height: 100%;
  margin: 0;
}
.feature-icon .icooonmono-symbol {
  width: 1.1em;
  height: 1.1em;
  margin: 0;
}
.discord-signal .icooonmono-symbol {
  margin: 0;
}
.button .icooonmono-symbol,
.site-nav .icooonmono-symbol,
.service-list .icooonmono-symbol {
  width: .82em;
  height: .82em;
}
@media (max-width: 620px) {
  .icooonmono-heading-icon {
    width: .76em;
    height: .76em;
    margin-right: .22em;
  }
}


/* Buffered video playback fix v2.4.5 */
.survival-scene-card {
  contain: paint;
}
.survival-video-loader {
  position: absolute;
  z-index: 6;
  top: clamp(66px, 7vw, 88px);
  left: clamp(25px, 3vw, 40px);
  right: clamp(25px, 3vw, 40px);
  height: 2px;
  overflow: hidden;
  opacity: 0;
  background: rgba(223, 250, 255, .1);
  pointer-events: none;
  transition: opacity .22s ease;
}
.survival-video-loader span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(126, 232, 255, .55), rgba(223, 250, 255, .95));
  transform: scaleX(var(--video-load-progress, 0));
  transform-origin: left center;
  transition: transform .14s linear;
}
.survival-scene-combat .survival-video-loader span {
  background: linear-gradient(90deg, rgba(255, 119, 88, .55), rgba(255, 194, 172, .95));
}
.survival-scene-card.is-video-loading .survival-video-loader,
.survival-scene-card.is-video-buffering .survival-video-loader {
  opacity: .8;
}
.survival-scene-card.is-video-ready .survival-video-loader {
  opacity: 0;
}
/* Global particles remain visible while cinematic videos are playing. */
.cinematic-video-active .cinematic-ambient {
  opacity: .64;
}
@media (prefers-reduced-motion: reduce) {
  .survival-video-loader { display: none; }
}


/* v2.6.1 Coin & Koin shop guide banner */
.shop-guide-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 30px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(126, 232, 255, .22);
  background: linear-gradient(125deg, rgba(18, 50, 68, .78), rgba(7, 18, 27, .96));
  box-shadow: 0 22px 56px rgba(0, 0, 0, .18);
}
.shop-guide-banner-copy { min-width: 0; }
.shop-guide-banner-copy > strong {
  display: block;
  margin: 3px 0 9px;
  color: var(--ice-bright);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-wrap: balance;
}
.shop-guide-banner-copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.8;
}
.shop-guide-banner-copy .shop-guide-banner-note {
  margin-top: 9px;
  color: #d9f8ff;
  font-weight: 800;
}
.shop-guide-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.shop-guide-banner-actions .button {
  min-width: 150px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .shop-guide-banner { align-items: flex-start; flex-direction: column; }
  .shop-guide-banner-actions { width: 100%; }
  .shop-guide-banner-actions .button { flex: 1 1 0; }
}
@media (max-width: 620px) {
  .shop-guide-banner-actions { flex-direction: column; }
  .shop-guide-banner-actions .button { width: 100%; }
}

/* Weapon analytics v3.0.0 */
.profile-server-select-wrap {
  position: relative;
  display: grid;
  min-width: min(100%, 320px);
  gap: 7px;
}
.profile-server-select-wrap > span {
  color: rgba(126, 232, 255, .78);
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .17em;
}
.profile-server-select {
  width: 100%;
  min-height: 52px;
  padding: 0 46px 0 17px;
  border: 1px solid rgba(126, 232, 255, .34);
  border-radius: 2px;
  color: #eaffff;
  background:
    linear-gradient(45deg, transparent 50%, #7ee8ff 50%) calc(100% - 20px) 22px / 7px 7px no-repeat,
    linear-gradient(135deg, #7ee8ff 50%, transparent 50%) calc(100% - 13px) 22px / 7px 7px no-repeat,
    linear-gradient(120deg, rgba(20, 48, 61, .96), rgba(7, 16, 24, .98));
  box-shadow: inset 3px 0 0 #7ee8ff, 0 14px 30px rgba(0, 0, 0, .24);
  font: 800 .78rem/1 var(--font-display);
  letter-spacing: .06em;
  appearance: none;
  cursor: pointer;
}
.profile-server-select:focus-visible {
  outline: 2px solid #7ee8ff;
  outline-offset: 3px;
}
.profile-server-select option {
  color: #eaffff;
  background: #0b1821;
}
.wallet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.profile-rank-summary {
  border-color: rgba(255, 208, 89, .35) !important;
  background: linear-gradient(145deg, rgba(62, 47, 10, .32), rgba(8, 18, 27, .95)) !important;
}
.profile-rank-summary strong {
  color: #ffd059 !important;
  text-shadow: 0 0 22px rgba(255, 208, 89, .32);
}
.profile-weapon-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  border-color: rgba(126, 232, 255, .24);
  background:
    radial-gradient(circle at 88% 12%, rgba(126, 232, 255, .12), transparent 28%),
    linear-gradient(135deg, rgba(11, 31, 43, .98), rgba(6, 14, 21, .98));
}
.weapon-usage-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: -4px 0 18px;
  color: rgba(223, 250, 255, .58);
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.weapon-usage-meta > span {
  color: #7ee8ff;
}
.weapon-usage-chart {
  display: grid;
  gap: 9px;
}
.weapon-usage-row {
  --usage-accent: #7ee8ff;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 48px minmax(120px, 1fr) auto auto;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 0 17px;
  border: 1px solid rgba(126, 232, 255, .12);
  background: linear-gradient(90deg, rgba(18, 41, 53, .8), rgba(8, 18, 26, .95));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}
.weapon-usage-row::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 24px, rgba(255, 255, 255, .018) 24px 25px);
  content: "";
}
.weapon-usage-fill {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: min(var(--usage-width), 100%);
  border-right: 1px solid color-mix(in srgb, var(--usage-accent) 75%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--usage-accent) 28%, transparent), color-mix(in srgb, var(--usage-accent) 9%, transparent));
  box-shadow: 14px 0 35px color-mix(in srgb, var(--usage-accent) 12%, transparent);
  transition: width .55s cubic-bezier(.22, 1, .36, 1);
}
.weapon-usage-rank {
  color: var(--usage-accent);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.weapon-usage-name {
  min-width: 0;
  overflow: hidden;
  color: #f0fdff;
  font-family: var(--font-display);
  font-size: clamp(.72rem, 1.2vw, .88rem);
  letter-spacing: .045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.weapon-usage-kills,
.weapon-usage-players {
  color: rgba(223, 250, 255, .7);
  font-family: var(--font-display);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
}
.weapon-usage-percent {
  min-width: 66px;
  color: #fff;
  font-family: var(--font-display);
  font-size: .83rem;
  text-align: right;
}
.weapon-rank-1 { --usage-accent: #ffd059; border-color: rgba(255, 208, 89, .38); }
.weapon-rank-2 { --usage-accent: #cad9e2; border-color: rgba(202, 217, 226, .28); }
.weapon-rank-3 { --usage-accent: #d78b5c; border-color: rgba(215, 139, 92, .3); }
.weapon-usage-section {
  padding: clamp(46px, 7vw, 92px) 0;
}
.daily-hero-copy .weapon-usage-link {
  margin-left: 18px;
  color: #7ee8ff;
}
.weapon-control-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  padding: clamp(22px, 3.2vw, 36px);
  border: 1px solid rgba(126, 232, 255, .2);
  background: linear-gradient(125deg, rgba(14, 39, 52, .92), rgba(6, 15, 23, .98));
}
.weapon-control-panel h2 {
  margin: 4px 0 8px;
}
.weapon-control-panel p:last-child {
  margin: 0;
  color: var(--muted);
}
.weapon-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
  border: 1px solid rgba(126, 232, 255, .14);
}
.weapon-summary > div {
  display: grid;
  gap: 7px;
  padding: 18px 22px;
  background: rgba(7, 18, 27, .78);
}
.weapon-summary > div + div {
  border-left: 1px solid rgba(126, 232, 255, .12);
}
.weapon-summary span {
  color: rgba(126, 232, 255, .62);
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.weapon-summary strong {
  color: #eaffff;
  font: 900 clamp(1.05rem, 2.4vw, 1.55rem)/1 var(--font-display);
}
.weapon-global-chart .weapon-usage-row {
  grid-template-columns: 52px minmax(140px, 1fr) auto auto 78px;
  min-height: 58px;
}
@media (max-width: 900px) {
  .wallet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weapon-control-panel { align-items: stretch; flex-direction: column; }
  .weapon-control-panel .profile-server-select-wrap { width: 100%; }
}
@media (max-width: 680px) {
  .weapon-usage-row,
  .weapon-global-chart .weapon-usage-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 62px;
    padding: 0 12px;
  }
  .weapon-usage-kills,
  .weapon-usage-players { display: none; }
  .weapon-usage-percent { min-width: 58px; }
  .weapon-summary { grid-template-columns: 1fr; }
  .weapon-summary > div + div { border-top: 1px solid rgba(126, 232, 255, .12); border-left: 0; }
  .weapon-usage-meta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .wallet-grid { grid-template-columns: 1fr; }
}

/* Unified responsive navigation v3.0.1 */
.site-header .brand {
  flex: 0 0 auto;
}
.site-header .site-nav {
  flex-wrap: nowrap;
}
.site-header .site-nav > a {
  white-space: nowrap;
}
.site-header .nav-toggle,
.site-header .language-menu-toggle,
.site-header .language-menu-option,
.site-header .site-nav > a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1600px) {
  .site-header {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }
  .site-header.is-navigation-open {
    background: rgba(5, 12, 18, .99);
  }
  .site-header .nav-toggle {
    position: absolute;
    top: 50%;
    right: 108px;
    z-index: 112;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    transform: translateY(-50%);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    user-select: none;
    -webkit-user-select: none;
  }
  .site-header .nav-toggle span:not(.sr-only) {
    width: 23px;
    height: 1px;
    background: #eaffff;
    transition: transform .2s ease, opacity .2s ease;
  }
  .site-header .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-header .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .site-header .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .site-header .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 111;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    margin: 0;
    padding: 22px max(18px, calc((100vw - 1180px) / 2));
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(126, 232, 255, .12);
    border-bottom: 1px solid rgba(126, 232, 255, .26);
    background: rgba(5, 12, 18, .985);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .48);
    backdrop-filter: blur(20px);
  }
  .site-header .site-nav.is-open {
    display: grid;
  }
  .site-header .site-nav > a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(126, 232, 255, .1);
    background: rgba(126, 232, 255, .025);
    font-size: .75rem;
  }
  .site-header .site-nav > a::after {
    display: none;
  }
  .site-header .site-nav > a:hover {
    border-color: rgba(126, 232, 255, .34);
    background: rgba(126, 232, 255, .07);
  }
  .site-header .nav-login {
    justify-content: center;
    border-color: rgba(126, 232, 255, .38);
  }
  .site-header .language-menu {
    right: 18px;
  }
}
@media (max-width: 780px) {
  .site-header .nav-toggle {
    right: max(72px, calc(env(safe-area-inset-right) + 58px));
  }
  .site-header .language-menu {
    right: max(14px, env(safe-area-inset-right));
  }
  .site-header .site-nav {
    grid-template-columns: 1fr;
    padding: 14px max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }
  .site-header .site-nav > a {
    min-height: 42px;
  }
}

/* スマートフォン横向きでも設定パネルより地図を優先します。 */
@media (max-width: 1024px) and (max-height: 600px) {
  .map-layout { position: relative; display: block; }
  .map-sidebar { position: absolute; inset: 0 auto 0 0; width: min(320px, calc(100vw - 56px - env(safe-area-inset-right, 0px))); padding-left: max(24px, env(safe-area-inset-left)); padding-bottom: max(30px, env(safe-area-inset-bottom)); transform: translate3d(0, 0, 0); transition: transform .25s ease, visibility 0s linear; box-shadow: 18px 0 60px rgba(0,0,0,.48); will-change: transform; }
  .map-stage { height: 100%; }
  .map-sidebar-toggle { display: block; left: auto; right: max(12px, env(safe-area-inset-right)); }
  .map-layout.sidebar-collapsed .map-sidebar { visibility: hidden; pointer-events: none; transform: translate3d(-100%, 0, 0); transition: transform .25s ease, visibility 0s linear .25s; }
}

/* Community gallery and public survivor profiles */
.community-page, .community-post-page, .community-user-page { background: #050b12; }
.community-hero { position: relative; overflow: hidden; padding: calc(var(--header-height) + 78px) 0 72px; border-bottom: 1px solid rgba(126,232,255,.16); background: radial-gradient(circle at 80% 12%, rgba(28,180,214,.22), transparent 32%), linear-gradient(125deg, #0a1620 0%, #071019 55%, #12111c 100%); }
.community-hero::after { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(126,232,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(126,232,255,.09) 1px, transparent 1px); background-size: 46px 46px; content: ''; mask-image: linear-gradient(90deg, transparent, #000 45%, transparent); }
.community-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); align-items: end; gap: 40px; }
.community-hero h1 { max-width: 800px; margin: 10px 0 18px; color: #effbff; font-size: clamp(2.3rem, 5vw, 5.7rem); line-height: .98; letter-spacing: -.06em; }
.community-hero h1 span { color: #7ee8ff; text-shadow: 0 0 32px rgba(126,232,255,.26); }
.community-hero p:not(.eyebrow) { max-width: 640px; margin: 0; color: rgba(231,246,255,.76); font-size: 1rem; line-height: 1.9; }
.community-hero-status { display: grid; gap: 12px; padding: 24px; border: 1px solid rgba(126,232,255,.28); background: rgba(6,16,26,.72); box-shadow: 0 22px 60px rgba(0,0,0,.25); backdrop-filter: blur(16px); }
.community-hero-status .live-dot { margin-right: 8px; }
.community-hero-status strong { color: #bff5ff; font-size: .77rem; letter-spacing: .15em; }
.community-hero-status small { color: rgba(231,246,255,.65); }
.community-section { padding: 74px 0 94px; }
.community-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.community-toolbar h2, .community-panel-head h2, .community-thread h2 { margin: 6px 0 0; color: #f4fbff; font-size: clamp(1.7rem, 3vw, 2.8rem); }
.community-sort { display: flex; overflow: hidden; border: 1px solid rgba(126,232,255,.23); }
.community-sort button { min-width: 72px; padding: 10px 14px; border: 0; border-left: 1px solid rgba(126,232,255,.16); background: rgba(126,232,255,.04); color: rgba(232,249,255,.72); font: inherit; font-size: .8rem; cursor: pointer; }
.community-sort button:first-child { border-left: 0; }
.community-sort button.is-active, .community-sort button:hover { background: #7ee8ff; color: #051019; }
.community-upload-panel, .community-thread, .community-profile-editor { margin: 0 0 34px; padding: 28px; border: 1px solid rgba(126,232,255,.24); background: linear-gradient(135deg, rgba(13,35,48,.86), rgba(8,16,26,.94)); box-shadow: 0 26px 70px rgba(0,0,0,.2); }
.community-panel-head, .community-thread > header { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.community-close { width: 36px; height: 36px; border: 1px solid rgba(126,232,255,.35); background: transparent; color: #bff5ff; font-size: 1.5rem; cursor: pointer; }
.community-upload-type { display: flex; gap: 10px; margin-bottom: 18px; }
.community-upload-type label { display: flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(126,232,255,.2); color: #d9f8ff; font-size: .88rem; }
.community-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.community-form-grid label, .community-comment-form label { display: grid; gap: 8px; color: #b8eefa; font-size: .78rem; letter-spacing: .06em; }
.community-form-grid input, .community-form-grid textarea, .community-comment-form input, .community-comment-form textarea { width: 100%; box-sizing: border-box; border: 1px solid rgba(126,232,255,.24); border-radius: 0; background: rgba(1,8,14,.74); color: #eefbff; font: inherit; letter-spacing: normal; }
.community-form-grid input, .community-comment-form input { min-height: 44px; padding: 10px 12px; }
.community-form-grid textarea, .community-comment-form textarea { min-height: 112px; padding: 12px; resize: vertical; }
.community-form-grid input:focus, .community-form-grid textarea:focus, .community-comment-form input:focus, .community-comment-form textarea:focus { outline: 2px solid #7ee8ff; outline-offset: 2px; }
.community-full { grid-column: 1 / -1; }
.community-form-note { margin: 13px 0; color: rgba(214,241,250,.56); font-size: .76rem; line-height: 1.65; }
.community-form-actions, .community-comment-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; color: #8beeff; font-size: .82rem; }
.community-feed-message { min-height: 24px; margin: 0 0 18px; color: rgba(218,243,255,.68); }
.community-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.community-card { overflow: hidden; border: 1px solid rgba(126,232,255,.14); background: #09141f; box-shadow: 0 14px 30px rgba(0,0,0,.16); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.community-card:hover { z-index: 1; border-color: rgba(126,232,255,.62); box-shadow: 0 22px 48px rgba(0,0,0,.38); transform: translateY(-5px); }
.community-card-media { position: relative; display: block; aspect-ratio: 1 / .8; overflow: hidden; background: #101c28; }
.community-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.community-card:hover .community-card-media img { transform: scale(1.04); }
.community-video-mark { position: absolute; top: 12px; left: 12px; padding: 6px 8px; background: rgba(2,10,16,.8); color: #bff5ff; font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.community-card-body { display: grid; gap: 12px; padding: 15px; }
.community-card-body h3 { margin: 0; overflow: hidden; color: #effbff; font-size: .98rem; text-overflow: ellipsis; white-space: nowrap; }
.community-author, .community-comment-author { display: inline-flex; align-items: center; gap: 9px; width: max-content; max-width: 100%; color: #c8f5ff; text-decoration: none; }
.community-author:hover, .community-comment-author:hover { color: #fff; }
.community-author > span:not(.community-avatar) { display: grid; gap: 2px; min-width: 0; overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.community-author small { color: rgba(195,236,249,.58); font-size: .65rem; }
.community-avatar { display: inline-grid; flex: 0 0 auto; width: 30px; height: 30px; overflow: hidden; place-items: center; border: 1px solid rgba(126,232,255,.45); border-radius: 50%; background: #123145; color: #d8f9ff; font-size: .67rem; font-weight: 800; }
.community-avatar img { width: 100%; height: 100%; object-fit: cover; }
.community-card-metrics { margin: 0; color: rgba(194,233,245,.62); font-size: .73rem; letter-spacing: .05em; }
.community-more { display: flex; justify-content: center; margin-top: 34px; }
.community-detail-shell { padding: calc(var(--header-height) + 36px) 0 88px; }
.community-back-link { display: inline-block; margin: 0 0 24px; color: #a6f0ff; font-size: .86rem; }
.community-post-detail { margin-bottom: 32px; border: 1px solid rgba(126,232,255,.18); background: #09141f; }
.community-detail-head { display: flex; align-items: start; justify-content: space-between; gap: 28px; padding: 32px 32px 24px; }
.community-detail-head h1 { max-width: 850px; margin: 7px 0 18px; color: #f2fbff; font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1.02; letter-spacing: -.05em; }
.community-detail-date { color: rgba(203,238,249,.56); font-size: .75rem; white-space: nowrap; }
.community-detail-media { background: #02070c; }
.community-detail-media img, .community-detail-media iframe { display: block; width: 100%; max-height: min(78vh, 920px); border: 0; object-fit: contain; aspect-ratio: 16 / 9; }
.community-detail-description { max-width: 900px; margin: 0; padding: 26px 32px 8px; color: rgba(231,246,255,.81); line-height: 1.85; white-space: pre-wrap; }
.community-detail-actions { display: flex; align-items: center; gap: 18px; padding: 20px 32px 30px; color: rgba(210,239,248,.65); font-size: .88rem; }
.community-like { border: 1px solid rgba(126,232,255,.32); background: transparent; color: #ccf7ff; padding: 9px 14px; font: inherit; cursor: pointer; }
.community-like:hover, .community-like.is-liked { border-color: #ff91b2; background: rgba(255,91,143,.14); color: #ffbad0; }
.community-like:disabled { opacity: .55; cursor: wait; }
.community-delete { margin-left: auto; border: 1px solid rgba(255,122,151,.56); background: transparent; color: #ffb2c8; padding: 9px 14px; font: inherit; font-size: .8rem; cursor: pointer; }
.community-delete:hover { border-color: #ff7d9f; background: rgba(255,91,143,.16); color: #fff; }
.community-delete:disabled { opacity: .55; cursor: wait; }
.community-thread > header small { max-width: 270px; color: rgba(206,238,248,.6); font-size: .73rem; line-height: 1.6; text-align: right; }
.community-comment-list { display: grid; gap: 10px; margin-bottom: 24px; }
.community-comment { padding: 13px 15px 15px; border: 1px solid rgba(126,232,255,.18); background: rgba(4,12,19,.7); }
.community-comment:nth-child(even) { background: rgba(14,33,45,.68); }
.community-comment header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(126,232,255,.1); }
.community-comment-author { color: #93f1ff; font-size: .78rem; }
.community-comment-author .community-avatar { width: 24px; height: 24px; font-size: .58rem; }
.community-comment-author b { color: #d7ff83; font-size: .72rem; }
.community-comment-meta { color: rgba(202,233,245,.48); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .68rem; }
.community-comment > p { margin: 12px 0 0; color: #e4f7fc; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .9rem; line-height: 1.7; white-space: pre-wrap; }
.community-no-comments { margin: 0; padding: 20px; border: 1px dashed rgba(126,232,255,.2); color: rgba(214,241,250,.58); text-align: center; }
.community-comment-form { display: grid; gap: 15px; }
.community-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.community-user-hero { padding: calc(var(--header-height) + 68px) 0 22px; background: radial-gradient(circle at 50% 20%, rgba(33,193,225,.18), transparent 42%), #071019; }
.community-user-profile-card { display: grid; justify-items: center; padding: 44px 24px 48px; border: 1px solid rgba(126,232,255,.2); background: linear-gradient(150deg, rgba(15,43,57,.8), rgba(8,14,23,.9)); text-align: center; }
.community-user-avatar { display: grid; width: clamp(132px, 17vw, 188px); height: clamp(132px, 17vw, 188px); overflow: hidden; place-items: center; border: 4px solid #a9f5ff; border-radius: 50%; background: #16455e; box-shadow: 0 0 0 10px rgba(126,232,255,.1), 0 0 55px rgba(78,219,249,.32); color: #e7fbff; font-size: 3rem; font-weight: 800; }
.community-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.community-user-profile-card h1 { margin: 26px 0 6px; color: #f4fbff; font-size: clamp(2rem, 4vw, 3.8rem); }
.community-user-id { margin: 0; color: #7ee8ff; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 1rem; }
.community-user-caption { margin: 18px 0 0; color: rgba(215,242,250,.55); font-size: .72rem; letter-spacing: .16em; }
.community-profile-editor { grid-column: 1 / -1; }
.community-profile-form { display: grid; gap: 0; }
.player-avatar { overflow: hidden; }
.player-avatar img { width: 100%; height: 100%; object-fit: cover; }
.community-highlight-section { position: relative; overflow: hidden; padding: 76px 0; border-top: 1px solid rgba(126,232,255,.13); border-bottom: 1px solid rgba(126,232,255,.13); background: linear-gradient(100deg, #091721, #071019); }
.community-highlight-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 25px; }
.community-highlight-heading h2 { margin: 7px 0 0; color: #f2fbff; font-size: clamp(1.8rem, 3vw, 3rem); }
.community-highlight-heading > a { color: #9cf2ff; font-size: .82rem; }
.community-highlight-viewport { overflow: hidden; margin-right: calc((100vw - min(1180px, 100vw - 48px)) / -2); }
.community-highlight-track { display: flex; width: max-content; gap: 18px; animation: community-highlight-scroll 48s linear infinite; }
.community-highlight-viewport:hover .community-highlight-track { animation-play-state: paused; }
.community-highlight-card { position: relative; display: block; width: min(330px, 74vw); aspect-ratio: 1.55 / 1; overflow: hidden; border: 1px solid rgba(126,232,255,.2); background: #0d1e2a; }
.community-highlight-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.community-highlight-card:hover img { transform: scale(1.05); }
.community-highlight-meta { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 4px; padding: 26px 14px 13px; background: linear-gradient(transparent, rgba(2,8,13,.92)); color: #f4fbff; }
.community-highlight-meta b { overflow: hidden; font-size: .86rem; text-overflow: ellipsis; white-space: nowrap; }
.community-highlight-meta small { color: #b9eef8; font-size: .68rem; }
.community-toast { position: fixed; right: 20px; bottom: 20px; z-index: 200; margin: 0; padding: 13px 16px; border: 1px solid rgba(126,232,255,.48); background: #07131c; color: #e9fbff; box-shadow: 0 14px 34px rgba(0,0,0,.35); }
@keyframes community-highlight-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) { .community-highlight-track { animation: none; } .community-card, .community-card-media img { transition: none; } }
@media (max-width: 1024px) { .community-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .community-hero { padding-top: calc(var(--header-height) + 44px); } .community-hero-grid { grid-template-columns: 1fr; gap: 28px; } .community-hero h1 { font-size: clamp(2.2rem, 12vw, 4rem); } .community-section { padding: 50px 0 68px; } .community-toolbar, .community-highlight-heading { align-items: start; flex-direction: column; gap: 14px; } .community-form-grid, .community-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .community-upload-panel, .community-thread { padding: 18px; } .community-panel-head, .community-thread > header, .community-detail-head { align-items: start; flex-direction: column; } .community-thread > header small { text-align: left; } .community-detail-head, .community-detail-description, .community-detail-actions { padding-right: 18px; padding-left: 18px; } .community-detail-date { white-space: normal; } .community-comment header { align-items: start; flex-direction: column; gap: 7px; } .community-highlight-section { padding: 52px 0; } .community-highlight-viewport { margin-right: -24px; } }
@media (max-width: 460px) { .community-form-grid, .community-gallery { grid-template-columns: 1fr; } .community-form-actions, .community-comment-actions { align-items: stretch; flex-direction: column; } .community-form-actions .button, .community-comment-actions .button { width: 100%; } }
