:root {
  --ink: #090a0c;
  --ink-soft: #101216;
  --panel: #15171b;
  --panel-2: #1a1d22;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f2f1ed;
  --muted: #92969f;
  --red: #e31b2b;
  --red-dark: #a80e1b;
  --green: #5ee49b;
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --section: min(1240px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
svg { display: block; }
::selection { background: var(--red); color: #fff; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 240px; }
.brand-mark {
  width: 34px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: skewX(-5deg);
}
.brand-mark svg { width: 18px; height: 25px; fill: var(--red); transform: skewX(5deg); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--font-display); font-size: 21px; letter-spacing: 0.1em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: 0.34em; }

.desktop-nav { display: flex; align-items: center; gap: 38px; margin: 0 auto; }
.desktop-nav a { position: relative; color: #c9cbd0; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 0; height: 2px; background: var(--red); transition: width 180ms ease; }
.desktop-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.mini-status { display: inline-flex; align-items: center; gap: 8px; color: #c9cbd0; font-size: 9px; font-weight: 900; letter-spacing: 0.14em; white-space: nowrap; }
.mini-status i, .large-status i, .live-pulse i { width: 7px; height: 7px; border-radius: 50%; background: #d7a12d; box-shadow: 0 0 0 4px rgba(215, 161, 45, 0.12); }
.is-online i { background: var(--green); box-shadow: 0 0 0 4px rgba(94, 228, 155, 0.12), 0 0 18px rgba(94, 228, 155, 0.5); }
.is-offline i { background: var(--red); box-shadow: 0 0 0 4px rgba(227, 27, 43, 0.12); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-small { min-height: 40px; padding: 0 18px; border-color: rgba(255, 255, 255, 0.28); }
.button-primary { border-color: var(--red); background: var(--red); box-shadow: 0 12px 32px rgba(227, 27, 43, 0.18); }
.button-primary:hover { background: #f02435; border-color: #f02435; }
.button-ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.38); }
.menu-toggle, .mobile-nav { display: none; }

.hero { min-height: 820px; height: min(930px, 100vh); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media {
  background-image: url("/assets/thunder-ze-hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  animation: heroSettle 1.5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes heroSettle { from { transform: scale(1.07); filter: brightness(0.65); } to { transform: scale(1.015); filter: brightness(1); } }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.98) 0%, rgba(5, 6, 8, 0.88) 30%, rgba(7, 8, 10, 0.18) 69%, rgba(5, 6, 8, 0.22) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 24%, rgba(0,0,0,.25) 100%);
}
.hero-grid {
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-content { position: relative; z-index: 2; width: min(680px, 48vw); margin-left: max(5vw, calc((100vw - 1380px) / 2)); padding-top: 52px; }
.eyebrow, .section-index { color: #aeb1b8; font-size: 10px; font-weight: 900; letter-spacing: 0.22em; }
.eyebrow span { color: var(--red); }
.hero h1, .section h2, .rules-section h2 {
  margin: 20px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(76px, 7.3vw, 128px);
  line-height: 0.78;
  letter-spacing: -0.035em;
  font-stretch: condensed;
  font-weight: 900;
}
.hero h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-lead { max-width: 560px; margin: 0; color: #b9bcc2; font-size: 15px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }

.hero-telemetry {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 54px;
  width: min(540px, 42vw);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(8, 10, 13, 0.78);
  backdrop-filter: blur(14px);
}
.telemetry-head { height: 38px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: #90949c; font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.telemetry-head::before { content: ""; position: absolute; left: -1px; top: -1px; width: 64px; height: 2px; background: var(--red); }
.telemetry-grid { display: grid; grid-template-columns: 1.35fr .7fr 1.55fr; }
.telemetry-grid > div { min-width: 0; padding: 20px 16px; border-right: 1px solid var(--line); }
.telemetry-grid > div:last-child { border: 0; }
.telemetry-grid small { display: block; margin-bottom: 9px; color: #6f747d; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.telemetry-grid strong { display: block; overflow: hidden; text-overflow: ellipsis; color: #e9e9e6; font-family: var(--font-display); font-size: 17px; letter-spacing: .04em; white-space: nowrap; }
.telemetry-grid strong b { color: #777b83; font-size: 12px; }
.telemetry-grid strong b::before { content: "/"; margin: 0 1px; }
.telemetry-address strong { font-size: 14px; }
.scroll-cue { position: absolute; z-index: 4; bottom: 56px; left: 4vw; display: flex; align-items: center; gap: 15px; color: #777b84; font-size: 8px; font-weight: 900; letter-spacing: .2em; }
.scroll-cue i { width: 50px; height: 1px; background: linear-gradient(90deg, var(--red) 40%, rgba(255,255,255,.18) 40%); }

.section { width: var(--section); margin: 0 auto; }
.status-section { padding: 120px 0 140px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.section-heading h2, .experience h2, .join-section h2 { font-size: clamp(54px, 6vw, 94px); line-height: .9; margin: 18px 0 0; }
.status-heading-side { width: min(430px, 38%); display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.status-heading-side p { max-width: 290px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.text-button { display: inline-flex; align-items: center; gap: 9px; padding: 0 0 7px; border: 0; border-bottom: 1px solid #4b4e55; background: transparent; font-size: 8px; font-weight: 900; letter-spacing: .15em; white-space: nowrap; cursor: pointer; }
.text-button svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.text-button.is-loading svg { animation: spin 700ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.server-console { display: grid; grid-template-columns: .93fr 1.07fr; min-height: 545px; border: 1px solid var(--line); background: var(--panel); box-shadow: 0 36px 90px rgba(0,0,0,.32); }
.server-overview { padding: 34px; border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.022), transparent 45%); }
.overview-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.large-status { display: inline-flex; align-items: center; gap: 10px; color: #d1d2d5; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.last-checked { color: #696d75; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.last-checked b { margin-left: 6px; color: #aeb1b7; font-weight: inherit; }
.server-name-block { padding: 40px 0 35px; }
.server-name-block > span { color: #6f737b; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.server-name-block h3 { max-width: 520px; margin: 12px 0 0; font-family: var(--font-display); font-size: clamp(28px, 3vw, 48px); line-height: 1.02; letter-spacing: -.01em; text-transform: uppercase; }
.server-facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.server-facts div { min-width: 0; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.server-facts dt { margin-bottom: 8px; color: #696d75; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.server-facts dd { margin: 0; overflow: hidden; text-overflow: ellipsis; color: #d6d7d9; font-family: var(--font-display); font-size: 14px; letter-spacing: .04em; white-space: nowrap; }
.occupancy { margin: 30px 0; }
.occupancy-label { display: flex; justify-content: space-between; margin-bottom: 10px; color: #7d8189; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.occupancy-label b { color: #d9dadd; }
.occupancy-track { height: 4px; overflow: hidden; background: #282b31; }
.occupancy-track i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red)); box-shadow: 0 0 16px rgba(227,27,43,.55); transition: width 600ms cubic-bezier(.2,.8,.2,1); }
.overview-actions { display: flex; gap: 10px; }
.overview-actions .button { flex: 1; }
.icon-button { width: 54px; min-width: 54px; display: grid; place-items: center; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; }
.icon-button:hover { background: rgba(255,255,255,.06); }
.icon-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.players-panel { min-width: 0; display: flex; flex-direction: column; background: #111317; }
.players-head { min-height: 104px; padding: 28px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.players-head > div { display: flex; flex-direction: column; gap: 8px; }
.players-head span { color: #747881; font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.players-head strong { font-family: var(--font-display); font-size: 25px; letter-spacing: .03em; }
.live-pulse { display: inline-flex; align-items: center; gap: 9px; }
.live-pulse i { width: 6px; height: 6px; background: var(--green); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(94,228,155,0); } }
.player-table-wrap { max-height: 440px; overflow-y: auto; scrollbar-color: #41454c #15171b; scrollbar-width: thin; }
.player-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.player-table th { position: sticky; z-index: 2; top: 0; height: 42px; padding: 0 18px; background: #17191e; color: #5f636c; font-size: 8px; font-weight: 900; letter-spacing: .15em; text-align: left; }
.player-table th:first-child, .player-table td:first-child { width: 56px; color: #5d6169; text-align: center; }
.player-table th:nth-child(3), .player-table td:nth-child(3) { width: 80px; text-align: right; }
.player-table th:nth-child(4), .player-table td:nth-child(4) { width: 95px; text-align: right; }
.player-table td { height: 51px; padding: 0 18px; overflow: hidden; border-top: 1px solid rgba(255,255,255,.055); color: #a9acb2; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.player-table td:nth-child(2) { color: #e1e2e3; font-weight: 700; }
.player-table tbody tr:hover td { background: rgba(255,255,255,.025); }
.player-placeholder td { height: 260px; color: #737780 !important; text-align: center !important; letter-spacing: .12em; }
.loader { display: inline-block; width: 9px; height: 9px; margin-right: 9px; border: 1px solid #5d6168; border-top-color: var(--red); border-radius: 50%; animation: spin 650ms linear infinite; }
.empty-players td { height: 260px; text-align: center !important; white-space: normal; }
.empty-players strong { display: block; margin-bottom: 9px; color: #d2d3d5; font-family: var(--font-display); font-size: 20px; }
.empty-players span { color: #747881; font-size: 10px; }

.experience { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; padding: 120px 0 150px; border-top: 1px solid var(--line); }
.experience h2 { margin-bottom: 32px; }
.experience-copy > p { max-width: 600px; color: #9b9fa7; font-size: 15px; line-height: 1.9; }
.inline-link { display: inline-flex; gap: 24px; margin-top: 25px; padding-bottom: 9px; border-bottom: 1px solid #4a4e55; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.inline-link span { color: var(--red); }
.experience-notes { border-top: 1px solid var(--line); }
.experience-notes article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.note-number { padding-top: 4px; color: var(--red); font-family: ui-monospace, monospace; font-size: 10px; }
.experience-notes h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 25px; letter-spacing: .03em; }
.experience-notes p { max-width: 430px; margin: 0; color: #868a93; font-size: 12px; line-height: 1.75; }

.community-section { position: relative; overflow: hidden; border-top: 1px solid var(--line); background: #0c0e12; }
.community-section::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -12%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 28, 186, .15), transparent 67%);
  pointer-events: none;
}
.community-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr); gap: 8vw; align-items: center; padding-top: 120px; padding-bottom: 130px; }
.community-story { min-width: 0; }
.community-logo-stage { position: relative; width: min(560px, 100%); aspect-ratio: 3 / 2; display: grid; place-items: center; margin: 12px 0 -30px -34px; isolation: isolate; }
.community-logo-stage::after { content: ""; position: absolute; z-index: -1; inset: 24% 18%; border-radius: 50%; background: rgba(131, 36, 198, .18); filter: blur(54px); }
.community-logo-stage img { position: relative; z-index: 2; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 26px 38px rgba(0,0,0,.48)) drop-shadow(0 0 22px rgba(132,38,200,.16)); }
.logo-orbit { position: absolute; z-index: -1; border: 1px solid rgba(174, 84, 226, .13); border-radius: 50%; transform: rotate(-11deg); }
.logo-orbit-one { width: 72%; aspect-ratio: 1; }
.logo-orbit-two { width: 50%; aspect-ratio: 1; border-color: rgba(92, 204, 255, .1); transform: rotate(18deg); }
.community-story h2 { margin: 10px 0 28px; font-size: clamp(52px, 5.4vw, 86px); line-height: .88; }
.community-story > p { max-width: 650px; margin: 0; color: #969aa3; font-size: 14px; line-height: 1.85; }
.community-join { margin-top: 34px; }
.community-join span { font-size: 16px; font-weight: 500; }
.discord-widget-card { position: relative; width: min(100%, 430px); justify-self: end; border: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.008)); box-shadow: 0 32px 80px rgba(0,0,0,.4); }
.discord-widget-card::before { content: ""; position: absolute; top: -1px; left: -1px; width: 84px; height: 2px; background: linear-gradient(90deg, #7938bd, #7f5bff); }
.discord-widget-head, .discord-widget-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 24px; }
.discord-widget-head { min-height: 82px; border-bottom: 1px solid var(--line); }
.discord-widget-head > div { display: flex; flex-direction: column; gap: 7px; }
.discord-widget-head span, .discord-widget-foot span { color: #6f737c; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.discord-widget-head strong { font-family: var(--font-display); font-size: 21px; letter-spacing: .04em; }
.discord-live { display: inline-flex; align-items: center; gap: 8px; color: #a8abb1 !important; }
.discord-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(94,228,155,.1), 0 0 16px rgba(94,228,155,.38); }
.discord-widget-frame { min-height: 500px; padding: 22px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.12); }
.discord-widget-frame iframe { display: block; width: 350px; max-width: 100%; height: 500px; border: 0; background: #202225; }
.discord-widget-foot { min-height: 62px; border-top: 1px solid var(--line); }
.discord-widget-foot a { color: #bbbfc7; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.discord-widget-foot a:hover { color: #fff; }

.rules-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0d10; }
.rules-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding-top: 120px; padding-bottom: 120px; }
.rules-title-wrap h2 { font-size: clamp(54px, 5vw, 80px); line-height: .88; }
.rules-list { counter-reset: rule; }
.rules-list > div { display: grid; grid-template-columns: 60px 1fr; gap: 20px; min-height: 75px; align-items: center; border-bottom: 1px solid var(--line); }
.rules-list > div:first-child { border-top: 1px solid var(--line); }
.rules-list span { color: var(--red); font-family: ui-monospace, monospace; font-size: 9px; }
.rules-list p { margin: 0; color: #b5b8be; font-size: 12px; line-height: 1.55; }

.join-section { position: relative; padding: 145px 0 135px; text-align: center; overflow: hidden; }
.join-section h2 { position: relative; margin: 22px 0 38px; font-size: clamp(65px, 8vw, 122px); }
.join-actions { position: relative; display: flex; justify-content: center; gap: 10px; }
.join-address { position: relative; display: flex; align-items: center; gap: 16px; margin: 26px auto 0; border: 0; background: transparent; cursor: pointer; }
.join-address span { color: #d5d6d8; font-family: ui-monospace, monospace; font-size: 12px; }
.join-address small { color: #5f636a; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.join-signal { position: absolute; inset: 50% auto auto 50%; display: flex; gap: 22px; transform: translate(-50%,-50%) rotate(-15deg); opacity: .025; }
.join-signal span { width: 45px; height: 620px; background: #fff; }

.site-footer { min-height: 105px; padding: 28px 4vw; display: grid; grid-template-columns: 1.2fr 1fr 1.5fr auto; align-items: center; gap: 25px; border-top: 1px solid var(--line); color: #686c74; }
.brand-footer { min-width: 0; transform: scale(.82); transform-origin: left center; }
.site-footer > p, .site-footer > small { margin: 0; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: flex; justify-content: center; gap: 22px; }
.footer-links a { color: #8f939a; font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.footer-links a:hover { color: #fff; }
.footer-links .made-by { color: #c7c9ce; }
.footer-links .made-by::after { content: " ↗"; color: var(--red); }
.toast { position: fixed; z-index: 120; right: 24px; bottom: 24px; padding: 15px 19px; background: #f0efeb; color: #0b0c0e; font-size: 9px; font-weight: 900; letter-spacing: .14em; transform: translateY(20px); opacity: 0; pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --section: min(100% - 40px, 900px); }
  .desktop-nav, .mini-status { display: none; }
  .site-header { padding: 0 24px; }
  .header-actions { margin-left: auto; }
  .menu-toggle { width: 42px; height: 40px; display: grid; align-content: center; gap: 7px; padding: 0 11px; border: 1px solid var(--line-strong); background: rgba(0,0,0,.25); cursor: pointer; }
  .menu-toggle span { width: 100%; height: 1px; background: #fff; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 15; inset: 92px 0 auto 0; display: flex; flex-direction: column; padding: 20px 24px 32px; background: rgba(8,9,11,.98); border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 220ms ease; }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 22px; }
  .hero-content { width: 66vw; margin-left: 5vw; }
  .hero-telemetry { width: 50vw; right: 24px; }
  .server-console { grid-template-columns: 1fr; }
  .server-overview { border-right: 0; border-bottom: 1px solid var(--line); }
  .status-heading-side { width: 45%; }
  .experience { gap: 6vw; }
  .community-grid { grid-template-columns: 1fr; gap: 75px; }
  .community-logo-stage { margin-left: 0; }
  .discord-widget-card { width: min(100%, 560px); justify-self: center; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: end; }
  .site-footer > small { text-align: right; }
}

@media (max-width: 720px) {
  :root { --section: calc(100% - 32px); }
  .site-header { height: 76px; padding: 0 16px; }
  .brand { min-width: 0; }
  .brand-mark { width: 30px; height: 36px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 6px; }
  .header-actions .button-small { display: none; }
  .mobile-nav { inset-block-start: 76px; }
  .hero { min-height: 760px; height: 100svh; align-items: flex-start; }
  .hero-media { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,5,7,.97), rgba(6,7,9,.55)), linear-gradient(0deg, var(--ink) 0%, transparent 38%); }
  .hero-content { width: calc(100% - 44px); min-width: 0; margin: 0 22px; padding-top: 145px; }
  .hero h1 { font-size: clamp(62px, 19vw, 82px); margin-top: 18px; }
  .hero-lead { max-width: 470px; font-size: 13px; line-height: 1.65; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button { min-height: 50px; padding: 0 16px; }
  .hero-actions .button-ghost { width: 52px; font-size: 0; }
  .hero-actions .button-ghost svg { width: 18px; }
  .hero-telemetry { left: 16px; right: 16px; bottom: 24px; width: auto; }
  .telemetry-grid { grid-template-columns: 1fr .72fr; }
  .telemetry-address { display: none; }
  .scroll-cue { display: none; }
  .status-section { padding: 90px 0 100px; }
  .section-heading { display: block; }
  .status-heading-side { width: 100%; margin-top: 24px; align-items: center; }
  .section-heading h2, .experience h2, .join-section h2 { font-size: clamp(52px, 17vw, 78px); }
  .server-overview { padding: 24px 18px; }
  .last-checked { display: none; }
  .server-name-block { padding: 30px 0 26px; }
  .server-name-block h3 { font-size: 31px; }
  .server-facts { grid-template-columns: 1fr; }
  .overview-actions .button { padding: 0 15px; }
  .players-head { min-height: 90px; padding: 22px 18px; }
  .player-table th, .player-table td { padding: 0 10px; }
  .player-table th:nth-child(3), .player-table td:nth-child(3) { width: 64px; }
  .player-table th:nth-child(4), .player-table td:nth-child(4) { width: 75px; }
  .experience { grid-template-columns: 1fr; gap: 70px; padding: 90px 0 105px; }
  .community-grid { gap: 60px; padding-top: 90px; padding-bottom: 100px; }
  .community-logo-stage { width: calc(100% + 20px); margin: 18px 0 -8px -10px; }
  .community-story h2 { font-size: clamp(48px, 15vw, 68px); }
  .discord-widget-head, .discord-widget-foot { padding-left: 16px; padding-right: 16px; }
  .discord-widget-frame { padding: 12px; }
  .discord-widget-foot span { display: none; }
  .rules-inner { grid-template-columns: 1fr; gap: 55px; padding-top: 90px; padding-bottom: 90px; }
  .rules-title-wrap h2 { font-size: clamp(52px, 16vw, 74px); }
  .join-section { padding: 110px 0 100px; }
  .join-actions { flex-direction: column; width: min(300px, 100%); margin: 0 auto; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .footer-links { flex-wrap: wrap; justify-content: start; }
  .site-footer > small { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
