@font-face {
  font-family: "Minercraftory";
  src: url("assets/fonts/Minercraftory.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Monocraft";
  src: url("assets/fonts/Monocraft.ttf") format("truetype");
  font-display: swap;
}

:root {
  --black: #07080b;
  --panel: #111116;
  --pink: #f6339a;
  --yellow: #fac800;
  --lime: #55ff55;
  --green: #3c8527;
  --mint: #00e7a7;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

body {
  color: #fff;
  font-family: "Monocraft", monospace;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell,
.page {
  width: 100%;
  height: 100dvh;
}

.page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 32px 24px 112px;
  background: #08070f;
}

.portal-texture,
.dark-wash,
.purple-bloom {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.portal-texture {
  z-index: -3;
  background: url("assets/nether_portal.gif") center / 256px 256px repeat;
  image-rendering: pixelated;
  opacity: 0.5;
  filter: contrast(1.25) brightness(1);
}

.dark-wash {
  z-index: -2;
  background: linear-gradient(to bottom, rgba(7, 8, 11, 0.75), rgba(7, 8, 11, 0.55), rgba(7, 8, 11, 0.8));
}

.purple-bloom {
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15), transparent 70%);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: 80px;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: rgba(18, 18, 21, 0.985);
  border-right: 2px solid #2d2f3e;
  box-shadow: 10px 0 28px rgba(0, 0, 0, 0.34);
}

.mobile-sidebar-header,
.nav-label,
.menu-toggle {
  display: none;
}

.nav-stack {
  width: 100%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nav-item,
.discord-side {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  background: #6e7080;
  box-shadow: inset 0 3px #9598aa, inset 0 -3px #3d3e47;
  transition: transform 100ms ease, filter 120ms ease;
}

.nav-item:hover,
.discord-side:hover {
  filter: brightness(1.18);
}

.nav-item:active,
.discord-side:active {
  transform: translateY(2px);
}

.nav-item.active {
  background: #3c8527;
  box-shadow: inset 0 3px #5ca33c, inset 0 -3px #1d4d13, 0 0 15px rgba(60, 163, 39, 0.7);
}

.nav-item img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  image-rendering: pixelated;
}

.tooltip {
  position: absolute;
  z-index: 80;
  left: 69px;
  top: 50%;
  translate: 0 -50%;
  padding: 9px 15px;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
  color: #ffe02a;
  font-family: "Minercraftory", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px #000;
  background: rgba(18, 18, 22, 0.98);
  border: 2px solid #000;
  box-shadow: inset 0 2px rgba(0, 0, 0, 0.45), inset 0 -2px rgba(255, 255, 255, 0.15), 0 10px 24px #000;
  transition: opacity 130ms ease;
}

.nav-item:hover .tooltip,
.discord-side:hover .tooltip {
  opacity: 1;
}

.discord-side {
  flex-shrink: 0;
  color: #fff;
  background: #5865f2;
  box-shadow: inset 0 3px #818cf8, inset 0 -3px #202456;
}

.discord-side::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: -17px;
  height: 1px;
  background: #27272a;
}

.discord-side svg {
  width: 24px;
  fill: currentColor;
}

.topbar {
  position: relative;
  z-index: 10;
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.eyebrow {
  padding-top: 13px;
  color: #a1a1aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-shadow: 2px 2px #000;
}

.status-row {
  display: flex;
  gap: 12px;
}

.bevel-panel {
  border: 2px solid #000;
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.22), inset 0 -2px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.event-status,
.server-status {
  height: 40px;
  display: flex;
  align-items: center;
  background: rgba(27, 28, 36, 0.95);
}

.event-status {
  gap: 10px;
  padding: 0 15px;
  color: #9f9fa9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.event-status img {
  width: 16px;
  height: 16px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 8px rgba(110, 255, 110, 0.95));
  animation: pulse 2s ease-in-out infinite;
}

.event-status strong {
  color: #ffe02a;
  font-size: 12px;
  text-shadow: 2px 2px #000;
}

.server-status {
  padding: 0 15px;
  gap: 12px;
  cursor: pointer;
  background: rgba(18, 19, 24, 0.95);
  transition: background 150ms ease;
}

.server-status:hover {
  background: #1c1d24;
}

.server-status > strong {
  color: #00e99e;
  font-size: 12px;
  text-shadow: 2px 2px #000;
}

.server-status > span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 11px;
  border-left: 1px solid #3f3f46;
  white-space: nowrap;
}

.server-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  animation: pulse 2s ease-in-out infinite;
}

.server-status b {
  color: #34d399;
  font-size: 12px;
}

.server-status[data-server-state="offline"] i {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.75);
  animation: none;
}

.server-status[data-server-state="offline"] b {
  color: #f87171;
}

.server-status[data-server-state="unavailable"] i {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.7);
  animation: none;
}

.server-status[data-server-state="unavailable"] b {
  color: #fbbf24;
}

.hero {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1700px;
  height: calc(100% - 54px);
  margin: 0 auto;
  padding: 8px 40px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1vw, 20px);
}

.hero-copy {
  flex: 0 1 590px;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.title-glow {
  position: relative;
  transform: translateY(-14px);
}

.title-glow::before {
  content: "";
  position: absolute;
  inset: -32px -50px;
  z-index: -1;
  background: rgba(85, 255, 85, 0.16);
  border-radius: 50%;
  filter: blur(52px);
}

h1 {
  margin: 0;
  color: var(--lime);
  font-family: "Minercraftory", sans-serif;
  font-size: clamp(56px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.045em;
  text-shadow: 4px 4px #000;
}

h1 span {
  display: block;
  margin-top: 6px;
  color: #a9abb3;
}

.hero-description {
  max-width: 548px;
  margin: 0;
  color: #d4d4d8;
  font-family: "Monocraft", monospace;
  font-size: 13px;
  line-height: 1.72;
  letter-spacing: 0.012em;
  text-shadow: 2px 2px #000;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-top: 2px;
}

.minecraft-button,
.details-button,
.carousel-arrow,
.modal-close {
  border: 2px solid #000;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 2px 2px #000;
  transition: filter 80ms ease, translate 80ms ease;
}

.minecraft-button:hover,
.details-button:hover,
.carousel-arrow:hover,
.modal-close:hover {
  filter: brightness(1.14);
}

.minecraft-button:active,
.details-button:active,
.carousel-arrow:active,
.modal-close:active {
  translate: 0 2px;
}

.minecraft-button.green,
.details-button.green {
  background: #3c8527;
  box-shadow: inset 0 3px #5ca33c, inset 0 -3px #1d4d13;
}

.minecraft-button.gray,
.carousel-arrow.gray,
.modal-close.gray {
  background: #6e7080;
  box-shadow: inset 0 3px #9598aa, inset 0 -3px #3d3e47;
}

.hero-actions .minecraft-button {
  min-height: 58px;
  padding: 17px 30px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Minercraftory", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  box-shadow: inset 0 3px #5ca33c, inset 0 -3px #1d4d13, 0 10px 22px rgba(0, 0, 0, 0.28);
}

.hero-actions .minecraft-button.discord {
  background: #6e7080;
  box-shadow: inset 0 3px #9598aa, inset 0 -3px #3d3e47, 0 10px 22px rgba(0, 0, 0, 0.28);
}

.mobile-event {
  display: none;
}

.showcase {
  position: relative;
  left: -10px;
  flex: 1 1 720px;
  height: 620px;
  min-width: 620px;
}

.weapon-card {
  position: absolute;
  z-index: 5;
  left: -1%;
  top: 49.2%;
  translate: 0 -50%;
  width: 286px;
  min-height: 284px;
  padding: 16px 16px 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.96);
  border-color: #050507;
  outline: 1px solid #383541;
}

.weapon-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.weapon-type {
  margin-bottom: 8px;
  padding: 3px 8px;
  color: #f472b6;
  font-size: 12px;
  border: 1px solid #86114d;
  background: rgba(81, 4, 36, 0.5);
}

.weapon-card h2 {
  margin: 0 0 8px;
  color: #ffe118;
  font-family: "Minercraftory", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px #000;
}

.weapon-stat {
  margin-bottom: 8px;
  color: #00e5a0;
  font-size: 12px;
  letter-spacing: 0.035em;
  text-shadow: 1px 1px #000;
}

.weapon-card p {
  width: 100%;
  min-height: 62px;
  margin: 0;
  padding: 12px 10px;
  color: #d4d4d8;
  font-size: 9px;
  line-height: 1.6;
  background: rgba(8, 8, 12, 0.92);
  border: 2px solid #000;
  box-shadow: inset 0 2px rgba(0, 0, 0, 0.45), inset 0 -2px rgba(255, 255, 255, 0.15);
}

.details-button {
  width: 100%;
  min-height: 34px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.carousel-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-arrow {
  width: 35px;
  height: 35px;
  padding: 0;
  font-size: 18px;
  font-weight: 800;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #4b4b50;
  box-shadow: 1px 1px #000;
  cursor: pointer;
}

.carousel-dot.active {
  width: 20px;
  background: #ffe000;
  box-shadow: 0 0 9px rgba(255, 224, 0, 0.95), 1px 1px #000;
}

.main-item-frame,
.floating-frame {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 31, 49, 0.9);
  border: 5px solid #08080c;
  box-shadow: inset 3px 3px rgba(255, 255, 255, 0.13), inset -3px -3px rgba(0, 0, 0, 0.45), 0 0 1px 1px #3c3948;
}

.main-item-frame {
  z-index: 3;
  left: 48%;
  top: 48%;
  translate: 0 -50%;
  width: 219px;
  height: 219px;
}

.item-halo {
  position: absolute;
  inset: -60px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.42), rgba(227, 0, 118, 0.1) 44%, transparent 70%);
  filter: blur(18px);
}

.main-item-frame img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 12px 7px rgba(0, 0, 0, 0.75));
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-item-frame img.switching {
  opacity: 0;
  transform: scale(0.86) rotate(-3deg);
}

.floating-frame {
  z-index: 2;
  right: 1.5%;
  width: 126px;
  height: 126px;
  opacity: 0.68;
}

.floating-frame img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  image-rendering: pixelated;
}

.float-top {
  top: -1%;
}

.float-bottom {
  bottom: 1%;
}

.community-showcase {
  perspective: 900px;
}

.community-frame {
  position: absolute;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(91, 58, 106, 0.58), rgba(35, 31, 49, 0.92) 68%);
  border: 5px solid #08080c;
  outline: none;
  box-shadow: inset 3px 3px rgba(255, 255, 255, 0.13), inset -3px -3px rgba(0, 0, 0, 0.45), 0 0 1px 1px #3c3948;
  transition: filter 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.community-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 30px rgba(8, 2, 20, 0.32);
}

.community-frame img {
  width: 70%;
  height: 70%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.42);
  animation: community-image-drift 12s ease-in-out infinite alternate;
}

.community-frame-top img,
.community-frame-bottom img {
  width: 72%;
  height: 72%;
}

.community-frame:hover {
  z-index: 8;
  filter: brightness(1.08) saturate(1.08);
  box-shadow:
    inset 3px 3px rgba(255, 255, 255, 0.15),
    inset -3px -3px rgba(0, 0, 0, 0.48),
    0 22px 42px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(174, 43, 255, 0.28);
}

.community-frame:hover,
.community-frame:hover img {
  animation-play-state: paused;
}

.community-frame-main {
  left: calc(50% - 270px);
  top: 48%;
  width: 540px;
  height: 350px;
  animation: community-float-main 6.8s ease-in-out infinite;
}

.community-frame-featured {
  border-width: 6px;
  box-shadow:
    inset 4px 4px rgba(255, 255, 255, 0.14),
    inset -4px -4px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(203, 54, 255, 0.2),
    0 0 1px 1px #4b4658;
}

.community-frame-featured img {
  width: 88%;
  height: auto;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.52);
}

.community-frame-top,
.community-frame-bottom {
  right: 1.5%;
  width: 126px;
  height: 126px;
  opacity: 0.68;
  animation: community-float-side 7.4s ease-in-out infinite;
}

.community-frame-top {
  top: -1%;
  animation-delay: -1.8s;
}

.community-frame-bottom {
  bottom: 1%;
  animation-delay: -4.1s;
}

@keyframes community-float-main {
  0%, 100% { transform: translateY(-50%) rotate(-0.55deg); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(0.35deg); }
}

@keyframes community-float-side {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes community-image-drift {
  0% { transform: scale(1) translate3d(-0.3%, 0, 0); }
  100% { transform: scale(1.035) translate3d(0.3%, -0.4%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .community-frame,
  .community-frame img {
    animation: none;
  }

  .community-frame-main {
    transform: translateY(-50%);
  }
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  translate: -50% 20px;
  padding: 13px 18px;
  color: #ffe02a;
  font-family: "Minercraftory", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0;
  pointer-events: none;
  background: #111116;
  border: 2px solid #000;
  box-shadow: inset 0 2px rgba(255, 255, 255, 0.18), inset 0 -2px #000, 0 10px 28px #000;
  transition: opacity 160ms ease, translate 160ms ease;
}

.toast.show {
  opacity: 1;
  translate: -50% 0;
}

.details-modal {
  width: min(560px, calc(100% - 32px));
  padding: 28px;
  color: #fff;
  background: #111116;
  border: 3px solid #000;
  outline: 1px solid #46424f;
  box-shadow: inset 0 3px rgba(255, 255, 255, 0.13), inset 0 -3px #000, 0 24px 80px #000;
}

.details-modal::backdrop {
  background: rgba(3, 2, 7, 0.78);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  font-size: 19px;
}

.modal-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 25px;
}

.modal-body img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  image-rendering: pixelated;
}

.modal-body h2 {
  margin: 0 0 14px;
  color: #ffe02a;
  font-family: "Minercraftory", sans-serif;
  font-size: 26px;
  text-shadow: 2px 2px #000;
}

.modal-body strong {
  color: #00e5a0;
  font-size: 12px;
}

.modal-body p {
  color: #d4d4d8;
  font-size: 12px;
  line-height: 1.65;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: #050506 url("assets/nether_portal.gif") center / 128px 128px repeat;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.loading-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.skip-loader .loading-screen {
  display: none;
}

.loader-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  text-shadow: 2px 2px #000;
}

.loader-copy p {
  margin: 8px 0 0;
  font-family: "Minercraftory", sans-serif;
  letter-spacing: 0.07em;
}

.loader-copy span {
  color: #bdbdc5;
  font-size: 12px;
}

.loader-cube {
  width: 28px;
  height: 28px;
  background: #ac4bff;
  border: 4px solid #12071c;
  box-shadow: inset 5px 5px #d9b3ff, inset -5px -5px #59168b, 0 0 20px rgba(172, 75, 255, 0.8);
  animation: loader 900ms steps(4) infinite;
}

.drawer-scrim {
  display: none;
}

@keyframes pulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes loader {
  to { transform: rotate(360deg); }
}

@media (max-width: 1240px) {
  .hero {
    padding-inline: 24px;
    gap: 30px;
  }

  .showcase {
    left: 0;
    min-width: 570px;
    transform: scale(0.9);
    transform-origin: right center;
  }
}

@media (max-width: 1023px) {
  .page {
    padding: 20px 22px;
  }

  .sidebar {
    width: 256px;
    padding: 16px 16px 28px;
    align-items: stretch;
    transform: translateX(-102%);
    transition: transform 260ms ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .mobile-sidebar-header {
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fac800;
    font-family: "Minercraftory", sans-serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #27272a;
    text-shadow: 2px 2px #000;
  }

  .drawer-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
  }

  .nav-stack {
    align-items: stretch;
    gap: 10px;
  }

  .nav-item,
  .discord-side {
    width: 100%;
    padding: 0 14px;
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-label {
    display: inline;
    font-family: "Minercraftory", sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-shadow: 2px 2px #000;
  }

  .tooltip,
  .discord-side::before {
    display: none;
  }

  .discord-side {
    margin-top: 12px;
  }

  .menu-toggle {
    position: fixed;
    z-index: 30;
    top: 16px;
    left: 15px;
    width: 38px;
    height: 38px;
    padding: 8px 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .drawer-scrim {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 260ms ease, visibility 260ms ease;
  }

  .drawer-scrim.open {
    opacity: 1;
    visibility: visible;
  }

  .eyebrow {
    margin-left: 54px;
  }

  .hero {
    justify-content: center;
    padding: 10px 24px 0;
  }

  .hero-copy {
    min-width: 0;
    max-width: 660px;
    flex-basis: auto;
    align-items: center;
    text-align: center;
  }

  .showcase {
    display: none;
  }

  h1 {
    font-size: clamp(54px, 9vw, 72px);
  }
}

@media (max-width: 640px) {
  .page {
    padding: 16px 16px 20px;
  }

  .topbar {
    height: 50px;
    justify-content: flex-end;
  }

  .eyebrow,
  .topbar .event-status {
    display: none;
  }

  .server-status {
    height: 38px;
    max-width: calc(100vw - 242px);
    min-width: 180px;
    overflow: hidden;
    padding-inline: 12px;
  }

  .server-status > strong {
    flex: 0 0 auto;
  }

  .server-status > span {
    flex: 0 0 auto;
  }

  .hero {
    height: calc(100% - 50px);
    padding: 0 8px;
  }

  .hero-copy {
    width: 100%;
    max-width: 490px;
    gap: 16px;
    transform: translateY(1vh);
  }

  h1 {
    font-size: 33px;
    line-height: 0.96;
    letter-spacing: 0.02em;
  }

  .title-glow {
    transform: none;
  }

  h1 span {
    margin-top: 5px;
  }

  .hero-description {
    max-width: 490px;
    font-size: 9px;
    line-height: 1.78;
    transform: translateY(8px);
  }

  .mobile-event {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .minecraft-button {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px 12px;
    font-size: 14px;
  }

  .modal-body {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .modal-body img {
    margin: auto;
  }
}

@media (max-height: 650px) and (max-width: 1023px) {
  .hero-copy {
    gap: 10px;
  }

  h1 {
    font-size: 42px;
  }
}

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