:root {
  --bg: #050b17;
  --bg-soft: #0a1324;
  --surface: rgba(12, 23, 42, 0.82);
  --surface-strong: #0d1729;
  --line: rgba(126, 164, 255, 0.16);
  --text: #f6f8ff;
  --muted: #9aa7bd;
  --blue: #2f7df6;
  --cyan: #46d8ff;
  --purple: #8c55ff;
  --green: #71e5a0;
  --danger: #ff6b74;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 10%, rgba(47, 125, 246, 0.13), transparent 30rem),
    radial-gradient(circle at 85% 28%, rgba(140, 85, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.ambient {
  position: fixed;
  inset: auto;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(95px);
  pointer-events: none;
  opacity: 0.18;
  z-index: -1;
}
.ambient-one { top: 8rem; left: -9rem; background: var(--blue); }
.ambient-two { top: 38rem; right: -10rem; background: var(--purple); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem;
  padding: 0.75rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.topbar.scrolled {
  background: rgba(5, 11, 23, .82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.nav { display: flex; justify-content: center; gap: .35rem; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: .75rem 1rem;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 0;
  font-size: 1.5rem;
}
.player-chip {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(7,14,29,.82);
  border-radius: 15px;
  min-width: 162px;
  padding: .45rem .65rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, transform .2s, background .2s;
}
.player-chip:hover { transform: translateY(-1px); border-color: rgba(70,216,255,.4); background: #0b162b; }
.player-avatar-wrap { width: 38px; height: 38px; border-radius: 10px; overflow: hidden; background: #0b1323; flex: 0 0 auto; }
.player-avatar-wrap img { width: 100%; height: 100%; image-rendering: pixelated; }
.guest-avatar {
  width: 100%; height: 100%; display: block;
  background:
    linear-gradient(90deg, #d400ff 0 48%, transparent 48% 52%, #8c00ff 52%),
    linear-gradient(#d400ff 0 48%, transparent 48% 52%, #8c00ff 52%);
}
.player-copy { display: flex; flex-direction: column; min-width: 0; }
.player-copy strong { overflow: hidden; text-overflow: ellipsis; max-width: 110px; white-space: nowrap; font-size: .92rem; }
.player-copy small { color: var(--cyan); text-transform: uppercase; font-size: .65rem; font-weight: 800; letter-spacing: .06em; }

main { overflow: clip; }
.section { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: 6.5rem 0; scroll-margin-top: 78px; }
.hero { min-height: 100vh; display: grid; align-items: center; padding-top: 8.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .72rem;
}
.eyebrow::before, .section-kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 99px; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: .92;
  letter-spacing: -.065em;
  margin: 1.2rem 0 1.5rem;
  text-wrap: balance;
}
.hero-copy > p { max-width: 670px; color: var(--muted); font-size: clamp(1.03rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: .8rem; margin-top: 2rem; }
.server-copy {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "label action" "ip action";
  gap: 0 .8rem;
  min-width: 245px;
  border: 1px solid var(--line);
  background: rgba(10,20,38,.9);
  color: var(--text);
  border-radius: 15px;
  padding: .75rem 1rem;
  text-align: left;
  cursor: pointer;
}
.server-copy span { grid-area: label; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.server-copy strong { grid-area: ip; font-size: .95rem; }
.server-copy em { grid-area: action; align-self: center; font-style: normal; color: var(--cyan); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.button {
  border: 0;
  border-radius: 14px;
  padding: .95rem 1.25rem;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue), #5c5cff 58%, var(--purple)); box-shadow: 0 14px 34px rgba(47,125,246,.25); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(47,125,246,.36); }
.button-ghost { color: var(--text); border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.hero-metrics { display: flex; gap: 2rem; margin-top: 2.25rem; }
.hero-metrics div { display: flex; flex-direction: column; }
.hero-metrics strong { font-size: 1.45rem; }
.hero-metrics span { color: var(--muted); font-size: .78rem; }
.hero-visual { display: grid; place-items: center; }
.logo-stage {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 520px);
  display: grid;
  place-items: center;
  border-radius: 35% 35% 26% 26%;
  background: radial-gradient(circle, rgba(70,216,255,.12), rgba(47,125,246,.04) 54%, transparent 72%);
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(70,216,255,.2);
  border-radius: 28%;
  transform: rotate(9deg);
  box-shadow: inset 0 0 70px rgba(47,125,246,.08), 0 0 60px rgba(47,125,246,.12);
}
.logo-stage img { position: relative; width: 76%; filter: drop-shadow(0 34px 50px rgba(0,0,0,.38)); animation: float 5s ease-in-out infinite; }
.stage-ring { position: absolute; width: 78%; height: 20%; bottom: 14%; border-radius: 50%; border: 1px solid rgba(70,216,255,.3); box-shadow: 0 0 40px rgba(70,216,255,.16); transform: rotate(-7deg); }
.stage-label { position: absolute; bottom: 3%; padding: .6rem 1.2rem; border: 1px solid var(--line); background: rgba(5,11,23,.72); border-radius: 999px; backdrop-filter: blur(10px); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .75rem; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }

.information-section { padding-top: 1rem; }
.information-card {
  padding: clamp(1.4rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(12,23,42,.96), rgba(7,14,29,.84));
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.information-card h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: .7rem 0 .8rem; }
.lead { color: #dce4f4; max-width: 900px; font-size: 1.03rem; }
.info-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 1.8rem; }
.info-columns > div { padding: 1.25rem; border: 1px solid rgba(126,164,255,.11); background: rgba(255,255,255,.018); border-radius: 17px; }
.info-columns h3 { margin-bottom: .5rem; font-size: 1rem; }
.info-columns p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.refund-panel { grid-column: 1 / -1; border-left: 3px solid var(--purple) !important; }
.disclaimer { display: block; color: #748198; margin-top: 1.25rem; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.2rem; }
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; margin: .55rem 0 0; }
.section-heading > p { max-width: 490px; color: var(--muted); margin-bottom: .2rem; }
.feature-grid, .rank-grid, .staff-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.feature-card {
  min-height: 230px;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(14,27,49,.88), rgba(8,16,31,.84));
  transition: transform .22s, border-color .22s, background .22s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(70,216,255,.34); background: linear-gradient(160deg, rgba(17,34,61,.94), rgba(8,16,31,.9)); }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; color: var(--cyan); background: rgba(70,216,255,.08); border: 1px solid rgba(70,216,255,.14); font-size: 1.35rem; }
.feature-card h3 { margin: 1.6rem 0 .5rem; font-size: 1.15rem; }
.feature-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.store-section { width: min(1280px, calc(100% - 2rem)); }
.rank-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.rank-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(9,18,34,.9);
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.rank-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--rank-color) 55%, transparent); box-shadow: 0 18px 50px color-mix(in srgb, var(--rank-color) 13%, transparent); }
.rank-summary { width: 100%; padding: 0; border: 0; background: transparent; color: var(--text); cursor: pointer; text-align: left; }
.rank-image { aspect-ratio: 1; width: 100%; object-fit: cover; background: #08111f; }
.rank-copy { position: relative; padding: 1rem 3.4rem 1rem 1.1rem; }
.rank-color-dot { position: absolute; top: 1.3rem; right: 1.15rem; width: 12px; height: 12px; border-radius: 50%; background: var(--rank-color); box-shadow: 0 0 16px var(--rank-color); }
.rank-name { margin: 0; font-size: 1.25rem; color: var(--rank-color); }
.rank-price { margin: .25rem 0 0; color: var(--muted); font-size: .82rem; }
.rank-chevron { position: absolute; right: 1rem; bottom: 1rem; color: var(--muted); transition: transform .2s; }
.rank-summary { position: relative; }
.rank-summary[aria-expanded="true"] .rank-chevron { transform: rotate(180deg); }
.rank-details { padding: 0 1.1rem 1.1rem; border-top: 1px solid var(--line); }
.rank-details h4 { margin: 1rem 0 .5rem; }
.rank-perks { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--muted); font-size: .88rem; }
.button-rank { width: 100%; min-height: 44px; padding: .7rem 1rem; background: color-mix(in srgb, var(--rank-color) 16%, #0d1729); color: var(--rank-color); border: 1px solid color-mix(in srgb, var(--rank-color) 35%, transparent); }
.button-rank[aria-disabled="true"] { pointer-events: none; opacity: .75; }

.staff-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.staff-card { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.staff-avatar { width: 72px; height: 72px; flex: 0 0 auto; border-radius: 16px; object-fit: cover; image-rendering: pixelated; background: #07101f; border: 1px solid rgba(255,255,255,.08); }
.staff-card h3 { margin: 0; font-size: 1.1rem; }
.staff-card p { margin: .2rem 0 0; color: var(--muted); font-size: .85rem; }
.staff-role { display: inline-flex; margin-top: .55rem; padding: .25rem .55rem; border-radius: 999px; font-size: .68rem; font-weight: 900; color: var(--staff-color); background: color-mix(in srgb, var(--staff-color) 12%, transparent); border: 1px solid color-mix(in srgb, var(--staff-color) 25%, transparent); }

.rule-tabs { display: inline-flex; padding: .3rem; gap: .3rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(8,16,31,.72); margin-bottom: 1.2rem; }
.rule-tab { border: 0; background: transparent; color: var(--muted); border-radius: 10px; padding: .65rem 1rem; font-weight: 800; cursor: pointer; }
.rule-tab.active { color: white; background: linear-gradient(135deg, rgba(47,125,246,.92), rgba(140,85,255,.85)); }
.rule-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.rule-item { padding: 1rem 1.1rem; border-radius: 15px; border: 1px solid var(--line); background: rgba(10,20,38,.72); }
.rule-item h3 { font-size: .95rem; margin: 0 0 .35rem; }
.rule-item p { margin: 0; color: var(--muted); font-size: .84rem; }

.join-banner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 2.2rem; margin-bottom: 6rem; border-radius: 24px; border: 1px solid rgba(70,216,255,.2); background: radial-gradient(circle at 20%, rgba(47,125,246,.18), transparent 44%), linear-gradient(135deg, rgba(15,30,54,.95), rgba(9,18,34,.9)); }
.join-banner h2 { font-size: clamp(1.7rem, 4vw, 3rem); margin: .5rem 0 0; }

.footer { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; padding: 2rem 0 3rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; }
.footer-brand { display: flex; gap: .8rem; align-items: center; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand span { color: var(--muted); font-size: .75rem; }
.footer-links { justify-self: end; display: flex; gap: 1rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .86rem; }
.footer-links a:hover { color: var(--text); }
.footer > p { grid-column: 1/-1; color: #6f7d94; font-size: .75rem; margin: 0; }

.support-launcher {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border: 1px solid rgba(70,216,255,.25);
  color: var(--text);
  background: rgba(7,14,29,.9);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: .65rem .95rem .65rem .65rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  cursor: pointer;
}
.support-launcher span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--purple)); font-weight: 900; }
.support-launcher strong { font-size: .8rem; }

.modal {
  width: min(720px, calc(100% - 1.25rem));
  color: var(--text);
  background: #07101f;
  border: 1px solid rgba(126,164,255,.22);
  border-radius: 22px;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  box-shadow: 0 40px 100px rgba(0,0,0,.58);
}
.modal::backdrop { background: rgba(0,4,12,.76); backdrop-filter: blur(7px); }
.modal-close { position: absolute; right: .9rem; top: .8rem; width: 34px; height: 34px; border-radius: 10px; border: 0; color: var(--muted); background: rgba(255,255,255,.05); cursor: pointer; font-size: 1.25rem; }
.modal-icon { color: var(--purple); font-size: 1.2rem; }
.modal h2 { font-size: clamp(2rem, 5vw, 3rem); margin: .45rem 0 .4rem; }
.modal > p { color: var(--muted); }
.support-block { margin-top: 1.5rem; }
.support-block h3 { margin-bottom: .35rem; }
.support-block p { color: var(--muted); }
.support-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.button-discord { background: #5865f2; color: white; }
.button-email { background: linear-gradient(135deg, #7c3aed, #a855f7); color: white; }
.login-modal { width: min(900px, calc(100% - 1.25rem)); padding: 0; overflow: hidden; }
.login-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 470px; }
.login-art { display: grid; place-items: center; align-content: center; gap: 1rem; background: radial-gradient(circle, rgba(70,216,255,.16), transparent 56%), #050b17; padding: 2rem; }
.login-art img { width: min(82%, 300px); }
.login-art span { color: var(--muted); text-transform: uppercase; font-size: .7rem; letter-spacing: .15em; font-weight: 800; }
.login-form { padding: clamp(2rem, 6vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.login-form h2 { margin: .5rem 0; }
.login-form p { color: var(--muted); font-size: .88rem; }
.login-form label { font-weight: 800; margin: 1rem 0 .45rem; }
.login-form input { width: 100%; border: 1px solid rgba(126,164,255,.22); color: var(--text); background: #0b1628; border-radius: 13px; padding: .9rem 1rem; outline: none; margin-bottom: .8rem; }
.login-form input:focus { border-color: rgba(70,216,255,.55); box-shadow: 0 0 0 3px rgba(70,216,255,.08); }
.text-button { border: 0; background: transparent; color: var(--muted); padding: .7rem; cursor: pointer; }
.text-button:hover { color: var(--danger); }
.form-message { min-height: 1.4em; margin: .6rem 0 0 !important; }

.empty-state { grid-column: 1/-1; padding: 2rem; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: 18px; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }


.news-section { position: relative; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, rgba(15,29,52,.96), rgba(8,16,31,.94)); box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.news-image-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #07101f; }
.news-image { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.news-card:hover .news-image { transform: scale(1.045); }
.news-category { position: absolute; left: .8rem; bottom: .8rem; padding: .35rem .6rem; border-radius: 999px; background: rgba(5,11,23,.82); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.news-body { padding: 1.15rem; }
.news-date { color: var(--cyan); font-size: .72rem; font-weight: 800; }
.news-headline { margin: .45rem 0 .45rem; font-size: 1.15rem; }
.news-summary { margin: 0; color: var(--muted); font-size: .86rem; }
.news-link { display: inline-flex; gap: .4rem; margin-top: 1rem; color: var(--cyan); text-decoration: none; font-weight: 850; font-size: .82rem; }
.news-link:hover { color: white; }

.support-page-section { padding-top: 2rem; }
.support-page-card { padding: clamp(1.4rem, 4vw, 2.4rem); border-radius: 24px; border: 1px solid rgba(126,164,255,.2); background: radial-gradient(circle at 10% 10%, rgba(70,216,255,.12), transparent 38%), linear-gradient(135deg, rgba(13,26,48,.96), rgba(8,16,31,.94)); }
.support-page-heading { margin-bottom: 1.4rem; }
.support-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.support-page-grid article { padding: 1.25rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(6,13,26,.62); }
.support-page-grid h3 { margin: .75rem 0 .4rem; }
.support-page-grid p { color: var(--muted); margin: 0 0 1rem; }
.support-page-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--blue), var(--purple)); font-weight: 900; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: auto auto 1fr auto; gap: .6rem; }
  .menu-toggle { display: block; order: 2; }
  .nav {
    position: fixed;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    padding: .7rem;
    background: rgba(7,14,29,.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .player-chip { grid-column: 4; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-metrics { justify-content: center; }
  .hero-visual { margin-top: -2rem; }
  .logo-stage { width: min(78vw, 470px); }
  .feature-grid, .rank-grid, .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .staff-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .topbar { padding: .7rem .8rem; }
  .brand span { display: none; }
  .player-chip { min-width: 0; padding-right: .5rem; }
  .player-copy small { display: none; }
  .player-copy strong { max-width: 82px; }
  .section { padding: 4.7rem 0; }
  .hero { padding-top: 7.5rem; }
  h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions > * { width: 100%; }
  .server-copy { min-width: 0; }
  .hero-metrics { gap: 1rem; justify-content: space-between; }
  .info-columns, .rule-list, .support-actions, .login-layout { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; gap: .7rem; }
  .feature-grid, .rank-grid, .staff-grid, .news-grid, .support-page-grid { grid-template-columns: 1fr; }
  .rank-grid { gap: .85rem; }
  .login-art { display: none; }
  .join-banner { align-items: stretch; flex-direction: column; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; flex-wrap: wrap; }
  .support-launcher strong { display: none; }
  .support-launcher { padding-right: .65rem; }
}

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

/* v1.1 hash-page routing and live-content status */
.page-view[hidden] { display: none !important; }
body[data-page]:not([data-page="home"]) main { min-height: calc(100vh - 180px); padding-top: 74px; }
body[data-page]:not([data-page="home"]) .page-view { min-height: calc(100vh - 180px); }
.nav a.active,
.nav a[aria-current="page"],
.footer-links a.active,
.footer-links a[aria-current="page"] { color: var(--text); background: rgba(70,216,255,.09); }
.live-status {
  position: fixed;
  z-index: 250;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 2rem));
  padding: .72rem 1rem;
  border: 1px solid rgba(255,105,105,.4);
  border-radius: 12px;
  color: #ffe4e4;
  background: rgba(70,10,18,.94);
  box-shadow: 0 16px 45px rgba(0,0,0,.32);
  text-align: center;
  font-size: .86rem;
  font-weight: 750;
}
.live-status[hidden] { display: none; }
