:root {
  --sky: #64d2ff;
  --sky-deep: #168eea;
  --sun: #ffd857;
  --cloud: #ffffff;
  --grass: #41c95f;
  --grass-dark: #169747;
  --dirt: #9a5a34;
  --dirt-dark: #5f3423;
  --stone: #7a8497;
  --ink: #172033;
  --ink-soft: #3b4561;
  --paper: #fff8e0;
  --cream: #fff3bd;
  --redstone: #ff5151;
  --emerald: #15c98f;
  --lapis: #2f61ff;
  --gold: #ffbf2e;
  --shadow: rgba(19, 25, 45, 0.26);
  --pixel: 4px;
  --radius: 8px;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--sky);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(100, 210, 255, 0.92) 0%, rgba(161, 232, 255, 0.8) 42%, #a2e579 42%, #6bd04f 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.sky-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 8px 8px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 248, 224, 0.74);
  border-bottom: 4px solid rgba(23, 32, 51, 0.12);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.6rem, 1.4vw, 0.8rem);
  line-height: 1.4;
}

.brand-cube {
  width: 22px;
  height: 22px;
  image-rendering: pixelated;
  background:
    linear-gradient(135deg, transparent 0 50%, rgba(0, 0, 0, 0.16) 50%),
    linear-gradient(45deg, var(--emerald), var(--grass));
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 18px);
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.main-nav a {
  padding: 6px 8px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--redstone);
  outline: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  padding: 112px clamp(18px, 5vw, 72px) 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -20px;
  height: min(28vh, 230px);
  background:
    linear-gradient(90deg, transparent 0 4px, rgba(255, 255, 255, 0.18) 4px 8px) 0 0 / 32px 32px,
    linear-gradient(180deg, var(--grass) 0 38%, var(--dirt) 38% 70%, var(--dirt-dark) 70% 100%);
  border-top: 8px solid #8bf062;
  box-shadow: 0 -10px 0 rgba(23, 32, 51, 0.12) inset;
  transform: skewY(-2deg);
  z-index: -1;
}

.hero-world {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sun {
  position: absolute;
  top: 108px;
  right: 12vw;
  width: clamp(80px, 12vw, 132px);
  aspect-ratio: 1;
  background: var(--sun);
  border: 6px solid var(--ink);
  box-shadow:
    10px 10px 0 rgba(23, 32, 51, 0.2),
    0 0 0 14px rgba(255, 216, 87, 0.28),
    0 0 0 30px rgba(255, 216, 87, 0.12);
  image-rendering: pixelated;
}

.cloud {
  position: absolute;
  height: 34px;
  background: var(--cloud);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(23, 32, 51, 0.15);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border: inherit;
}

.cloud::before {
  width: 38px;
  height: 30px;
  left: 18px;
  bottom: 22px;
}

.cloud::after {
  width: 42px;
  height: 38px;
  right: 22px;
  bottom: 20px;
}

.cloud-one {
  width: 154px;
  top: 22vh;
  left: 8vw;
  animation: cloud-drift 18s linear infinite alternate;
}

.cloud-two {
  width: 118px;
  top: 34vh;
  right: 31vw;
  transform: scale(0.8);
  animation: cloud-drift 22s linear infinite alternate-reverse;
}

.floating-island {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 0;
  filter: drop-shadow(12px 14px 0 rgba(23, 32, 51, 0.18));
}

.floating-island span {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(180deg, var(--grass) 0 34%, var(--dirt) 34% 100%);
  border: 3px solid var(--ink);
}

.island-left {
  top: 41vh;
  left: 7vw;
  rotate: -3deg;
}

.island-right {
  top: 28vh;
  right: 4vw;
  rotate: 4deg;
}

.hero-copy {
  align-self: center;
  padding-bottom: clamp(150px, 19vh, 250px);
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.62rem, 1.4vw, 0.82rem);
  line-height: 1.8;
  color: #ffffff;
  text-shadow: 3px 3px 0 var(--ink);
}

.eyebrow.dark {
  color: var(--redstone);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
}

.block-title {
  display: grid;
  gap: 12px;
  margin: 0;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(3.2rem, 10.5vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff0a8;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 #ff9d22,
    8px 8px 0 #e85b2f,
    12px 12px 0 #aa3b28,
    16px 16px 0 var(--ink),
    22px 25px 0 rgba(23, 32, 51, 0.2);
}

.block-title span {
  display: block;
  width: min-content;
  padding: 10px 0;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, 0.35) 10% 14%, transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 58%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-line {
  width: min(650px, 100%);
  margin: 32px 0 0;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 248, 224, 0.86);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(23, 32, 51, 0.2);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.8;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.pixel-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pixel-button.primary {
  background: var(--gold);
}

.pixel-button:hover,
.pixel-button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
  outline: 0;
}

.voxel-stage {
  position: relative;
  align-self: end;
  min-height: 520px;
  margin-bottom: 40px;
}

.path-block,
.terrain,
.sign-board,
.avatar,
.poster-tile {
  position: absolute;
}

.poster-tile {
  top: 40px;
  right: 8%;
  width: min(260px, 34vw);
  aspect-ratio: 1200 / 630;
  padding: 8px;
  background: var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 9px 9px 0 rgba(23, 32, 51, 0.24);
  rotate: 3deg;
}

.poster-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  border: 3px solid rgba(23, 32, 51, 0.28);
}

.path-block {
  width: 84px;
  height: 56px;
  background: linear-gradient(135deg, #d8c38b, #ad8b55);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(23, 32, 51, 0.22);
  transform: skewY(-13deg) rotate(-1deg);
}

.path-a {
  left: 12%;
  bottom: 72px;
}

.path-b {
  left: 35%;
  bottom: 124px;
}

.path-c {
  left: 58%;
  bottom: 184px;
}

.sign-board {
  right: 4%;
  bottom: 284px;
  width: 190px;
  padding: 14px;
  background: #d78b41;
  border: 5px solid var(--ink);
  box-shadow: 9px 9px 0 rgba(23, 32, 51, 0.22);
  rotate: 3deg;
}

.sign-board::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 18px;
  height: 82px;
  background: #7a472a;
  border: 4px solid var(--ink);
  transform: translateX(-50%);
  z-index: -1;
}

.sign-board span,
.sign-board strong {
  display: block;
}

.sign-board span {
  font-family: "Press Start 2P", monospace;
  font-size: 0.55rem;
  line-height: 1.5;
}

.sign-board strong {
  margin-top: 6px;
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: 1.45rem;
}

.avatar {
  left: 44%;
  bottom: 218px;
  width: 78px;
  height: 152px;
  filter: drop-shadow(8px 10px 0 rgba(23, 32, 51, 0.22));
  animation: avatar-bob 2.4s ease-in-out infinite;
}

.avatar span {
  position: absolute;
  display: block;
  border: 4px solid var(--ink);
}

.avatar .head {
  left: 14px;
  top: 0;
  width: 50px;
  height: 50px;
  background:
    linear-gradient(90deg, #2a1d18 0 20%, transparent 20% 80%, #2a1d18 80%),
    linear-gradient(#ffd1a3, #ef9a62);
}

.avatar .body {
  left: 6px;
  top: 48px;
  width: 66px;
  height: 62px;
  background:
    linear-gradient(90deg, var(--lapis) 0 24%, #42e2ff 24% 76%, var(--lapis) 76%),
    var(--lapis);
}

.avatar .leg {
  top: 106px;
  width: 28px;
  height: 44px;
  background: #2d4f9f;
}

.avatar .left {
  left: 8px;
}

.avatar .right {
  right: 8px;
}

.terrain {
  right: 0;
  bottom: 0;
  width: min(440px, 92%);
  height: 228px;
  background: var(--dirt);
  border: 6px solid var(--ink);
  box-shadow: 18px 18px 0 rgba(23, 32, 51, 0.22);
  overflow: hidden;
}

.terrain .grass {
  position: absolute;
  inset: 0 0 auto 0;
  height: 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 8px, transparent 8px 28px) 0 0 / 42px 18px,
    linear-gradient(180deg, #82ef62, var(--grass));
}

.dirt,
.ore {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(23, 32, 51, 0.38);
}

.dirt {
  background: #74472f;
}

.dirt-a {
  left: 54px;
  top: 92px;
}

.dirt-b {
  right: 78px;
  top: 142px;
}

.ore {
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.62) 42% 54%, transparent 54%),
    var(--emerald);
  box-shadow: 0 0 18px rgba(21, 201, 143, 0.72);
}

.ore-a {
  left: 168px;
  top: 118px;
}

.ore-b {
  right: 162px;
  top: 84px;
  background-color: var(--redstone);
  box-shadow: 0 0 18px rgba(255, 81, 81, 0.72);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
  background: var(--paper);
}

.status-strip div {
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 14px 10px;
  text-align: center;
  border-right: 4px solid var(--ink);
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

.status-strip div:last-child {
  border-right: 0;
}

.stat-number {
  font-family: "Press Start 2P", monospace;
  font-size: 0.72rem;
  color: var(--redstone);
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
  background: #f9f0cd;
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading h2,
.systems-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.systems-copy h2 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.section-heading p,
.systems-copy p,
.contact-copy p {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.9;
  color: var(--ink-soft);
}

.map-section {
  background:
    linear-gradient(rgba(255, 248, 224, 0.88), rgba(255, 248, 224, 0.88)),
    linear-gradient(90deg, rgba(23, 32, 51, 0.08) 4px, transparent 4px) 0 0 / 48px 48px,
    linear-gradient(rgba(23, 32, 51, 0.08) 4px, transparent 4px) 0 0 / 48px 48px,
    #ffe88d;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.zone,
.work-item {
  border: 5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.zone {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: var(--paper);
}

.zone:hover,
.work-item:hover,
.work-item:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--ink);
  outline: 0;
}

.zone h3,
.work-item h3 {
  margin: 16px 0 8px;
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  line-height: 1.6;
}

.zone p,
.work-item p {
  margin: 0;
  line-height: 1.8;
  font-size: 0.98rem;
}

.zone-sky {
  background: linear-gradient(180deg, #8ce7ff 0 42%, var(--paper) 42%);
}

.zone-grass {
  background: linear-gradient(180deg, #b9f073 0 42%, var(--paper) 42%);
}

.zone-ore {
  background: linear-gradient(180deg, #8a93a8 0 42%, var(--paper) 42%);
}

.zone-redstone {
  background: linear-gradient(180deg, #ff826d 0 42%, var(--paper) 42%);
}

.zone-icon {
  position: relative;
  width: 90px;
  height: 90px;
  align-self: flex-start;
  margin-top: 8px;
  border: 5px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(23, 32, 51, 0.25);
}

.zone-icon.terminal {
  background:
    linear-gradient(90deg, #1a2339 0 20%, transparent 20%),
    repeating-linear-gradient(180deg, #39ff90 0 8px, transparent 8px 18px),
    #111827;
}

.zone-icon.notebook {
  background:
    linear-gradient(90deg, #ff5151 0 22%, transparent 22%),
    repeating-linear-gradient(180deg, transparent 0 14px, rgba(23, 32, 51, 0.24) 14px 18px),
    #fff7d7;
}

.zone-icon.ore {
  background:
    linear-gradient(135deg, transparent 0 40%, #26ffc1 40% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 30%, #ffdf5f 30% 41%, transparent 41%),
    #7a8497;
}

.zone-icon.circuit {
  background:
    linear-gradient(90deg, transparent 0 38px, var(--redstone) 38px 48px, transparent 48px),
    linear-gradient(180deg, transparent 0 38px, var(--redstone) 38px 48px, transparent 48px),
    #312642;
}

.work-section {
  background:
    linear-gradient(180deg, #324053 0, #1b2434 100%);
  color: var(--paper);
}

.work-section .section-heading p {
  color: #dce9ff;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-item {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 216, 87, 0.12), transparent 45%),
    #fff8e0;
  color: var(--ink);
}

.work-code {
  width: fit-content;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--gold);
  font-family: "Press Start 2P", monospace;
  font-size: 0.58rem;
  line-height: 1.4;
}

.systems-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent),
    #b6f1ff;
}

.craft-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 12px;
  padding: 18px;
  background: #6f442b;
  border: 6px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(23, 32, 51, 0.25);
}

.slot {
  min-height: 102px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 5px solid var(--ink);
  background: #d49457;
  box-shadow: inset 6px 6px 0 rgba(255, 255, 255, 0.22);
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  text-align: center;
}

.slot.filled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0 34%, transparent 34%),
    #ffd36c;
}

.slot.core {
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(255, 255, 255, 0.24) 38% 62%, transparent 62%),
    var(--redstone);
  font-family: "Press Start 2P", monospace;
  font-size: clamp(0.78rem, 1.8vw, 1.1rem);
}

.contact-section {
  position: relative;
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background:
    radial-gradient(circle at 25% 45%, rgba(255, 81, 81, 0.45), transparent 28%),
    radial-gradient(circle at 75% 30%, rgba(47, 97, 255, 0.4), transparent 30%),
    #161b2d;
  overflow: hidden;
}

.portal-frame {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 0.72;
  margin-inline: auto;
  border: 18px solid #262c4b;
  box-shadow:
    0 0 0 8px var(--ink),
    0 0 36px rgba(255, 81, 81, 0.55),
    14px 14px 0 rgba(0, 0, 0, 0.34);
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0 12px, transparent 12px 28px),
    linear-gradient(135deg, #ff5151, #ffd857 42%, #2f61ff);
  animation: portal-pulse 3s steps(3) infinite;
}

.portal-frame span {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--gold);
  border: 5px solid var(--ink);
}

.portal-frame span:nth-child(1) {
  left: -36px;
  top: 12%;
}

.portal-frame span:nth-child(2) {
  right: -36px;
  top: 28%;
  background: var(--emerald);
}

.portal-frame span:nth-child(3) {
  left: -36px;
  bottom: 24%;
  background: var(--lapis);
}

.portal-frame span:nth-child(4) {
  right: -36px;
  bottom: 12%;
}

.contact-copy p {
  color: #e5edff;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.domain-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.38);
  font-family: "Press Start 2P", "Noto Sans SC", monospace;
  font-size: clamp(0.58rem, 1vw, 0.72rem);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.domain-grid a:hover,
.domain-grid a:focus-visible {
  background: var(--gold);
  outline: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
  font-family: "ZCOOL QingKe HuangYou", "Noto Sans SC", sans-serif;
  font-size: 1.1rem;
}

.site-footer a {
  color: var(--gold);
}

@keyframes cloud-drift {
  from {
    translate: 0 0;
  }
  to {
    translate: 28px -8px;
  }
}

@keyframes avatar-bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes portal-pulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.35) brightness(1.08);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .voxel-stage {
    min-height: 360px;
    margin-bottom: 96px;
  }

  .map-grid,
  .work-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .portal-frame {
    width: min(320px, 72vw);
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding: 148px 16px 0;
  }

  .block-title {
    font-size: clamp(2.55rem, 15vw, 4.5rem);
    text-shadow:
      3px 3px 0 #ff9d22,
      6px 6px 0 #e85b2f,
      9px 9px 0 #aa3b28,
      12px 12px 0 var(--ink),
      16px 18px 0 rgba(23, 32, 51, 0.2);
  }

  .hero-line {
    margin-top: 22px;
    padding: 14px;
    font-size: 0.98rem;
  }

  .pixel-button {
    width: 100%;
  }

  .sun {
    top: 160px;
    right: 8vw;
  }

  .cloud-one,
  .cloud-two,
  .floating-island,
  .poster-tile {
    display: none;
  }

  .voxel-stage {
    min-height: 380px;
    margin-bottom: 72px;
  }

  .terrain {
    width: 100%;
  }

  .avatar {
    left: 18%;
  }

  .sign-board {
    right: 2%;
    width: 164px;
  }

  .status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-strip div:nth-child(2) {
    border-right: 0;
  }

  .status-strip div:nth-child(-n + 2) {
    border-bottom: 4px solid var(--ink);
  }

  .map-grid,
  .work-list,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .zone,
  .work-item {
    min-height: 230px;
  }

  .craft-table {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .slot {
    min-height: 82px;
    padding: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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