@font-face {
  font-family: "Minecraft Ten";
  src:
    url("./assets/fonts/MinecraftTen.woff2") format("woff2"),
    url("./assets/fonts/MinecraftTen.woff") format("woff"),
    url("./assets/fonts/MinecraftTen.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #171615;
  --bg-elevated: #1f1e1d;
  --bg-panel: #242220;
  --bg-panel-soft: #2d2a28;
  --line: #3a3938;
  --text: #ffffff;
  --muted: #d0d0d0;
  --green: #3c8527;
  --green-light: #6cc349;
  --green-dark: #2a641c;
  --gold: #f1c84b;
  --orange: #df8f2c;
  --stone: #8f8b86;
  --danger: #d95d39;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Archivo", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #121110 0%, #171615 30%, #111111 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.16;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16%),
    radial-gradient(circle at 50% -10%, rgba(108, 195, 73, 0.1), transparent 28%);
  pointer-events: none;
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(180deg, #1b1a19 0%, #161514 100%);
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 14px;
  content: "";
  background: linear-gradient(180deg, var(--green-light) 0%, var(--green) 100%);
  border-bottom: 3px solid var(--green-dark);
}

.topbar,
.hero-content,
.section {
  padding-left: 32px;
  padding-right: 32px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.topbar-logo {
  width: min(100%, 260px);
  height: 56px;
  flex-shrink: 0;
}

.topbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 0;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.3);
}

.asset-frame,
.asset-badge,
.asset-logo,
.asset-hero {
  position: relative;
  overflow: hidden;
}

.asset-frame img,
.asset-badge img,
.asset-logo img,
.asset-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-asset-img].is-missing {
  display: none;
}

.asset-fallback,
.asset-badge-fallback,
.asset-logo-fallback,
.asset-hero-fallback {
  display: none;
}

[data-asset-img].is-missing + .asset-fallback,
[data-asset-img].is-missing + .asset-badge-fallback,
[data-asset-img].is-missing + .asset-logo-fallback,
[data-asset-img].is-missing + .asset-hero-fallback {
  display: flex;
}

.asset-fallback {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, #7fcb51 0 34%, #5d923a 34% 52%, #896741 52% 100%);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.hero h1 {
  font-family: "Minecraft Ten", "Archivo Black", "Arial Black", sans-serif;
  letter-spacing: 0.015em;
}

.brand-text strong {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text span {
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span,
.topbar-links a,
.hero-text,
.section-heading p,
.step-card p,
.launcher-card p,
.feature-list,
.instruction-list,
.faq-card p {
  color: var(--muted);
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar-links a {
  text-decoration: none;
  color: #f3ead2;
  font-size: 0.95rem;
  font-family: "Archivo", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: color 140ms ease, opacity 140ms ease;
}

.topbar-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.topbar-links a:hover {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 42px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #d95a49;
  font-size: 1.84rem;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-badge {
  min-height: 54px;
  min-width: 180px;
  max-width: 320px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #111111;
}

.hero-badge img {
  object-fit: contain;
}

.asset-badge-fallback {
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  color: var(--text);
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow {
  margin: 0;
  color: var(--green-light);
  font-size: 0.8rem;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  white-space: pre-line;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.hero-copy .eyebrow {
  margin-top: 60px;
}

.hero-text {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 0;
  border: 2px solid #000000;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 140ms ease, filter 140ms ease, background 140ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -4px 0 rgba(0, 0, 0, 0.28);
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.button-primary {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  border-color: #1d1d1d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -5px 0 rgba(42, 100, 28, 0.95);
}

.button-secondary {
  background: linear-gradient(180deg, #4f4d4a, #3b3937);
  border-color: #1d1d1d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -5px 0 rgba(28, 27, 26, 0.95);
}

.detail-card,
.step-card,
.launcher-card,
.pack-card,
.instruction-panel,
.faq-card,
.status-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(180deg, #242220 0%, #1d1c1b 100%);
  box-shadow: var(--shadow);
}

.status-grid span,
.detail-card span,
.pack-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-grid strong,
.detail-card strong,
.pack-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.hero-card {
  justify-self: end;
  width: min(100%, 460px);
}

.status-panel {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-top: 4px solid var(--green);
}

.hero-art-panel {
  padding-top: 20px;
}

.hero-art {
  height: 220px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #111111;
}

.asset-hero img {
  object-fit: cover;
}

.asset-hero-fallback {
  position: relative;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, #76c8ff 0%, #b5e6ff 100%);
  background-size: 100% 100%;
}

.asset-hero-fallback::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 64px;
  content: "";
  background:
    linear-gradient(180deg, #7ecb4f 0 16px, #6ca845 16px 24px, transparent 24px),
    repeating-linear-gradient(90deg, #8b613d 0 32px, #7a5334 32px 64px),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(0, 0, 0, 0.12) 31px 32px);
  background-size: 100% 100%, 64px 100%, 100% 32px;
  border-top: 4px solid rgba(0, 0, 0, 0.16);
}

.asset-hero-fallback::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background:
    linear-gradient(#ffffff 0 0) 24px 34px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 40px 34px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 56px 34px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 40px 50px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 234px 30px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 250px 30px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 266px 30px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 282px 30px / 16px 16px no-repeat,
    linear-gradient(#ffffff 0 0) 250px 46px / 16px 16px no-repeat,
    linear-gradient(#ffd861 0 0) 136px 26px / 16px 16px no-repeat,
    linear-gradient(#ffd861 0 0) 152px 26px / 16px 16px no-repeat,
    linear-gradient(#ffd861 0 0) 136px 42px / 16px 16px no-repeat,
    linear-gradient(#ffd861 0 0) 152px 42px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 264px 74px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 232px 90px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 248px 90px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 264px 90px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 280px 90px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 296px 90px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 248px 106px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 264px 106px / 16px 16px no-repeat,
    linear-gradient(#4f9b45 0 0) 280px 106px / 16px 16px no-repeat,
    linear-gradient(#6e4d2f 0 0) 264px 122px / 16px 16px no-repeat,
    linear-gradient(#6e4d2f 0 0) 264px 138px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 40px 106px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 56px 106px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 72px 106px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 40px 122px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 56px 122px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 72px 122px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 88px 122px / 16px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 88px 106px / 16px 16px no-repeat,
    linear-gradient(#7f4d58 0 0) 58px 114px / 8px 8px no-repeat,
    linear-gradient(#7f4d58 0 0) 74px 114px / 8px 8px no-repeat,
    linear-gradient(#4f3729 0 0) 48px 138px / 8px 16px no-repeat,
    linear-gradient(#4f3729 0 0) 72px 138px / 8px 16px no-repeat,
    linear-gradient(#f7b8ca 0 0) 96px 114px / 8px 8px no-repeat;
}

.asset-hero-fallback span {
  display: none;
}

.status-panel::before {
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  content: "";
  transform: rotate(45deg);
  background: linear-gradient(180deg, rgba(108, 195, 73, 0.14), rgba(108, 195, 73, 0.04));
}

.status-label {
  margin: 0;
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-value {
  margin: 10px 0 0;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-panel.is-offline .status-label,
.status-panel.is-offline .status-value {
  color: #d95a49;
}

.status-grid,
.detail-grid,
.steps-grid,
.launcher-grid,
.pack-grid,
.instructions-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.status-grid div {
  padding: 16px;
  border-radius: 0;
  background: #141414;
  border: 1px solid #333230;
}

.section {
  margin-top: 20px;
  padding-top: 34px;
  padding-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: linear-gradient(180deg, #1b1a19 0%, #151413 100%);
}

.section-grid {
  padding-bottom: 32px;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p {
  line-height: 1.75;
}

.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card,
.step-card,
.launcher-card,
.pack-card,
.instruction-panel,
.faq-card {
  padding: 24px;
}

.detail-card p,
.pack-card p {
  margin: 0;
}

.detail-card strong,
.pack-card strong {
  font-size: 1.1rem;
  word-break: break-word;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: #111111;
  color: var(--green-light);
  border: 1px solid var(--line);
  font-family: "Minecraft Ten", "Archivo Black", "Arial Black", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.step-card h3,
.launcher-card h3,
.faq-card h3,
.section-heading h2,
.instruction-panel h2 {
  font-family: "Archivo Black", "Arial Black", sans-serif;
  margin: 18px 0 12px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.section-heading h2,
.instruction-panel h2 {
  margin-top: 0;
}

.step-card p,
.launcher-card p,
.faq-card p {
  line-height: 1.75;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-light);
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.launcher-card {
  position: relative;
  overflow: hidden;
}

.launcher-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.launcher-logo {
  width: min(100%, 240px);
  height: 72px;
  padding: 12px 16px;
  border-radius: 0;
  border: 1px solid #d8d0bf;
  background: linear-gradient(180deg, #f6f0df 0%, #ece3cf 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.launcher-logo img {
  object-fit: contain;
  object-position: left center;
}

.asset-logo-fallback {
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 0;
  color: #fff;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.asset-logo-fallback.prism {
  background: linear-gradient(135deg, rgba(108, 192, 74, 0.25), rgba(255, 255, 255, 0.65));
  color: #183011;
}

.asset-logo-fallback.modrinth {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(255, 255, 255, 0.65));
  color: #183011;
}

.launcher-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 0;
  font-size: 0.78rem;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.simple-launcher-grid .launcher-card {
  display: flex;
  flex-direction: column;
}

.launcher-badge.prism {
  background: rgba(108, 195, 73, 0.14);
  color: #b7f19a;
}

.launcher-badge.modrinth {
  background: rgba(108, 195, 73, 0.08);
  color: #ffffff;
}

.feature-list,
.instruction-list {
  margin: 18px 0 0;
  line-height: 1.8;
}

.instruction-list {
  padding: 0;
  list-style: none;
  counter-reset: manual-steps;
  max-width: 720px;
}

.instruction-list li {
  position: relative;
  margin-bottom: 12px;
  padding: 14px 16px 14px 64px;
  min-height: 62px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #171615;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}

.instruction-list li:last-child {
  margin-bottom: 0;
}

.instruction-list li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: counter(manual-steps);
  counter-increment: manual-steps;
  border: 1px solid #4f6f36;
  background:
    linear-gradient(180deg, #7fc64d 0 26%, #629b3a 26% 40%, #88633f 40% 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -3px 0 rgba(63, 45, 27, 0.45);
  color: #ffffff;
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 0.9rem;
  line-height: 1;
}

.instruction-list li strong {
  color: #ffffff;
}

@media (max-width: 820px) {
  .instruction-list li {
    padding: 14px 14px 14px 58px;
  }
}

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

.pack-card h3,
.instruction-panel h2 {
  margin: 10px 0 12px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.pack-card p {
  line-height: 1.7;
}

.pack-card .button {
  margin-top: 18px;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .hero-content,
  .detail-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100%, calc(100% - 20px));
  }

  .topbar,
  .hero-content,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero-content,
  .launcher-grid,
  .pack-grid,
  .instructions-grid,
  .detail-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2 {
    max-width: none;
  }
}

.simple-section .section-heading,
.manual-section .manual-step-body {
  max-width: 900px;
}

.manual-section .manual-step-body.manual-step-body-with-aside {
  max-width: none;
}

.manual-section {
  padding-bottom: 28px;
}

.manual-step {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.manual-step-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-top: 8px;
  border: 1px solid var(--line);
  color: #ffffff;
  font-family: "Minecraft Ten", "Archivo Black", "Arial Black", sans-serif;
  font-size: 1.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -5px 0 rgba(0, 0, 0, 0.25),
    var(--shadow);
}

.manual-step-mark span {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

.dirt-block {
  background:
    linear-gradient(135deg, #b7895c 0%, #88633f 45%, #5f4126 100%);
  border-color: #4e331d;
}

.grass-block {
  background:
    linear-gradient(180deg, #7fc64d 0 26%, #629b3a 26% 40%, #88633f 40% 100%);
  border-color: #4f6f36;
}

.redstone-block {
  background:
    linear-gradient(135deg, #ff9b8d 0%, #c74232 42%, #8a241d 100%);
  border-color: #6b1d18;
}

.diamond-block {
  background:
    linear-gradient(135deg, #8ff6ff 0%, #57cad8 45%, #2b8f9d 100%);
  border-color: #2a6f78;
}

.obsidian-block {
  background:
    linear-gradient(135deg, #5c4b74 0%, #342942 45%, #1e1727 100%);
  border-color: #1a1420;
}

.gold-block {
  background:
    linear-gradient(135deg, #ffe789 0%, #e0b83c 45%, #a97911 100%);
  border-color: #7a5710;
}

.manual-step-body h2 {
  margin-bottom: 14px;
}

.manual-step-body-with-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0 24px;
  align-items: start;
  width: 100%;
}

.manual-step-body-with-aside h2,
.manual-step-body-with-aside .manual-lead,
.manual-step-body-with-aside .instruction-list,
.manual-step-body-with-aside .manual-actions {
  grid-column: 1;
  max-width: 720px;
}

.step-aside {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  align-self: start;
  width: 100%;
  max-width: 340px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.step-title-accent {
  display: inline-block;
  margin-right: 0.2em;
}

.dirt-text {
  color: #b7895c;
}

.grass-text {
  color: #7fc64d;
}

.redstone-text {
  color: #d95a49;
}

.diamond-text {
  color: #62d8e2;
}

.obsidian-text {
  color: #8a78ab;
}

.gold-text {
  color: #e0b83c;
}

.manual-lead {
  max-width: 62ch;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.callout-box,
.join-card {
  border: 1px solid var(--line);
  background: #111111;
  box-shadow: var(--shadow);
}

.callout-box {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
}

.callout-box .button {
  margin-top: 8px;
}

.callout-box span,
.join-item span {
  color: var(--muted);
  font-family: "Archivo Black", "Arial Black", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callout-box strong {
  font-size: 1.35rem;
}

.manual-actions {
  margin-top: 18px;
}

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

.simple-launcher-grid .launcher-card .button {
  margin-top: 18px;
}

.join-card {
  max-width: 360px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.join-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.join-item:last-child {
  border-bottom: 0;
}

.join-item strong {
  font-size: 1.28rem;
  text-align: left;
  word-break: break-word;
}

@media (max-width: 820px) {
  .manual-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .manual-step-mark {
    width: 56px;
    height: 56px;
    margin-top: 0;
  }

  .simple-launcher-grid {
    grid-template-columns: 1fr;
  }

  .manual-step-body-with-aside {
    grid-template-columns: 1fr;
  }

  .step-aside {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    max-width: 100%;
    margin-bottom: 18px;
  }

}
