@font-face {
  font-family: Manrope;
  src: url("../assets/fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("../assets/fonts/cormorant.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("../assets/fonts/cormorant-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #071019;
  --ink: #edf9ff;
  --muted: #a0b6c4;
  --cyan: #8cecff;
  --line: #8cc9df33;
  --display: Cormorant, Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    14px/1.8 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
button:disabled,
[aria-disabled="true"] {
  cursor: default;
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
::selection {
  background: #276d89;
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
}
h2 {
  font-size: clamp(48px, 5.2vw, 76px);
  letter-spacing: -0.025em;
}
h3 {
  font-size: 32px;
}
em {
  font-weight: 400;
  color: #b7e5f4;
}
p {
  color: var(--muted);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1240px;
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 13px;
}
.arrow-link > span:last-child,
.link-list > a > span:last-child {
  display: inline-block;
  transition:
    transform 0.2s,
    color 0.2s;
  color: var(--cyan);
}
a[href]:hover,
button:hover {
  color: var(--cyan);
}
a[href]:hover > span:last-child,
button:hover > span:last-child {
  transform: translate(4px, -3px);
}
.fine-print {
  font-size: 11px;
  line-height: 1.8;
}
.muted {
  color: var(--muted);
}
.button {
  min-height: 48px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #c6f3ff;
  border: 1px solid #c6f3ff;
  color: #071019;
  font-size: 13px;
}
.button:hover {
  background: #f3fdff;
  color: #071019;
}
.header {
  height: 88px;
  padding-inline: max(40px, calc((100% - 1340px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #071019f5;
  border-bottom: 1px solid #8cc9df12;
}
.brand {
  display: block;
  width: 142px;
  flex-shrink: 0;
  transition: filter 0.25s;
}
.brand:hover {
  filter: brightness(1.15);
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  align-items: center;
}
.header nav a {
  font-size: 12px;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #bbccd7;
}
.header nav a[aria-current] {
  color: var(--cyan);
}
.header nav a[aria-current]:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  background: var(--cyan);
  transform: rotate(45deg);
}
.header-cta {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  background: radial-gradient(ellipse at 68% 48%, #12395188, transparent 60%);
}
.sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 11% 28%, #bfefff99 1px, transparent 1.5px),
    radial-gradient(circle at 36% 68%, #bfefff55 1px, transparent 1.5px),
    radial-gradient(circle at 72% 14%, #bfefff88 1px, transparent 1.5px);
  background-size:
    297px 241px,
    439px 379px,
    557px 337px;
}
.hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: radial-gradient(ellipse at 60% 100%, #20405255, transparent 65%);
  animation: cloud-drift 40s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  min-height: 740px;
}
.hero-copy {
  padding: 56px 0 80px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  max-width: 385px;
  margin-left: -12px;
  margin-bottom: 22px;
}
.hero-roles {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #d8ecf5;
}
.hero-roles span {
  color: var(--cyan);
  margin-inline: 8px;
}
.hero-line {
  font: 400 clamp(64px, 6.5vw, 92px)/0.95 var(--display);
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 28px;
}
.hero-description {
  margin-top: 22px;
  font-size: 14px;
}
.watch-link {
  margin-top: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #8cecff88;
  font-size: 15px;
  gap: 56px;
}
.fan-label {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 32px;
  color: #9ab3c4;
}
.hero-art {
  mix-blend-mode: lighten;
  width: 570px;
  max-width: 110%;
  justify-self: end;
  align-self: center;
  position: relative;
  margin-right: -30px;
  margin-bottom: -22px;
}
.character-print {
  position: relative;
  aspect-ratio: 528/792;
  overflow: hidden;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 8%,
      black 91%,
      transparent 100%
    ),
    linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-composite: intersect;
}
.character-print img {
  position: absolute;
  width: 189.394%;
  max-width: none;
  left: -44.697%;
  top: -13.131%;
  height: auto;
}
.hero-art figcaption {
  position: absolute;
  bottom: 20px;
  right: 0;
  font-size: 9px;
  color: #abc6d6;
  writing-mode: vertical-rl;
}
.hero-art figcaption span {
  margin-block: 8px;
}
.hero-constellation {
  position: absolute;
  inset: 7% 0 0;
  width: 100%;
  height: 85%;
  z-index: -1;
  stroke: #84d9f533;
  stroke-width: 0.7;
  pointer-events: none;
}
.hero-constellation circle {
  fill: #c4eeff;
  stroke: none;
  opacity: 0.6;
}
.hero-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 20px;
  font-size: 11px;
  color: #a6c2d3;
  position: relative;
}
.hero-index a {
  display: flex;
  gap: 50px;
  min-height: 30px;
  align-items: center;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}
.section-heading h2 {
  font-size: clamp(42px, 4.4vw, 62px);
}
.section-heading > p {
  font-size: 12px;
  color: #e0f1f8;
  text-align: right;
}
.section-heading .muted {
  font-size: 11px;
}
.constellation-frame {
  position: relative;
}
.constellation-frame:before,
.constellation-frame:after {
  content: "✧";
  position: absolute;
  z-index: 2;
  color: var(--cyan);
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
}
.constellation-frame:before {
  top: -10px;
  left: -9px;
}
.constellation-frame:after {
  bottom: -10px;
  right: -9px;
}
.stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  background: #040a10;
  border-block: 1px solid #8cc9df44;
}
.stream-stage {
  position: relative;
  min-width: 0;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 300px;
}
.stream-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background: radial-gradient(ellipse at 50% 40%, #12314955, transparent 65%);
}
.stream-crescent {
  font-size: 70px;
  color: #a4dbe9;
  font-family: Georgia, serif;
  line-height: 1;
}
.stream-fallback h3 {
  font-size: 34px;
}
.compact-watch {
  font-size: 11px;
  min-height: 30px;
}
.chat-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.chat-title {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: #b4d1e1;
}
.chat-title span {
  color: var(--cyan);
}
.chat-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 22px;
  font-size: 13px;
}
.chat-empty .arrow-link {
  font-size: 11px;
}
#twitch-player {
  position: absolute;
  inset: 0;
}
#twitch-chat {
  position: absolute;
  inset: 57px 0 0;
}
iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  font-size: 12px;
}
.panel-foot > a:first-child {
  font-size: 13px;
}
.integration-note {
  font-size: 10px;
  margin-top: 4px;
}
#mobile-chat {
  display: none;
}
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 100px;
  border-top: 1px solid var(--line);
  padding-top: 85px;
}
.section-number {
  font-size: 17px;
  color: #7db6ce;
  display: block;
  margin-bottom: 20px;
}
.community-copy {
  padding-top: 55px;
  max-width: 400px;
}
.large-copy {
  font: 32px/1.15 var(--display);
  color: var(--ink);
  margin-bottom: 20px;
}
.community-copy > .arrow-link {
  margin-top: 20px;
}
.availability {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.gallery-section {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 24px;
}
.gallery-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.gallery-heading h3 {
  font-size: 28px;
}
.gallery-heading > span {
  font-size: 10px;
  color: var(--muted);
}
#gallery-note {
  font-size: 12px;
  margin-top: 15px;
  max-width: 670px;
}
.gallery {
  columns: 3;
  column-gap: 24px;
}
.gallery:not(:empty) {
  margin-top: 24px;
}
.gallery figure {
  break-inside: avoid;
  margin-bottom: 24px;
}
.gallery img {
  width: 100%;
}
.gallery figcaption {
  font-size: 12px;
  padding-top: 10px;
}
.gallery figcaption small {
  display: block;
  color: var(--muted);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.gallery-filters button {
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  min-height: 44px;
  padding: 5px 12px;
  color: var(--muted);
}
.gallery-filters button[aria-pressed="true"] {
  border-color: var(--cyan);
  color: var(--cyan);
}
.minecraft {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 600px;
  background: #0d2639;
  border-block: 1px solid #83c9e52b;
}
.minecraft-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 100px;
  padding-block: 78px 95px;
}
.service-label {
  color: #c1deec;
  font-size: 13px;
  margin-bottom: 30px;
}
.service-label span {
  color: #a6c3d2;
  font-size: 11px;
}
.minecraft h2 {
  font-size: clamp(58px, 6vw, 88px);
}
.minecraft-copy > p:not(.service-label) {
  margin-top: 24px;
  color: #b7cdd9;
}
.minecraft-copy .minecraft-disclaimer {
  font-size: 11px;
}
.terrain-sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 77% 22%, #39738e66, transparent 50%);
  pointer-events: none;
}
.pixel-moon {
  position: absolute;
  top: 65px;
  right: 17%;
  width: 70px;
  height: 70px;
  background: #c4ecfa;
  clip-path: polygon(
    20% 0,
    80% 0,
    80% 20%,
    100% 20%,
    100% 80%,
    80% 80%,
    80% 100%,
    20% 100%,
    20% 80%,
    0 80%,
    0 20%,
    20% 20%
  );
  opacity: 0.65;
}
.terrain {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70%;
  clip-path: polygon(
    0 35%,
    7% 35%,
    7% 27%,
    13% 27%,
    13% 44%,
    20% 44%,
    20% 60%,
    26% 60%,
    26% 50%,
    32% 50%,
    32% 68%,
    40% 68%,
    40% 74%,
    49% 74%,
    49% 67%,
    57% 67%,
    57% 57%,
    64% 57%,
    64% 45%,
    71% 45%,
    71% 36%,
    78% 36%,
    78% 23%,
    86% 23%,
    86% 31%,
    91% 31%,
    91% 12%,
    96% 12%,
    96% 24%,
    100% 24%,
    100% 100%,
    0 100%
  );
}
.terrain-far {
  background: #173b50;
  opacity: 0.7;
}
.terrain-near {
  background: #071621;
  transform: translateY(115px) scaleX(-1);
  height: 75%;
}
.pixel-grid {
  position: absolute;
  inset: 50% 0 0;
  opacity: 0.15;
  background-image:
    linear-gradient(#95d9e91a 1px, transparent 1px),
    linear-gradient(90deg, #95d9e91a 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(transparent, #000);
}
.terrain-stars {
  position: absolute;
  right: 0;
  top: 0;
  width: 53%;
  fill: #b4e9f8;
  stroke: #89c5d955;
  stroke-width: 1;
}
.terrain-stars path {
  fill: none;
}
.server-info {
  align-self: center;
  margin-top: 75px;
  background: #06131dcc;
  padding: 32px 30px;
  border-top: 1px solid #8cc9df77;
  position: relative;
}
.server-info:before {
  content: "✧";
  position: absolute;
  top: -17px;
  left: -8px;
  color: var(--cyan);
  font-size: 23px;
}
.server-caption {
  font: italic 29px var(--display);
  color: #c7e6f3;
}
.server-address {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}
.server-address > div {
  min-width: 0;
}
.server-address > div > span {
  display: block;
  font-size: 10px;
  color: #a5c3d5;
  margin-bottom: 5px;
}
.server-address code {
  font:
    16px Manrope,
    Arial,
    sans-serif;
  overflow-wrap: anywhere;
}
.server-address button {
  padding: 8px 0 8px 15px;
  background: none;
  border: 0;
  min-height: 44px;
  font-size: 12px;
}
.server-address button:disabled {
  opacity: 0.65;
}
.server-wait {
  font-size: 11px;
  max-width: 285px;
  margin-top: 22px;
}
.server-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 11px;
  margin-top: 16px;
  color: #b6d4e3;
}
.server-details:empty {
  display: none;
}
.server-info > .arrow-link {
  font-size: 11px;
}
.landscape-note {
  position: relative;
  z-index: 1;
  text-align: right;
  font-size: 9px;
  color: #9ebacb;
  padding-bottom: 20px;
}
.support {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 85px;
  align-items: center;
  padding-block: 95px 105px;
}
.support-copy h2 {
  font-size: clamp(44px, 4.4vw, 62px);
}
.support-copy > p {
  margin-top: 24px;
  font-size: 13px;
}
.support-copy > .arrow-link {
  margin-top: 20px;
}
.support-copy > .fine-print {
  font-size: 10px;
  margin-top: 16px;
}
.support-star {
  display: block;
  font-size: 40px;
  color: #a8e7fb;
  margin-bottom: 18px;
}
.merch {
  min-width: 0;
}
.merch-images {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding-right: 70px;
  background: #0c1924;
}
.hoodie-photo {
  display: block;
  width: 100%;
  max-width: 390px;
  transition: transform 0.5s;
}
.hoodie-photo:hover {
  transform: translateY(-4px);
}
.keychain-photo {
  position: absolute;
  width: 155px;
  right: -12px;
  bottom: 25px;
  transform: rotate(7deg);
  border: 7px solid #e8f0f1;
  transition: transform 0.5s;
}
.keychain-photo:hover {
  transform: rotate(4deg) translateY(-3px);
}
.merch h3 {
  margin-top: 26px;
  font-size: 32px;
}
.merch-links {
  display: flex;
  gap: 32px;
  margin-top: 9px;
}
.merch-links .arrow-link {
  font-size: 12px;
  gap: 18px;
}
.merch > .fine-print {
  font-size: 10px;
  margin-top: 2px;
}
.links-section {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 100px;
  padding-block: 75px 95px;
}
.links-section h2 {
  font-size: clamp(50px, 5vw, 72px);
}
.links-section p {
  font-size: 12px;
  margin-top: 24px;
}
.links-moon {
  display: block;
  font: 110px/1.3 var(--display);
  color: #6097ae;
  margin-top: 28px;
}
.link-list > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font: 30px/1.2 var(--display);
  min-height: 57px;
  transition:
    padding 0.25s,
    color 0.25s;
}
.link-list > a:first-child {
  border-top: 1px solid var(--line);
}
.link-list > a > span:last-child {
  font:
    20px Manrope,
    Arial,
    sans-serif;
}
.link-list > a:hover {
  padding-inline: 8px;
}
.link-list > a[aria-disabled="true"] > span:last-child {
  font-size: 11px;
}
footer {
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 55px;
  padding-block: 38px;
}
.footer-top p {
  font-size: 10px;
  max-width: 560px;
}
.footer-top > .arrow-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 11px;
}
.footer-bottom {
  border-top: 1px solid #8cc9df18;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  font-size: 10px;
  color: #98b5c8;
}
.footer-bottom > span:last-child {
  color: #bfdcea;
}
.footer-bottom > span:last-child > span {
  margin-left: 20px;
  color: var(--cyan);
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 15px);
  max-width: calc(100% - 32px);
  padding: 15px 22px;
  background: #d4f3ff;
  color: #071019;
  font-size: 12px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: #d4f3ff;
  color: #071019;
  padding: 10px 20px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.noscript {
  padding: 24px;
  text-align: center;
}
@keyframes cloud-drift {
  to {
    transform: translateX(-25px);
  }
}
@media (min-width: 1600px) {
  .hero-layout {
    min-height: 800px;
  }
  .hero-art {
    width: 600px;
    max-width: 110%;
    margin-right: -45px;
  }
  .hero-copy {
    padding-block: 65px 95px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 80px);
  }
  .header {
    gap: 25px;
  }
  .header nav {
    gap: 20px;
  }
  .hero-layout {
    min-height: 660px;
  }
  .hero-art {
    width: 490px;
    max-width: 118%;
    margin-right: -10px;
  }
  .hero-copy {
    padding-block: 40px 65px;
  }
  .hero h1 {
    max-width: 310px;
  }
  .hero-line {
    font-size: 74px;
  }
  .community,
  .minecraft-layout,
  .support,
  .links-section {
    column-gap: 55px;
  }
  .stream-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
  }
  .section {
    padding-block: 80px;
  }
  .merch-images {
    min-height: 280px;
    padding-right: 45px;
  }
  .keychain-photo {
    width: 130px;
  }
  .footer-top {
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .header {
    height: 76px;
    padding-inline: 28px;
    gap: 24px;
  }
  .header .brand {
    width: 120px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
    gap: 12px;
    align-items: center;
    background: none;
    border: 0;
    min-height: 44px;
    font-size: 12px;
  }
  .header-cta {
    padding-left: 20px;
    font-size: 12px;
    gap: 20px;
  }
  .header nav {
    display: none;
    position: fixed;
    inset: 76px 0 0;
    height: calc(100dvh - 76px);
    background: #071019;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 40px;
    gap: 16px;
    overflow-y: auto;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    font: 42px var(--display);
    width: 100%;
    min-height: 56px;
    border-bottom: 1px solid var(--line);
  }
  .header nav a[aria-current]:after {
    left: auto;
    right: 12px;
    bottom: 24px;
  }
  .hero-layout {
    min-height: 610px;
  }
  .hero-line {
    font-size: 65px;
  }
  .hero h1 {
    max-width: 280px;
  }
  .hero-art {
    width: 440px;
    max-width: 130%;
    margin-right: -15px;
  }
  .hero-roles {
    font-size: 10px;
    letter-spacing: 0.07em;
  }
  .hero-description {
    font-size: 12px;
  }
  .stream-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .chat-panel {
    display: none;
  }
  #mobile-chat {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  .community {
    gap: 35px;
  }
  .community h2 {
    font-size: 60px;
  }
  .community-copy {
    padding-top: 50px;
  }
  .minecraft-layout {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .server-info {
    padding: 25px 20px;
  }
  .service-label span {
    display: block;
  }
  .minecraft h2 {
    font-size: 64px;
  }
  .support {
    gap: 45px;
  }
  .support-copy h2 {
    font-size: 46px;
  }
  .merch-images {
    min-height: 240px;
    padding-right: 10px;
  }
  .keychain-photo {
    width: 110px;
    right: -10px;
  }
  .merch h3 {
    font-size: 28px;
  }
  .merch-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .merch-links .arrow-link {
    gap: 12px;
  }
  .links-section {
    gap: 60px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top p {
    flex: 1;
  }
  .footer-top > .arrow-link {
    margin-left: 0;
  }
  .footer-bottom {
    font-size: 9px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 84px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 58px;
  }
  .header {
    height: 70px;
    padding-inline: 20px;
    gap: 15px;
  }
  .header .brand {
    width: 110px;
  }
  .header-cta {
    padding-left: 15px;
    gap: 12px;
    font-size: 11px;
  }
  .menu-toggle {
    font-size: 11px;
    gap: 8px;
    padding: 0 4px;
  }
  .header nav {
    inset-block-start: 70px;
    height: calc(100dvh - 70px);
  }
  .hero-layout {
    display: block;
    min-height: 0;
    padding-top: 20px;
  }
  .hero-copy {
    padding: 8px 0 0;
  }
  .hero h1 {
    width: 220px;
    margin: 0 0 16px -6px;
  }
  .hero-roles {
    font-size: 9px;
  }
  .hero-line {
    font-size: 64px;
    margin-top: 23px;
    position: relative;
    z-index: 3;
  }
  .hero-description {
    font-size: 12px;
    max-width: 145px;
    line-height: 1.8;
    margin-top: 18px;
  }
  .watch-link {
    font-size: 12px;
    gap: 20px;
    margin-top: 18px;
  }
  .fan-label {
    margin-top: 20px;
    font-size: 9px;
    max-width: 150px;
  }
  .hero-art {
    width: 56%;
    max-width: 240px;
    margin: -168px -8px -4px auto;
    position: relative;
    z-index: 0;
    pointer-events: none;
  }
  .hero-art figcaption {
    display: none;
  }
  .character-print {
    mask-image:
      linear-gradient(to bottom, transparent, black 8%, black 88%, transparent),
      linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .hero-copy {
    pointer-events: none;
  }
  .hero-copy a {
    pointer-events: auto;
  }
  .hero-constellation {
    top: 20%;
    height: 80%;
  }
  .hero-index {
    padding-block: 15px;
    font-size: 9px;
    gap: 12px;
  }
  .hero-index a {
    gap: 17px;
  }
  .hero:after {
    animation: none;
  }
  .section-heading {
    align-items: start;
    gap: 20px;
    margin-bottom: 25px;
    display: block;
  }
  .section-heading h2 {
    font-size: 45px;
  }
  .section-heading > p {
    text-align: left;
    font-size: 11px;
    margin-top: 18px;
  }
  .section-heading .muted {
    font-size: 10px;
  }
  .stream-stage {
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .stream-fallback {
    gap: 10px;
    padding: 16px;
  }
  .stream-crescent {
    font-size: 38px;
  }
  .stream-fallback h3 {
    font-size: 25px;
  }
  .stream-fallback .compact-watch {
    font-size: 11px;
  }
  .stream-fallback .button {
    min-height: 40px;
    font-size: 11px;
    padding: 6px 15px;
  }
  .stream-stage.can-embed {
    min-height: 300px;
  }
  .panel-foot {
    gap: 16px;
    padding-top: 8px;
  }
  .panel-foot > a:first-child {
    font-size: 11px;
    gap: 12px;
  }
  .panel-foot > #mobile-chat {
    font-size: 10px;
  }
  .integration-note {
    font-size: 9px;
    line-height: 1.7;
    max-width: 300px;
  }
  .community {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 45px;
  }
  .section-number {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .community h2 {
    font-size: 60px;
  }
  .community-copy {
    padding-top: 0;
    max-width: 340px;
  }
  .large-copy {
    font-size: 28px;
  }
  .community-copy > p:not(.large-copy) {
    font-size: 13px;
  }
  .community-copy > .arrow-link {
    font-size: 12px;
    margin-top: 16px;
    gap: 17px;
  }
  .gallery-section {
    margin-top: 4px;
    padding-top: 22px;
  }
  .gallery-heading {
    align-items: start;
    gap: 15px;
  }
  .gallery-heading h3 {
    font-size: 25px;
    max-width: 180px;
  }
  .gallery-heading > span {
    font-size: 9px;
    white-space: nowrap;
    padding-top: 7px;
  }
  #gallery-note {
    font-size: 11px;
    margin-top: 12px;
  }
  .gallery {
    columns: 2;
    column-gap: 15px;
  }
  .minecraft {
    min-height: 0;
  }
  .minecraft-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 48px 28px;
  }
  .service-label {
    margin-bottom: 22px;
    font-size: 12px;
  }
  .service-label span {
    display: inline;
    font-size: 10px;
  }
  .minecraft h2 {
    font-size: 67px;
  }
  .minecraft-copy > p:not(.service-label) {
    font-size: 13px;
    margin-top: 20px;
  }
  .minecraft-copy > .minecraft-disclaimer {
    font-size: 10px !important;
  }
  .server-info {
    margin-top: 0;
    margin-left: 25px;
    padding: 23px 20px;
  }
  .server-caption {
    font-size: 27px;
  }
  .server-address {
    margin-top: 20px;
  }
  .server-address code {
    font-size: 14px;
  }
  .server-wait {
    margin-top: 16px;
    font-size: 10px;
  }
  .server-details {
    margin-top: 8px;
  }
  .pixel-moon {
    width: 48px;
    height: 48px;
    top: 58px;
    right: 13%;
  }
  .terrain-stars {
    width: 90%;
    right: -20%;
    top: 90px;
  }
  .terrain-far {
    height: 85%;
  }
  .terrain-near {
    height: 65%;
    transform: translateY(20px) scaleX(-1);
  }
  .landscape-note {
    text-align: left;
    font-size: 8px;
    padding-bottom: 22px;
  }
  .support {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .support-copy h2 {
    font-size: 49px;
  }
  .support-star {
    font-size: 33px;
    margin-bottom: 14px;
  }
  .support-copy > p {
    font-size: 12px;
    margin-top: 20px;
  }
  .support-copy > .arrow-link {
    margin-top: 15px;
  }
  .support-copy > .fine-print {
    font-size: 10px;
  }
  .merch {
    padding-right: 12px;
  }
  .merch-images {
    min-height: 280px;
    padding-right: 38px;
  }
  .hoodie-photo {
    max-width: 310px;
  }
  .keychain-photo {
    width: 130px;
    right: -12px;
    bottom: 18px;
  }
  .merch h3 {
    font-size: 31px;
    margin-top: 24px;
  }
  .merch-links {
    gap: 30px;
  }
  .links-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 45px 55px;
    position: relative;
  }
  .links-section h2 {
    font-size: 58px;
  }
  .links-section p {
    margin-top: 18px;
    font-size: 11px;
  }
  .links-moon {
    position: absolute;
    right: 15px;
    top: 40px;
    margin: 0;
    font-size: 90px;
    opacity: 0.5;
  }
  .link-list > a {
    font-size: 29px;
    min-height: 59px;
    padding-block: 13px;
  }
  .footer-top {
    gap: 24px;
    padding-block: 30px;
    align-items: start;
  }
  .footer-top > .brand {
    width: 120px;
  }
  .footer-top p {
    flex-basis: 100%;
    order: 2;
    font-size: 10px;
  }
  .footer-top > .arrow-link {
    margin-left: auto;
    font-size: 10px;
    gap: 13px;
    min-height: 50px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px;
    font-size: 9px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 360px) {
  .header {
    gap: 10px;
    padding-inline: 16px;
  }
  .header .brand {
    width: 96px;
  }
  .header-cta {
    gap: 9px;
    padding-left: 10px;
  }
  .hero h1 {
    width: 200px;
  }
  .hero-line {
    font-size: 57px;
  }
  .hero-art {
    width: 53%;
    margin-top: -150px;
    margin-right: -7px;
  }
  .hero-description {
    max-width: 130px;
    font-size: 11px;
  }
  .fan-label {
    font-size: 8px;
    max-width: 130px;
  }
  .hero-roles {
    font-size: 8px;
  }
  .watch-link {
    gap: 12px;
    font-size: 11px;
  }
  .gallery-heading {
    display: block;
  }
  .gallery-heading > span {
    display: block;
    padding-top: 8px;
  }
  .service-label span {
    display: block;
  }
  .server-info {
    margin-left: 12px;
  }
  .merch-images {
    min-height: 240px;
  }
  .keychain-photo {
    width: 110px;
  }
  .footer-top {
    gap: 12px;
  }
  .footer-top > .brand {
    width: 98px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
