:root {
  --bg: #090807;
  --bg-soft: #11100e;
  --panel: rgba(22, 19, 16, .86);
  --panel-strong: #191510;
  --line: rgba(226, 184, 105, .22);
  --gold: #e2b869;
  --gold-light: #f6dda2;
  --copper: #a95c36;
  --blue: #73b6c9;
  --green: #72c89b;
  --red: #d07063;
  --text: #f0eadf;
  --muted: #aaa094;
  --shadow: 0 24px 70px rgba(0,0,0,.52);
  --radius: 20px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(133, 74, 37, .22), transparent 35%),
    linear-gradient(#090807, #0d0b09 55%, #070706);
  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::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hidden { display: none !important; }

#ember-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .045;
  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='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  padding: 10px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(8, 7, 6, .72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s, background .25s;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(8, 7, 6, .9);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 46px; height: 54px; filter: drop-shadow(0 6px 10px rgba(0,0,0,.45)); }
.brand span { display: grid; line-height: 1.08; }
.brand strong { font-family: Georgia, "Times New Roman", serif; color: var(--gold-light); font-size: 1.15rem; letter-spacing: .04em; }
.brand small { margin-top: 5px; color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: .63rem; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 11px;
  color: #c7bfb4;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); background: rgba(226,184,105,.09); }
.main-nav .account-link {
  margin-left: 6px;
  padding-inline: 17px;
  color: #120d07;
  background: linear-gradient(135deg, var(--gold-light), #c98939);
  box-shadow: 0 8px 24px rgba(183, 113, 38, .18);
}
.main-nav .account-link:hover { color: #120d07; transform: translateY(-1px); background: linear-gradient(135deg, #ffe7ac, #dfa44e); }

.nav-toggle { display: none; border: 0; background: transparent; padding: 9px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--gold-light); transition: .2s; }

main { min-height: 70vh; }
.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.narrow { width: min(850px, calc(100% - 36px)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section.compact { padding: 60px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 34px; }
.section-head.center { text-align: center; display: block; max-width: 760px; margin-inline: auto; margin-bottom: 42px; }
.eyebrow {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .24em;
  margin: 0 0 10px;
}
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(3.2rem, 9vw, 7.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); letter-spacing: -.03em; }
h3 { font-size: 1.45rem; }
.lead { color: #c8bfb3; font-size: clamp(1rem, 2vw, 1.22rem); max-width: 730px; }
.muted { color: var(--muted); }
.gold { color: var(--gold-light); }

.button, .button-ghost, .button-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: .03em;
  transition: .22s ease;
}
.button {
  color: #150e07;
  background: linear-gradient(135deg, #f8dea0, #ca8736);
  box-shadow: 0 12px 36px rgba(178, 105, 31, .26);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(178,105,31,.34); }
.button-ghost { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: rgba(226,184,105,.55); background: rgba(226,184,105,.08); transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 16px; font-size: .84rem; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(to bottom, rgba(7,6,5,.18), #090807 96%),
    url("../img/scene-castle.svg") center 43% / cover no-repeat;
  filter: saturate(.88);
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 35%, transparent 0 25%, rgba(5,4,3,.32) 60%, #090807 92%),
    linear-gradient(90deg, rgba(6,5,4,.6), transparent 45%, rgba(6,5,4,.36));
}
.hero-content {
  width: min(1120px, calc(100% - 36px));
  padding: 92px 0 120px;
  text-align: center;
}
.hero-crest { width: 96px; margin: 0 auto 14px; filter: drop-shadow(0 16px 28px rgba(0,0,0,.55)); animation: float 5s ease-in-out infinite; }
.hero-kicker { display: inline-flex; gap: 9px; align-items: center; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(10,9,8,.42); backdrop-filter: blur(8px); text-transform: uppercase; letter-spacing: .18em; font-size: .67rem; color: #e0d6c8; }
.hero h1 { color: #f7ead1; text-shadow: 0 8px 35px rgba(0,0,0,.8); margin-top: 18px; }
.hero h1 span { display: block; color: var(--gold); }
.hero .lead { margin: 22px auto 0; text-shadow: 0 4px 16px rgba(0,0,0,.8); }
.hero-actions { margin-top: 30px; justify-content: center; }
.realm-status {
  width: min(670px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  text-align: left;
  padding: 16px 18px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9,8,7,.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.status-main { display: flex; align-items: center; gap: 14px; min-width: 0; }
.status-orb { width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); flex: 0 0 auto; }
.status-orb.offline { background: var(--red); box-shadow: 0 0 18px var(--red); }
.status-copy { min-width: 0; }
.status-copy strong { display: block; }
.status-copy small { color: var(--muted); display: block; overflow: hidden; text-overflow: ellipsis; }
.copy-ip { border: 0; min-height: 42px; padding: 0 16px; border-radius: 999px; color: var(--gold-light); background: rgba(226,184,105,.1); font-weight: 900; }
.scroll-mark { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.27); border-radius: 20px; }
.scroll-mark::after { content: ""; position: absolute; left: 50%; top: 9px; width: 4px; height: 8px; border-radius: 99px; background: var(--gold-light); transform: translateX(-50%); animation: scrollDot 1.8s infinite; }

.stat-strip { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: Georgia, serif; color: var(--gold-light); font-size: 1.8rem; }
.stat span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(28,24,19,.9), rgba(14,12,10,.84));
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(226,184,105,.1), transparent 36%);
}
.card:hover { transform: translateY(-5px); border-color: rgba(226,184,105,.45); }
.card-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 18px; color: var(--gold-light); background: rgba(226,184,105,.1); border: 1px solid rgba(226,184,105,.22); font-size: 1.35rem; }
.card p { color: var(--muted); margin-bottom: 0; }

.scene-card {
  min-height: 380px;
  display: flex;
  align-items: end;
  padding: 0;
  background-size: cover;
  background-position: center;
}
.scene-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 28%, rgba(6,5,5,.94)); }
.scene-card > div { position: relative; z-index: 1; padding: 28px; }
.scene-card p { color: #c9c0b4; margin: 8px 0 0; }

.lore-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.lore-art { position: relative; min-height: 500px; border-radius: 30px; background: url("../img/scene-ruins.svg") center/cover; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.lore-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent, rgba(4,3,3,.56)); }
.lore-seal { position: absolute; z-index: 1; right: 24px; bottom: 24px; width: 110px; padding: 18px; background: rgba(9,8,7,.78); border: 1px solid var(--line); border-radius: 20px; backdrop-filter: blur(12px); }
.lore-copy blockquote { margin: 28px 0; padding: 22px 24px; border-left: 3px solid var(--gold); background: rgba(226,184,105,.05); color: #d9cebe; font-family: Georgia, serif; font-size: 1.18rem; }

.news-list { display: grid; gap: 16px; }
.news-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 22px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); transition: .2s; }
.news-row:hover { border-color: rgba(226,184,105,.42); transform: translateX(4px); }
.news-row time { color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.news-row p { margin: 5px 0 0; color: var(--muted); }
.news-row .arrow { color: var(--gold-light); font-size: 1.4rem; }

.page-hero {
  padding: 105px 0 72px;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 75% 15%, rgba(115,182,201,.14), transparent 28%), radial-gradient(circle at 20% 0%, rgba(226,184,105,.16), transparent 32%); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); color: #f3e8d7; }
.page-hero .lead { margin-top: 16px; }

.rank-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rank-card { min-height: 330px; display: flex; flex-direction: column; }
.rank-card .rank-mark { width: 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; margin-bottom: 22px; font-family: Georgia, serif; font-size: 1.65rem; color: #0c0a08; background: var(--rank-color, var(--gold)); box-shadow: 0 0 30px color-mix(in srgb, var(--rank-color, var(--gold)) 35%, transparent); }
.rank-card ul { color: var(--muted); padding-left: 18px; margin: 16px 0 22px; }
.rank-card .button-small { margin-top: auto; align-self: flex-start; border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--text); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.015); }
.realm-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.realm-table th, .realm-table td { padding: 17px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.realm-table th { color: var(--gold); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.realm-table tr:last-child td { border-bottom: 0; }
.realm-table tbody tr:hover { background: rgba(226,184,105,.04); }
.player-cell { display: flex; align-items: center; gap: 12px; }
.player-avatar { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #385d66, #1a2630); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); font-weight: 900; }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tab { border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--muted); padding: 10px 15px; border-radius: 999px; font-weight: 800; }
.tab.active, .tab:hover { color: var(--gold-light); border-color: rgba(226,184,105,.48); background: rgba(226,184,105,.08); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { grid-column: span 6; min-height: 360px; position: relative; border-radius: 22px; border: 1px solid var(--line); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.gallery-item.wide { grid-column: span 12; min-height: 470px; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(5,4,4,.9)); }
.gallery-item > div { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; }
.gallery-item p { color: var(--muted); margin: 6px 0 0; }

.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.staff-card { text-align: center; padding-top: 32px; }
.staff-head { width: 94px; height: 94px; margin: 0 auto 18px; border-radius: 24px; display: grid; place-items: center; color: var(--gold-light); background: linear-gradient(145deg, #24363d, #11181b); border: 1px solid rgba(115,182,201,.28); font-size: 1.8rem; font-weight: 900; box-shadow: 0 16px 40px rgba(0,0,0,.32); }
.role { display: inline-block; margin-top: 9px; color: var(--gold); text-transform: uppercase; font-size: .69rem; letter-spacing: .18em; font-weight: 900; }

.store-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.store-card { display: flex; flex-direction: column; min-height: 430px; }
.store-card.featured { border-color: rgba(226,184,105,.6); transform: translateY(-10px); }
.store-card.featured::after { content: "POPULAR"; position: absolute; right: 18px; top: 18px; padding: 6px 10px; border-radius: 999px; color: #120d07; background: var(--gold-light); font-size: .65rem; font-weight: 1000; letter-spacing: .13em; }
.price { font-family: Georgia, serif; font-size: 2.5rem; color: var(--gold-light); margin: 18px 0 8px; }
.price small { font-family: inherit; font-size: .9rem; color: var(--muted); }
.store-card ul { color: var(--muted); padding-left: 18px; }
.store-card .button { margin-top: auto; }

.wiki-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.wiki-nav { position: sticky; top: 96px; }
.wiki-nav a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--muted); }
.wiki-nav a:hover { color: var(--gold-light); background: rgba(226,184,105,.07); }
.wiki-content article { margin-bottom: 24px; }
.wiki-content article h3 { margin-bottom: 10px; }
.wiki-content article p { color: var(--muted); }

.account-shell { display: grid; grid-template-columns: 330px 1fr; gap: 24px; align-items: start; }
.profile-card { position: sticky; top: 96px; text-align: center; }
.profile-avatar { width: 130px; height: 130px; margin: 0 auto 18px; border-radius: 28px; background: linear-gradient(145deg, #24414b, #101a1d); border: 1px solid rgba(115,182,201,.28); display: grid; place-items: center; font-family: Georgia, serif; font-size: 2.5rem; color: var(--gold-light); box-shadow: 0 20px 45px rgba(0,0,0,.4); }
.profile-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.badge { padding: 7px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--gold-light); background: rgba(226,184,105,.06); font-size: .73rem; font-weight: 900; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.metric { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); }
.metric strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 2rem; }
.metric span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.portal-form { display: grid; gap: 12px; margin-top: 20px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: .82rem; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.26);
  color: var(--text);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: rgba(226,184,105,.62); box-shadow: 0 0 0 3px rgba(226,184,105,.08); }

.callout {
  padding: 24px;
  border: 1px solid rgba(115,182,201,.28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45,81,90,.2), rgba(14,17,18,.5));
}
.callout strong { color: #b8e7f0; }

.cta-band {
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(226,184,105,.17), transparent 30%),
    linear-gradient(135deg, #1b1510, #0d0b09);
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 38px auto 0;
  padding: 42px 0 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  color: var(--muted);
}
.site-footer > div { display: flex; gap: 14px; align-items: center; }
.site-footer img { width: 50px; }
.site-footer strong { color: var(--gold-light); }
.site-footer p { margin: 4px 0 0; }
.site-footer nav { display: flex; align-items: center; gap: 18px; }
.site-footer nav a:hover { color: var(--gold-light); }
.copyright { grid-column: 1 / -1; font-size: .78rem; }

.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(18,15,12,.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: .25s;
}
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes float { 50% { transform: translateY(-8px); } }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 15px); } }

@media (max-width: 1080px) {
  .main-nav a { padding-inline: 8px; font-size: .78rem; }
  .rank-grid, .store-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9,8,7,.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: .2s;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav .account-link { margin: 4px 0 0; text-align: center; }
  .grid-3, .staff-grid { grid-template-columns: 1fr; }
  .lore-block, .account-shell { grid-template-columns: 1fr; }
  .profile-card, .wiki-nav { position: static; }
  .wiki-layout { grid-template-columns: 1fr; }
  .wiki-nav { display: flex; overflow-x: auto; gap: 5px; padding-bottom: 8px; }
  .wiki-nav a { min-width: max-content; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}
@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .site-header { padding-inline: 16px; }
  .brand small { display: none; }
  .hero-content { padding-top: 62px; }
  .realm-status { grid-template-columns: 1fr; text-align: center; }
  .status-main { justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .rank-grid, .store-grid, .grid-4, .dashboard-grid { grid-template-columns: 1fr; }
  .store-card.featured { transform: none; }
  .news-row { grid-template-columns: 1fr; gap: 5px; }
  .news-row .arrow { display: none; }
  .gallery-item, .gallery-item.wide { grid-column: span 12; min-height: 330px; }
  .cta-band { padding: 28px; align-items: flex-start; flex-direction: column; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
