* { box-sizing: border-box; }
:root {
  --red: #ff304f;
  --red-soft: #ff6b7c;
  --red-dark: #160207;
  --panel: rgba(4, 1, 4, 0.94);
  --text: #fff2f4;
  --muted: #c9a8ae;
  --line: rgba(255, 48, 79, 0.58);
  --font-display: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
}
html {
  min-height: 100%;
  scrollbar-color: #09070a #030105;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 48, 79, 0.18), transparent 28%),
    radial-gradient(circle at 76% 84%, rgba(255, 48, 79, 0.12), transparent 30%),
    linear-gradient(rgba(255, 48, 79, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 79, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #060306, #020103 56%, #100207);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-shell {
  height: 100dvh;
  min-height: 0;
  padding: clamp(12px, 1.4vw, 22px);
  display: grid;
  grid-template-columns: minmax(310px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(14px, 1.4vw, 22px);
  overflow: hidden;
}
.panel {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background-color: var(--panel);
  background-image:
    linear-gradient(var(--red), var(--red)),
    linear-gradient(var(--red), var(--red)),
    linear-gradient(var(--red), var(--red)),
    linear-gradient(var(--red), var(--red)),
    linear-gradient(rgba(255, 48, 79, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 79, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 3, 6, 0.94), rgba(2, 1, 3, 0.96));
  background-position: top left, top left, bottom right, bottom right, 0 0, 0 0, 0 0;
  background-size: 48px 1px, 1px 48px, 48px 1px, 1px 48px, 28px 28px, 28px 28px, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 48, 79, 0.12),
    0 0 24px rgba(255, 48, 79, 0.14),
    inset 0 0 34px rgba(255, 48, 79, 0.045);
  overflow: hidden;
}
.launch-card {
  min-height: 0;
  max-height: calc(100dvh - clamp(24px, 2.8vw, 44px));
  padding: clamp(20px, 2.4vw, 34px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 20px;
  isolation: isolate;
  overflow-y: auto;
  scrollbar-color: #09070a rgba(3, 1, 4, 0.82);
}
.launch-card::-webkit-scrollbar {
  width: 8px;
}
.launch-card::-webkit-scrollbar-track {
  background: rgba(3, 1, 4, 0.82);
}
.launch-card::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #09070a;
  border: 1px solid rgba(255, 48, 79, 0.22);
  box-shadow: inset 0 0 8px rgba(255, 48, 79, 0.18);
}
.title-audio-toggle,
.home-menu-toggle {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  z-index: 4;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  font-size: 16px;
  background: transparent;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.82),
    0 0 18px rgba(255, 48, 79, 0.72);
  cursor: pointer;
}
.home-menu-toggle {
  display: none;
}
.title-audio-toggle {
  border: 1px solid rgba(255, 48, 79, 0.64);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 48, 79, 0.12), rgba(4, 1, 4, 0.84));
  box-shadow:
    0 0 18px rgba(255, 48, 79, 0.22),
    inset 0 0 18px rgba(255, 48, 79, 0.12);
}
.title-audio-toggle[aria-pressed="true"] {
  border-color: rgba(255, 244, 245, 0.82);
  box-shadow:
    0 0 22px rgba(255, 48, 79, 0.4),
    inset 0 0 22px rgba(255, 48, 79, 0.18);
}
.title-audio-toggle:hover,
.title-audio-toggle:focus-visible,
.home-menu-toggle:hover,
.home-menu-toggle:focus-visible {
  outline: 0;
  color: #fff5f5;
  transform: translateY(-1px);
}
.home-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}
.home-menu::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}
.home-menu.is-open {
  pointer-events: auto;
}
.home-menu.is-open::before {
  opacity: 1;
}
.home-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, calc(100vw - 24px));
  height: 100dvh;
  padding: 18px 18px max(22px, env(safe-area-inset-bottom));
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: auto;
  background:
    linear-gradient(var(--red), var(--red)) top left / 52px 1px no-repeat,
    linear-gradient(var(--red), var(--red)) top left / 1px 52px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom right / 52px 1px no-repeat,
    linear-gradient(var(--red), var(--red)) bottom right / 1px 52px no-repeat,
    linear-gradient(rgba(255, 48, 79, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 79, 0.045) 1px, transparent 1px),
    rgba(4, 1, 4, 0.98);
  background-size: 52px 1px, 1px 52px, 52px 1px, 1px 52px, 22px 22px, 22px 22px, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  box-shadow: -18px 0 42px rgba(255, 48, 79, 0.22), inset 0 0 34px rgba(255, 48, 79, 0.08);
  transform: translateX(104%);
  transition: transform 220ms ease;
}
.home-menu.is-open .home-menu__drawer {
  transform: translateX(0);
}
.home-menu__header {
  position: relative;
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 4px 44px 0;
}
.home-menu__header img {
  width: min(220px, 78%);
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 48, 79, 0.7));
}
.home-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  font-size: 1.35rem;
  background: transparent;
  text-shadow: 0 0 14px rgba(255, 48, 79, 0.72);
  cursor: pointer;
}
.home-menu__commerce,
.home-menu__links {
  display: grid;
  gap: 10px;
}
.home-menu__commerce {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.drawer-menu-button {
  --drawer-button-color: var(--red);
  --drawer-button-soft: var(--red-soft);
  min-height: 58px;
  padding: 10px 44px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  gap: 2px;
  border: 1px solid color-mix(in srgb, var(--drawer-button-color) 82%, transparent);
  border-radius: 5px;
  color: #fff5f5;
  font: inherit;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--drawer-button-color) 18%, transparent), rgba(5, 1, 4, 0.92)),
    linear-gradient(180deg, rgba(18, 3, 7, 0.9), rgba(4, 1, 4, 0.98));
  box-shadow:
    inset 0 0 20px color-mix(in srgb, var(--drawer-button-color) 11%, transparent),
    0 0 16px color-mix(in srgb, var(--drawer-button-color) 18%, transparent);
  cursor: pointer;
}
.home-menu__commerce .drawer-menu-button {
  min-height: 62px;
  padding-inline: 18px;
}
.home-menu__commerce .drawer-menu-button i {
  position: static;
  transform: none;
  margin-bottom: 6px;
}
.home-menu__commerce .drawer-menu-button {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}
.drawer-menu-button:hover,
.drawer-menu-button:focus-visible {
  outline: 0;
  border-color: #fff5f5;
  filter: brightness(1.12);
}
.drawer-menu-button i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--drawer-button-color);
  font-size: 1.05rem;
  text-align: center;
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--drawer-button-color) 62%, transparent));
}
.drawer-menu-button span,
.drawer-menu-button strong,
.drawer-menu-button small {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
}
.drawer-menu-button span,
.drawer-menu-button strong {
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 0 10px color-mix(in srgb, var(--drawer-button-color) 65%, transparent);
}
.drawer-menu-button small {
  margin-top: 4px;
  color: var(--drawer-button-soft);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-align: center;
}
.drawer-menu-button--home,
.drawer-menu-button--purchase,
.drawer-menu-button--load,
.drawer-menu-button--os,
.drawer-menu-button--upgrade,
.drawer-menu-button--skin,
.drawer-menu-button--how,
.drawer-menu-button--audio { --drawer-button-color: #ff304f; --drawer-button-soft: #ff9aa7; }
.home-menu__support {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 48, 79, 0.24);
}
.home-menu__feedback {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 48, 79, 0.62);
  border-radius: 5px;
  color: #fff4f5;
  background:
    linear-gradient(180deg, rgba(255, 48, 79, 0.12), rgba(5, 1, 4, 0.92));
  box-shadow: inset 0 0 16px rgba(255, 48, 79, 0.1);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.home-menu__support > small {
  max-width: 280px;
  color: rgba(255, 220, 226, 0.56);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.mobile-home-paypal {
  width: min(100%, 240px);
  display: grid;
  justify-items: center;
}
.mobile-home-paypal form {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 7px;
}
.mobile-home-paypal img {
  max-width: 138px;
}
.mobile-home-paypal section {
  color: rgba(255, 220, 226, 0.62);
  font-size: 0.7rem;
  text-align: center;
}
.mobile-home-paypal section img {
  height: 0.8rem;
  vertical-align: middle;
}
.launch-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 1, 3, 0.2), rgba(2, 1, 3, 0.02) 34%, rgba(2, 1, 3, 0.42) 74%, rgba(2, 1, 3, 0.72)),
    radial-gradient(circle at 50% 20%, rgba(255, 48, 79, 0.1), transparent 34%),
    linear-gradient(rgba(255, 48, 79, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 79, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  pointer-events: none;
  content: "";
}
.version {
  color: var(--red-soft);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.brand {
  position: relative;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
}
.brand-logo {
  width: min(100%, 430px);
  max-height: 125px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 9px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 28px rgba(255, 48, 79, 0.76));
}
.tagline {
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.2em;
}
.hero-art {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 0;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
}
.hero-art::before {
  position: absolute;
  inset: 8% -16% 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 48, 79, 0.42), transparent 24%),
    linear-gradient(115deg, transparent 0 35%, rgba(255, 48, 79, 0.34) 36% 37%, transparent 38%),
    linear-gradient(245deg, transparent 0 34%, rgba(255, 48, 79, 0.28) 35% 36%, transparent 37%);
  opacity: 0.12;
  content: "";
}
.title-art-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
}
.launch-card > .title-art-video {
  z-index: -2;
}
.hero-art::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 1, 3, 0.08), transparent 46%, rgba(2, 1, 3, 0.36)),
    radial-gradient(circle at 50% 45%, transparent 0 42%, rgba(2, 1, 3, 0.28) 72%, rgba(2, 1, 3, 0.7) 100%);
  pointer-events: none;
  content: "";
}
.shatter-core {
  position: absolute;
  top: 25%;
  left: 50%;
  width: clamp(150px, 15vw, 230px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 92, 110, 0.46);
  border-radius: 50%;
  background:
    linear-gradient(42deg, transparent 0 47%, rgba(255, 255, 255, 0.82) 48% 50%, transparent 51%),
    linear-gradient(132deg, transparent 0 45%, rgba(255, 48, 79, 0.86) 46% 49%, transparent 50%),
    radial-gradient(circle at 34% 28%, #fff 0 4%, transparent 5%),
    radial-gradient(circle at 42% 38%, #20202a 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, #ff304f 0 42%, #1a0509 43% 100%);
  opacity: 0.08;
  box-shadow:
    0 0 24px rgba(255, 48, 79, 0.9),
    0 0 78px rgba(255, 48, 79, 0.46),
    inset 0 0 34px rgba(0, 0, 0, 0.72);
  transform: translateX(-50%);
}
.shatter-core::before,
.shatter-core::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 169, 178, 0.5);
  border-radius: 34% 46% 42% 38%;
  content: "";
  transform: rotate(24deg);
}
.shatter-core::after {
  inset: 28%;
  border-color: rgba(255, 48, 79, 0.68);
  transform: rotate(-38deg);
}
.brick-burst {
  position: absolute;
  inset: 18% 6% 26%;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  opacity: 0.06;
  transform: perspective(500px) rotateX(8deg);
}
.brick-burst i {
  height: 24px;
  border: 1px solid rgba(255, 92, 110, 0.8);
  border-radius: 3px;
  background: linear-gradient(180deg, #ff5c6e, #5b0b17);
  box-shadow: 0 0 14px rgba(255, 48, 79, 0.36);
}
.brick-burst i:nth-child(3n) { transform: translateY(18px) rotate(-5deg); opacity: 0.7; }
.brick-burst i:nth-child(4n) { transform: translateY(-10px) rotate(7deg); opacity: 0.62; }
.paddle {
  width: min(78%, 360px);
  height: 54px;
  margin-bottom: 8%;
  border: 1px solid rgba(255, 104, 120, 0.9);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 13%, #1a1720 14% 21%, transparent 22% 78%, #1a1720 79% 86%, transparent 87%),
    linear-gradient(180deg, #4c2028, #09060a 48%, #26050b);
  opacity: 0.08;
  box-shadow:
    0 0 22px rgba(255, 48, 79, 0.56),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.paddle::before {
  display: block;
  width: 68%;
  height: 10px;
  margin: 21px auto 0;
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 48, 79, 0.9);
  content: "";
}
.launch-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}
.action-button {
  --action-color: var(--red);
  --action-soft: var(--red-soft);
  --action-glow: rgba(255, 48, 79, 0.34);
  --action-fill: rgba(255, 48, 79, 0.24);
  width: 100%;
  min-height: 58px;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--action-color);
  border-radius: 5px;
  color: #fff5f5;
  font: inherit;
  text-align: left;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, var(--action-fill), rgba(255, 48, 79, 0.04), var(--action-fill)),
    linear-gradient(180deg, rgba(16, 3, 7, 0.9), rgba(5, 1, 4, 0.96));
  box-shadow:
    0 0 22px var(--action-glow),
    inset 0 0 28px color-mix(in srgb, var(--action-color) 14%, transparent);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  cursor: pointer;
}
.action-button:hover,
.action-button:focus-visible,
.action-button.is-active {
  outline: 0;
  border-color: #fff4f5;
  box-shadow:
    0 0 28px var(--action-glow),
    0 0 42px rgba(255, 255, 255, 0.16),
    inset 0 0 30px color-mix(in srgb, var(--action-color) 20%, transparent);
  transform: translateY(-1px);
}
.action-button i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--action-color);
  font-size: 16px;
  text-shadow: 0 0 12px var(--action-glow);
}
.action-button strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
.action-button small {
  display: block;
  margin-top: 2px;
  color: var(--action-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.action-red {
  --action-color: #ff304f;
  --action-soft: #ff8a98;
  --action-glow: rgba(255, 48, 79, 0.44);
  --action-fill: rgba(255, 48, 79, 0.28);
}
.action-gold {
  --action-color: #ff304f;
  --action-soft: #ff9aa7;
  --action-glow: rgba(255, 48, 79, 0.36);
  --action-fill: rgba(255, 48, 79, 0.2);
}
.action-purple {
  --action-color: #ff304f;
  --action-soft: #ff9aa7;
  --action-glow: rgba(255, 48, 79, 0.36);
  --action-fill: rgba(255, 48, 79, 0.2);
}
.action-cyan {
  --action-color: #ff304f;
  --action-soft: #ff9aa7;
  --action-glow: rgba(255, 48, 79, 0.36);
  --action-fill: rgba(255, 48, 79, 0.2);
}
.content-grid {
  display: grid;
  min-height: 0;
  overflow: hidden;
}
.briefing-console {
  padding: clamp(22px, 2.3vw, 34px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
  min-height: 0;
  overflow: hidden;
}
.briefing-header {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  gap: 18px;
  text-align: center;
}
.briefing-header::before,
.briefing-header::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 14px rgba(255, 48, 79, 0.6);
  content: "";
}
.briefing-heading {
  min-width: 0;
}
.home-tab-strip { display: none; }
.home-tab-button {
  --tab-color: var(--red);
  min-height: 38px;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--tab-color) 72%, transparent);
  border-radius: 4px;
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--tab-color) 16%, transparent), rgba(5, 1, 4, 0.82)),
    rgba(3, 1, 4, 0.8);
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--tab-color) 8%, transparent);
  cursor: pointer;
}
.home-tab-button i {
  color: var(--tab-color);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--tab-color) 62%, transparent));
}
.home-tab-button:hover,
.home-tab-button:focus-visible,
.home-tab-button.is-active {
  outline: 0;
  border-color: #fff4f5;
  box-shadow:
    0 0 18px color-mix(in srgb, var(--tab-color) 26%, transparent),
    inset 0 0 22px color-mix(in srgb, var(--tab-color) 14%, transparent);
}
.home-tab-button--how { --tab-color: #43e8ff; }
.home-tab-button--upgrades { --tab-color: #ff304f; }
.home-tab-button--skins { --tab-color: #c75cff; }
.home-tab-button--protocols { --tab-color: #ffb347; }
.tab-panel {
  display: none;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  padding-right: 0;
  scrollbar-color: #09070a rgba(3, 1, 4, 0.82);
}
.tab-panel.is-active {
  display: block;
}
.home-tab-body {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-color: #09070a rgba(3, 1, 4, 0.82);
}
.home-tab-body::-webkit-scrollbar {
  width: 8px;
}
.home-tab-body::-webkit-scrollbar-track {
  background: rgba(3, 1, 4, 0.82);
}
.home-tab-body::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: #09070a;
  border: 1px solid rgba(255, 48, 79, 0.22);
  box-shadow: inset 0 0 8px rgba(255, 48, 79, 0.18);
}
.briefing {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(290px, 0.74fr);
  gap: clamp(18px, 2vw, 34px);
  min-height: 0;
}
.section-title {
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 48, 79, 0.72);
}
.section-subtitle {
  margin-top: 10px;
  color: var(--red-soft);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}
.game-preview {
  margin-top: clamp(18px, 2vw, 28px);
  padding: 14px;
  border: 1px solid rgba(255, 48, 79, 0.48);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 48, 79, 0.16), transparent 28%),
    linear-gradient(rgba(255, 48, 79, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 79, 0.06) 1px, transparent 1px),
    #050207;
  background-size: auto, 30px 30px, 30px 30px, auto;
  box-shadow: inset 0 0 34px rgba(255, 48, 79, 0.06);
}
.preview-screen {
  position: relative;
  min-height: clamp(230px, 28vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(255, 92, 110, 0.42);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 48, 79, 0.08), transparent 26%, rgba(255, 48, 79, 0.16)),
    linear-gradient(rgba(255, 48, 79, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 48, 79, 0.08) 1px, transparent 1px),
    #050206;
  background-size: auto, 42px 42px, 42px 42px, auto;
}
.preview-bricks {
  position: absolute;
  top: 12%;
  left: 7%;
  right: 7%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
}
.preview-bricks i {
  height: clamp(18px, 2.2vw, 30px);
  border: 1px solid rgba(255, 92, 110, 0.76);
  border-radius: 3px;
  background: linear-gradient(180deg, #ff3c58, #460812);
  box-shadow: 0 0 12px rgba(255, 48, 79, 0.48);
  animation: previewBrickGlow 3.6s ease-in-out infinite;
  will-change: filter, opacity, box-shadow;
}
.preview-bricks i:nth-child(5n) { background: linear-gradient(180deg, #3a2830, #09050a); }
.preview-bricks i:nth-child(7n) { background: linear-gradient(180deg, #ff9b42, #3c1604); }
.preview-bricks i:nth-child(3n) { animation-delay: 320ms; }
.preview-bricks i:nth-child(4n) { animation-delay: 640ms; }
.preview-bricks i:nth-child(7n) { animation-delay: 960ms; }
.preview-bricks i:nth-child(11n) { animation-delay: 1280ms; }
.preview-ball {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff 0 12%, #ff6b7c 13% 45%, #22040a 46% 100%);
  box-shadow: 0 0 18px rgba(255, 48, 79, 0.9);
  transform: translate(-50%, -50%);
}
.preview-ball::before,
.preview-ball::after {
  position: absolute;
  width: 160px;
  height: 1px;
  border-top: 1px dashed rgba(255, 48, 79, 0.78);
  content: "";
  transform-origin: left center;
}
.preview-ball::before { left: 50%; top: 50%; transform: rotate(-136deg); }
.preview-ball::after { left: 50%; top: 50%; transform: rotate(-44deg); }
.preview-paddle {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: min(240px, 36%);
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(180deg, #4a2229, #0a060a);
  box-shadow: 0 0 18px rgba(255, 48, 79, 0.7);
  transform: translateX(-50%);
}
.preview-paddle::before {
  display: block;
  width: 70%;
  height: 6px;
  margin: 14px auto 0;
  border-radius: 99px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 48, 79, 0.9);
  content: "";
}
.steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.step i {
  color: var(--red);
  font-size: 1.7rem;
  filter: drop-shadow(0 0 8px rgba(255, 48, 79, 0.8));
}
.step strong {
  display: block;
  color: #fff2f4;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.step p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.22;
}
.systems {
  display: grid;
  gap: 12px;
}
@keyframes meterChevronCharge {
  0%,
  18%,
  100% {
    background: rgba(255, 48, 79, 0.08);
    box-shadow: none;
    opacity: 0.72;
  }
  34%,
  64% {
    background: var(--red);
    box-shadow:
      0 0 12px rgba(255, 48, 79, 0.72),
      inset 0 0 10px rgba(255, 255, 255, 0.12);
    opacity: 1;
  }
  78% {
    background: rgba(255, 48, 79, 0.16);
    box-shadow: 0 0 8px rgba(255, 48, 79, 0.22);
    opacity: 0.82;
  }
}
@keyframes previewBrickGlow {
  0%,
  100% {
    filter: brightness(0.9);
    opacity: 0.82;
    box-shadow: 0 0 8px rgba(255, 48, 79, 0.28);
  }
  45%,
  62% {
    filter: brightness(1.35);
    opacity: 1;
    box-shadow:
      0 0 12px rgba(255, 48, 79, 0.68),
      0 0 22px rgba(255, 48, 79, 0.24);
  }
}
@keyframes heartIntegrityPulse {
  0%,
  100% {
    color: rgba(255, 48, 79, 0.35);
    text-shadow: 0 0 8px rgba(255, 48, 79, 0.3);
    transform: scale(0.94);
  }
  38%,
  68% {
    color: var(--red);
    text-shadow:
      0 0 10px rgba(255, 48, 79, 0.9),
      0 0 24px rgba(255, 48, 79, 0.55);
    transform: scale(1.08);
  }
}
@keyframes heartOutlineFill {
  0%,
  100% {
    opacity: 0;
  }
  38%,
  68% {
    opacity: 1;
  }
}
@keyframes weaponChargePulse {
  0%,
  100% {
    transform: scaleX(0.46);
    opacity: 0.68;
  }
  48%,
  66% {
    transform: scaleX(0.92);
    opacity: 1;
  }
}
.system-card {
  padding: 14px;
  border: 1px solid rgba(255, 48, 79, 0.28);
  border-radius: 5px;
  background: rgba(3, 1, 4, 0.7);
}
.system-card h3 {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.system-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.22;
}
.meter {
  margin-top: 12px;
  height: 36px;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 4px;
}
.meter i {
  clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%, 26% 50%);
  border: 1px solid rgba(255, 48, 79, 0.48);
  background: rgba(255, 48, 79, 0.1);
  animation: meterChevronCharge 3.15s ease-in-out infinite;
  will-change: background, box-shadow, opacity;
}
.meter i:nth-child(1) { animation-delay: 0ms; }
.meter i:nth-child(2) { animation-delay: 70ms; }
.meter i:nth-child(3) { animation-delay: 140ms; }
.meter i:nth-child(4) { animation-delay: 210ms; }
.meter i:nth-child(5) { animation-delay: 280ms; }
.meter i:nth-child(6) { animation-delay: 350ms; }
.meter i:nth-child(7) { animation-delay: 420ms; }
.meter i:nth-child(8) { animation-delay: 490ms; }
.meter i:nth-child(9) { animation-delay: 560ms; }
.meter i:nth-child(10) { animation-delay: 630ms; }
.meter i:nth-child(11) { animation-delay: 700ms; }
.meter i:nth-child(12) { animation-delay: 770ms; }
.meter i:nth-child(13) { animation-delay: 840ms; }
.meter i:nth-child(14) { animation-delay: 910ms; }
.hearts {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  color: var(--red);
  font-size: 2.2rem;
  text-shadow: 0 0 14px rgba(255, 48, 79, 0.8);
}
.hearts i {
  display: inline-block;
  position: relative;
  line-height: 1;
  transform-origin: center;
  animation: heartIntegrityPulse 2.4s ease-in-out infinite;
  will-change: color, text-shadow, transform;
}
.hearts i:nth-child(2) {
  animation-delay: 140ms;
}
.hearts i:nth-child(3) {
  animation-delay: 280ms;
}
.hearts .fa-regular {
  color: rgba(255, 48, 79, 0.62);
}
.hearts .fa-regular::after {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(255, 48, 79, 0.9),
    0 0 24px rgba(255, 48, 79, 0.55);
  animation: heartOutlineFill 2.4s ease-in-out infinite;
  animation-delay: 280ms;
}
.weapon-bar {
  position: relative;
  margin-top: 14px;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 48, 79, 0.52);
  border-radius: 2px;
  background: rgba(255, 48, 79, 0.08);
  box-shadow: inset 0 0 10px rgba(255, 48, 79, 0.16);
}
.weapon-bar::before {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--red), #ff6b7c);
  box-shadow: 0 0 14px rgba(255, 48, 79, 0.64);
  content: "";
  transform: scaleX(0.72);
  transform-origin: left center;
  animation: weaponChargePulse 2.8s ease-in-out infinite;
}
.module-row {
  margin-top: 14px;
  display: flex;
  gap: 16px;
}
.module-row i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  box-shadow: 0 0 12px rgba(255, 48, 79, 0.38);
  transform: rotate(45deg);
}
.module-row i::before {
  transform: rotate(-45deg);
}
.upgrade-library {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  align-content: start;
}
.tab-panel.upgrade-library {
  display: none;
}
.tab-panel.upgrade-library.is-active {
  display: grid;
}
.upgrade-library__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  text-align: center;
}
.upgrade-library__header::before,
.upgrade-library__header::after {
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 48, 79, 0.52);
  content: "";
}
.upgrade-library__header h2 {
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 48, 79, 0.68);
}
.upgrade-library__header p {
  margin-top: 8px;
  color: var(--red-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-upgrade-card {
  --module-color: #ff304f;
  --module-soft: #ff9aa7;
  --module-glow: rgba(255, 48, 79, 0.36);
  padding: 20px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  justify-items: center;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--module-color) 62%, transparent);
  border-radius: 7px;
  background:
    linear-gradient(var(--module-color), var(--module-color)) top left / 32px 1px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) top left / 1px 32px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) top right / 32px 1px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) top right / 1px 32px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) bottom left / 32px 1px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) bottom left / 1px 32px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) bottom right / 32px 1px no-repeat,
    linear-gradient(var(--module-color), var(--module-color)) bottom right / 1px 32px no-repeat,
    linear-gradient(135deg, color-mix(in srgb, var(--module-color) 13%, transparent), transparent 42%),
    rgba(3, 1, 4, 0.68);
  box-shadow: inset 0 0 20px color-mix(in srgb, var(--module-color) 8%, transparent);
}
.home-upgrade-card i {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--module-color);
  border-radius: 12px;
  color: var(--module-color);
  font-size: 1.65rem;
  background: rgba(3, 1, 4, 0.78);
  box-shadow: 0 0 14px var(--module-glow), inset 0 0 12px color-mix(in srgb, var(--module-color) 14%, transparent);
  transform: rotate(45deg);
}
.home-upgrade-card i::before {
  transform: rotate(-45deg);
}
.home-upgrade-card strong {
  color: var(--module-color);
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 0.96vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 0 12px var(--module-glow);
}
.home-upgrade-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(0.8rem, 0.88vw, 0.94rem);
  font-weight: 700;
  line-height: 1.34;
}
.upgrade-long { --module-color: #43e8ff; --module-soft: #9ff4ff; --module-glow: rgba(67, 232, 255, 0.34); }
.upgrade-multi { --module-color: #f6f0ff; --module-soft: #ffffff; --module-glow: rgba(246, 240, 255, 0.4); }
.upgrade-pierce { --module-color: #ffb347; --module-soft: #ffd58b; --module-glow: rgba(255, 179, 71, 0.36); }
.upgrade-plasma { --module-color: #ff304f; --module-soft: #ff8a98; --module-glow: rgba(255, 48, 79, 0.44); }
.upgrade-explode { --module-color: #ff7a24; --module-soft: #ffbb82; --module-glow: rgba(255, 122, 36, 0.38); }
.upgrade-cannon { --module-color: #ff4f71; --module-soft: #ff9bad; --module-glow: rgba(255, 79, 113, 0.42); }
.upgrade-magnet { --module-color: #22ff7a; --module-soft: #95ffc1; --module-glow: rgba(34, 255, 122, 0.32); }
.upgrade-momentum { --module-color: #ff5dbd; --module-soft: #ffabd9; --module-glow: rgba(255, 93, 189, 0.34); }
.upgrade-lucky { --module-color: #8d68ff; --module-soft: #c5b4ff; --module-glow: rgba(141, 104, 255, 0.36); }
.upgrade-cascade { --module-color: #c75cff; --module-soft: #e1a2ff; --module-glow: rgba(199, 92, 255, 0.34); }
.how-upgrade-strip {
  margin-top: clamp(18px, 2vw, 28px);
  display: grid;
  gap: 14px;
}
.how-upgrade-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  text-align: center;
}
.how-upgrade-header::before,
.how-upgrade-header::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 10px rgba(255, 48, 79, 0.5);
  content: "";
}
.how-upgrade-header h3 {
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 48, 79, 0.62);
}
.how-upgrade-header p {
  margin-top: 6px;
  color: var(--red-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.how-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.how-upgrade-grid .home-upgrade-card {
  padding: 18px 12px;
  grid-template-columns: 1fr;
  gap: 10px;
}
.how-upgrade-grid .home-upgrade-card i {
  width: 62px;
  height: 62px;
  font-size: 1.35rem;
}
.how-upgrade-grid .home-upgrade-card strong {
  font-size: clamp(0.76rem, 0.84vw, 0.92rem);
  letter-spacing: 0.09em;
}
.how-upgrade-grid .home-upgrade-card p {
  margin-top: 6px;
  font-size: clamp(0.74rem, 0.78vw, 0.86rem);
  line-height: 1.28;
}
.placeholder-tab {
  height: 100%;
  min-height: 420px;
  display: none;
  place-items: stretch;
}
.placeholder-tab.is-active {
  display: grid;
}
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}
.placeholder-card {
  --placeholder-color: var(--red);
  min-height: 190px;
  padding: 18px;
  display: grid;
  align-content: end;
  border: 1px solid color-mix(in srgb, var(--placeholder-color) 62%, transparent);
  border-radius: 5px;
  background:
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) top left / 32px 1px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) top left / 1px 32px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) top right / 32px 1px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) top right / 1px 32px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) bottom left / 32px 1px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) bottom left / 1px 32px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) bottom right / 32px 1px no-repeat,
    linear-gradient(var(--placeholder-color), var(--placeholder-color)) bottom right / 1px 32px no-repeat,
    radial-gradient(circle at 50% 32%, color-mix(in srgb, var(--placeholder-color) 22%, transparent), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(3, 1, 4, 0.7);
  box-shadow: inset 0 0 28px color-mix(in srgb, var(--placeholder-color) 9%, transparent);
}
.placeholder-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--placeholder-color);
  border-radius: 10px;
  color: var(--placeholder-color);
  font-size: 1.35rem;
  box-shadow: 0 0 18px color-mix(in srgb, var(--placeholder-color) 36%, transparent);
  transform: rotate(45deg);
}
.placeholder-card i::before {
  transform: rotate(-45deg);
}
.placeholder-card strong {
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 12px color-mix(in srgb, var(--placeholder-color) 48%, transparent);
}
.placeholder-card p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.22;
}
.release-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.release-card {
  min-height: 168px;
  padding: 18px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  text-align: center;
  border: 1px solid rgba(255, 48, 79, 0.42);
  border-radius: 5px;
  background:
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) top left / 34px 1px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) top left / 1px 34px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) top right / 34px 1px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) top right / 1px 34px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) bottom left / 34px 1px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) bottom left / 1px 34px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) bottom right / 34px 1px no-repeat,
    linear-gradient(var(--release-color, var(--red)), var(--release-color, var(--red))) bottom right / 1px 34px no-repeat,
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(10, 2, 5, 0.9), rgba(2, 1, 3, 0.96));
  box-shadow:
    inset 0 0 22px color-mix(in srgb, var(--release-color, var(--red)) 8%, transparent),
    0 0 16px color-mix(in srgb, var(--release-color, var(--red)) 12%, transparent);
}
.release-card > i {
  color: var(--release-color, var(--red));
  font-size: 1.7rem;
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--release-color, var(--red)) 68%, transparent));
}
.release-card strong {
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 12px color-mix(in srgb, var(--release-color, var(--red)) 38%, transparent);
}
.release-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}
.release-card--developer { --release-color: #ff304f; }
.release-card--feedback { --release-color: #ff304f; }
.release-card--donate { --release-color: #ff304f; }
.feedback-link {
  min-height: 40px;
  padding: 9px 16px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--release-color, var(--red)) 72%, transparent);
  border-radius: 5px;
  color: #fff4f5;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--release-color, var(--red)) 14%, transparent), rgba(5, 1, 4, 0.88)),
    rgba(3, 1, 4, 0.84);
  box-shadow: 0 0 16px color-mix(in srgb, var(--release-color, var(--red)) 18%, transparent);
}
.feedback-link:hover,
.feedback-link:focus-visible {
  outline: 0;
  border-color: #fff4f5;
  box-shadow: 0 0 18px color-mix(in srgb, var(--release-color, var(--red)) 32%, transparent);
}
.paypal-shell {
  width: min(100%, 280px);
  display: grid;
  justify-items: center;
}
.paypal-shell form {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 7px;
}
.paypal-shell img {
  max-width: 150px;
}
.paypal-shell section {
  color: rgba(255, 220, 226, 0.7);
  font-size: 0.72rem;
}
.paypal-shell section img {
  height: 0.875rem;
  vertical-align: middle;
}
.paypal-donate-button {
  min-width: 11.625rem;
  height: 2.625rem;
  padding: 0 2rem;
  border: 1px solid #000000;
  border-radius: 1.5rem;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}
.support-payment-note {
  max-width: 240px;
  color: rgba(255, 220, 226, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
html.is-electron .release-card--donate {
  display: none;
}
#how-to-play {
  scroll-margin-top: 18px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .home-shell {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .launch-card {
    min-height: auto;
    max-height: none;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
  }
  .briefing-console {
    min-height: min(880px, calc(100dvh - 16px));
    overflow: hidden;
  }
  .home-tab-body {
    overflow: visible;
    padding-right: 0;
  }
  .briefing {
    grid-template-columns: 1fr;
  }
  .upgrade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-upgrade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .release-panel {
    grid-template-columns: 1fr;
  }
  .placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  body {
    overflow: hidden;
  }
  .home-shell {
    height: 100dvh;
    padding: 8px;
    display: block;
    overflow: hidden;
  }
  .content-grid {
    display: none;
  }
  .title-audio-toggle {
    display: none;
  }
  .home-menu-toggle {
    display: grid;
  }
  .home-menu::before {
    background: rgba(0, 0, 0, 0.62);
  }
  .home-menu__drawer {
    width: 100vw;
    height: 100svh;
    max-height: 100svh;
    padding: 20px 20px max(28px, env(safe-area-inset-bottom));
    gap: 10px;
    justify-items: center;
    background-color: #000000;
    box-shadow:
      0 0 34px rgba(255, 48, 79, 0.18),
      inset 0 0 28px rgba(255, 48, 79, 0.12);
  }
  .home-menu__commerce,
  .home-menu__links,
  .home-menu__support {
    width: min(430px, 100%);
    justify-self: center;
  }
  .home-menu__header {
    width: min(430px, 100%);
    min-height: 126px;
    justify-self: center;
  }
  .home-menu__header img {
    width: min(250px, 78%);
  }
  .launch-card {
    height: calc(100dvh - 16px);
    max-height: none;
    padding: 18px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
  }
  .brand-logo {
    width: 220px;
    max-height: 92px;
  }
  .launch-actions .action-button:not(:first-child) {
    display: none;
  }
  .launch-actions {
    align-self: end;
  }
  .launch-actions .action-button:first-child {
    min-height: 58px;
    padding-block: 10px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .briefing {
    padding: 18px;
  }
  .briefing-console {
    padding: 18px;
  }
  .briefing-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .briefing-header::before,
  .briefing-header::after {
    display: none;
  }
  .home-tab-strip { display: none; }
  .home-tab-button {
    justify-content: center;
  }
  .preview-bricks {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .action-button {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .launch-actions .action-button:first-child {
    min-height: 58px;
  }
  .action-button .fa-chevron-right {
    display: none;
  }
  .upgrade-grid {
    grid-template-columns: 1fr;
  }
  .how-upgrade-grid {
    grid-template-columns: 1fr;
  }
  .release-panel {
    grid-template-columns: 1fr;
  }
  .placeholder-grid {
    grid-template-columns: 1fr;
  }
}
