:root {
      color-scheme: light;
      --bg: #080513;
      --bg-soft: #1a1231;
      --panel: rgba(11, 9, 26, 0.9);
      --panel-strong: rgba(17, 13, 37, 0.96);
      --card: rgba(22, 17, 47, 0.94);
      --text: #fbf7ff;
      --muted: #cabce5;
      --line: rgba(88, 237, 255, 0.22);
      --accent: #ff8a00;
      --accent-2: #ffe44f;
      --accent-3: #47f5ff;
      --accent-4: #ff4fd8;
      --success: #9dff8b;
      --danger: #ff7c93;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
      --radius: 20px;
      --content: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Trebuchet MS", "Gill Sans", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255, 79, 216, 0.22), transparent 28%),
        radial-gradient(circle at top right, rgba(71, 245, 255, 0.16), transparent 24%),
        radial-gradient(circle at bottom center, rgba(255, 138, 0, 0.18), transparent 32%),
        linear-gradient(180deg, #140d27 0%, #080513 42%, #05030d 100%);
      color: var(--text);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(71, 245, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(71, 245, 255, 0.06) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
      opacity: 0.35;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02) 0,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(0, 0, 0, 0.06) 50%,
        rgba(0, 0, 0, 0.06) 100%
      );
      background-size: 100% 5px;
      mix-blend-mode: soft-light;
      opacity: 0.28;
      pointer-events: none;
    }

    a {
      color: inherit;
    }

    button,
    input {
      font: inherit;
    }

    .wrap {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 32px), var(--content));
      margin: 0 auto;
    }

    .hero {
      padding: 20px 0 18px;
    }

    .hero-shell {
      position: relative;
      isolation: isolate;
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.18), rgba(71, 245, 255, 0.12)),
        var(--panel);
      border: 1px solid var(--line);
      border-radius: 32px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        transparent 0,
        transparent 48%,
        rgba(255, 255, 255, 0.03) 48%,
        rgba(255, 255, 255, 0.03) 52%,
        transparent 52%,
        transparent 100%
      );
      background-size: 100% 6px;
      opacity: 0.22;
      pointer-events: none;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      inset: auto -120px -150px auto;
      width: 340px;
      height: 340px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 79, 216, 0.22), transparent 68%);
      filter: blur(8px);
      pointer-events: none;
    }

    .hero-shell > * {
      position: relative;
      z-index: 1;
    }

    .site-chrome {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 30px 0;
    }

    .brand-lockup {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      text-decoration: none;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.94), rgba(71, 245, 255, 0.86));
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #10071f;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-indent: 0.16em;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 26px rgba(255, 79, 216, 0.22);
    }

    .brand-copy {
      display: grid;
      gap: 4px;
      min-width: 0;
      font-family: "Lucida Console", "Courier New", monospace;
    }

    .brand-copy strong {
      font-size: 18px;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-copy span {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .site-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
    }

    .site-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      background: rgba(71, 245, 255, 0.08);
      border: 1px solid rgba(71, 245, 255, 0.18);
      color: var(--text);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, color 140ms ease, box-shadow 140ms ease;
    }

    .site-nav a:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 228, 79, 0.45);
      background: rgba(255, 79, 216, 0.14);
      color: #fff7ca;
      box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.16);
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 22px;
      padding: 20px 30px 22px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 14px;
      background: rgba(255, 79, 216, 0.16);
      border: 1px solid rgba(255, 79, 216, 0.28);
      color: #ffd4f3;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    h1 {
      margin: 12px 0 12px;
      font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
      font-size: clamp(40px, 6.5vw, 68px);
      line-height: 0.92;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-shadow: 0 0 18px rgba(71, 245, 255, 0.22);
    }

    .hero p {
      margin: 0;
      max-width: 62ch;
      font-size: 17px;
      line-height: 1.55;
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .pill-link,
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid transparent;
      text-decoration: none;
      cursor: pointer;
      font-family: "Lucida Console", "Courier New", monospace;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
    }

    .pill-link:hover,
    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #1a1200;
      font-weight: 800;
      box-shadow: 0 0 18px rgba(255, 138, 0, 0.24);
    }

    .button-secondary {
      background: rgba(71, 245, 255, 0.08);
      border-color: rgba(71, 245, 255, 0.18);
      color: var(--text);
      font-weight: 700;
    }

    .button[disabled] {
      cursor: wait;
      opacity: 0.72;
      filter: saturate(0.75);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      align-content: start;
    }

    .hero-card,
    .panel {
      background: var(--panel-strong);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      padding: 18px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 79, 216, 0), rgba(255, 79, 216, 0.84), rgba(71, 245, 255, 0));
      pointer-events: none;
    }

    .hero-card h2 {
      margin: 0 0 14px;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-card ul {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.6;
    }

    .hero-card li + li {
      margin-top: 6px;
    }

    .instant-launch {
      position: relative;
      overflow: hidden;
      grid-column: 1 / -1;
      background:
        radial-gradient(circle at 100% 0, rgba(255, 79, 216, 0.24), transparent 34%),
        linear-gradient(145deg, rgba(255, 138, 0, 0.2), rgba(71, 245, 255, 0.14)),
        var(--panel-strong);
      border-color: rgba(255, 228, 79, 0.38);
    }

    .instant-launch::after {
      content: "";
      position: absolute;
      inset: auto -28px -46px auto;
      width: 140px;
      height: 140px;
      border-radius: 999px;
      background: rgba(255, 79, 216, 0.14);
      pointer-events: none;
    }

    .launch-badge {
      display: inline-flex;
      width: fit-content;
      min-height: 30px;
      align-items: center;
      padding: 0 11px;
      border-radius: 10px;
      background: rgba(255, 79, 216, 0.18);
      border: 1px solid rgba(255, 79, 216, 0.28);
      color: #ffd4f3;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .launch-card-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      margin-top: 12px;
    }

    .launch-thumb-frame,
    .launch-thumb-placeholder {
      width: 112px;
      aspect-ratio: 16 / 11;
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.24), rgba(71, 245, 255, 0.18)),
        rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(71, 245, 255, 0.2);
      box-shadow: 0 0 24px rgba(71, 245, 255, 0.12);
    }

    .media-frame {
      position: relative;
      overflow: hidden;
      border-radius: inherit;
    }

    .media-frame img,
    .media-fallback {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .media-fallback {
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.24), rgba(71, 245, 255, 0.18)),
        rgba(255, 255, 255, 0.06);
      color: #d4fbff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .media-badges {
      position: absolute;
      left: 8px;
      right: 8px;
      bottom: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: flex-end;
      pointer-events: none;
    }

    .media-pill {
      min-height: 24px;
      display: inline-flex;
      align-items: center;
      padding: 0 9px;
      border-radius: 999px;
      background: rgba(8, 5, 19, 0.84);
      border: 1px solid rgba(71, 245, 255, 0.16);
      color: var(--text);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    }

    .media-pill-strong {
      background: linear-gradient(135deg, rgba(255, 138, 0, 0.94), rgba(255, 228, 79, 0.9));
      border-color: rgba(255, 228, 79, 0.35);
      color: #201500;
    }

    .launch-copy {
      display: grid;
      gap: 9px;
    }

    .launch-copy h2 {
      margin-bottom: 0;
      color: var(--text);
    }

    .instant-launch p,
    .launch-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .launch-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .launch-meta span {
      min-height: 28px;
      display: inline-flex;
      align-items: center;
      padding: 0 10px;
      border-radius: 10px;
      background: rgba(71, 245, 255, 0.09);
      border: 1px solid rgba(71, 245, 255, 0.16);
      color: #aaf8ff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .status-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      padding: 14px 22px;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
    }

    .status-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 14px;
      background: rgba(71, 245, 255, 0.08);
      border: 1px solid rgba(71, 245, 255, 0.12);
      color: var(--muted);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 12px;
    }

    .chip-strong {
      color: var(--text);
      font-weight: 700;
    }

    .chip-live::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--success);
      box-shadow: 0 0 12px rgba(106, 240, 165, 0.8);
    }

    .hero-marquee {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      padding: 0 22px 18px;
    }

    .hero-marquee span {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 16px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.16), rgba(71, 245, 255, 0.08)),
        rgba(71, 245, 255, 0.06);
      border: 1px solid rgba(71, 245, 255, 0.18);
      color: #effcff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .hero-marquee span::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--accent-4), var(--accent-3));
      box-shadow: 0 0 14px rgba(255, 79, 216, 0.36);
      flex: 0 0 auto;
    }

    .hero-marquee span::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.09) 48%, transparent 64%);
      transform: translateX(-110%);
      animation: radar-sheen 9s linear infinite;
      pointer-events: none;
    }

    .hero-marquee span:nth-child(2)::after {
      animation-delay: 1.5s;
    }

    .hero-marquee span:nth-child(3)::after {
      animation-delay: 3s;
    }

    .hero-marquee span:nth-child(4)::after {
      animation-delay: 4.5s;
    }

    .catalog {
      padding: 22px 0 50px;
    }

    .starter-strip,
    .runways-strip,
    .answer-strip,
    .discover,
    .signals-strip,
    .quest-strip,
    .library-strip,
    .support-strip,
    .catalog {
      content-visibility: auto;
      contain-intrinsic-size: 760px;
    }

    .hero-card a {
      color: #fff1c6;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 241, 198, 0.35);
    }

    .hero-card a:hover {
      border-bottom-color: rgba(255, 241, 198, 0.8);
    }

    .discover {
      padding: 0 0 10px;
    }

    .starter-strip {
      padding: 8px 0 10px;
    }

    .starter-shell {
      display: grid;
      grid-template-columns: minmax(210px, 0.55fr) minmax(0, 2.25fr);
      gap: 18px;
      align-items: stretch;
      padding: 22px;
      background:
        radial-gradient(circle at 6% 18%, rgba(255, 228, 79, 0.13), transparent 28%),
        linear-gradient(110deg, rgba(255, 79, 216, 0.13), rgba(71, 245, 255, 0.08)),
        rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(71, 245, 255, 0.17);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .starter-copy {
      display: grid;
      align-content: center;
      gap: 12px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(15, 11, 33, 0.66);
      border: 1px solid rgba(71, 245, 255, 0.12);
    }

    .starter-copy h2 {
      margin: 0;
      font-size: clamp(26px, 4vw, 38px);
      line-height: 1.02;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .starter-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .starter-actions,
    .starter-card-actions,
    .starter-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .starter-game-grid {
      display: grid;
      grid-template-columns: minmax(250px, 1.55fr) repeat(3, minmax(145px, 1fr));
      gap: 14px;
    }

    .starter-card {
      display: grid;
      gap: 12px;
      min-height: 100%;
      padding: 14px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(71, 245, 255, 0.08), rgba(255, 79, 216, 0.035)),
        rgba(15, 11, 33, 0.76);
      border: 1px solid rgba(71, 245, 255, 0.14);
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
    }

    .starter-card:first-child {
      padding: 16px;
      border-color: rgba(255, 228, 79, 0.3);
      background:
        radial-gradient(circle at 78% 16%, rgba(255, 228, 79, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(71, 245, 255, 0.12), rgba(255, 79, 216, 0.045)),
        rgba(15, 11, 33, 0.84);
    }

    .starter-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 228, 79, 0.44);
      background:
        linear-gradient(180deg, rgba(71, 245, 255, 0.11), rgba(255, 79, 216, 0.05)),
        rgba(15, 11, 33, 0.82);
      box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.11);
    }

    .starter-rank {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      color: #ffd4f3;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .starter-rank span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      color: #12091d;
      background: #ffe44f;
    }

    .starter-thumb {
      width: 100%;
      aspect-ratio: 16 / 11;
      overflow: hidden;
      position: relative;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(71, 245, 255, 0.14);
    }

    .starter-card:first-child .starter-thumb {
      aspect-ratio: 16 / 10;
      min-height: 198px;
      border-radius: 20px;
    }

    .starter-card-copy {
      display: grid;
      gap: 10px;
    }

    .starter-card h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.12;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .starter-card:first-child h3 {
      font-size: clamp(24px, 3vw, 32px);
    }

    .starter-card p,
    .starter-empty {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }

    .starter-card p {
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .starter-card:first-child p {
      -webkit-line-clamp: 3;
    }

    .starter-empty {
      grid-column: 1 / -1;
      padding: 18px;
      border-radius: 18px;
      border: 1px dashed rgba(71, 245, 255, 0.22);
      background: rgba(255, 255, 255, 0.04);
    }

    .runways-strip {
      padding: 8px 0 10px;
    }

    .runways-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      gap: 18px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .runways-shell::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 88px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 100%),
        linear-gradient(90deg, rgba(255, 79, 216, 0.18), rgba(71, 245, 255, 0.16));
      opacity: 0.58;
      pointer-events: none;
    }

    .runways-shell::after {
      content: "";
      position: absolute;
      inset: auto -110px -130px auto;
      width: 250px;
      height: 250px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 79, 216, 0.12), transparent 70%);
      pointer-events: none;
    }

    .runways-shell > * {
      position: relative;
      z-index: 1;
    }

    .runways-copy h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 38px);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .runways-copy p {
      max-width: 60ch;
    }

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

    .runway-card {
      display: grid;
      gap: 12px;
      min-height: 100%;
      padding: 20px;
      border-radius: 24px;
      text-decoration: none;
      color: var(--text);
      background:
        linear-gradient(145deg, rgba(255, 79, 216, 0.16), rgba(71, 245, 255, 0.08)),
        rgba(15, 11, 33, 0.78);
      border: 1px solid var(--line);
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .runway-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 228, 79, 0.45);
      background:
        linear-gradient(145deg, rgba(255, 79, 216, 0.2), rgba(71, 245, 255, 0.12)),
        rgba(15, 11, 33, 0.84);
      box-shadow:
        0 0 0 1px rgba(255, 79, 216, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .runway-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(71, 245, 255, 0.08);
      border: 1px solid rgba(71, 245, 255, 0.18);
      color: #d4fbff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .runway-card strong {
      font-size: 22px;
      line-height: 1.05;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .runway-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }

    .runway-cta {
      color: #fff7ca;
      font-family: "Lucida Console", "Courier New", monospace;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .answer-strip {
      padding: 8px 0 10px;
    }

    .answer-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      gap: 18px;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(71, 245, 255, 0.22);
      background:
        radial-gradient(circle at 10% 0, rgba(255, 79, 216, 0.16), transparent 32%),
        radial-gradient(circle at 95% 15%, rgba(71, 245, 255, 0.16), transparent 30%),
        linear-gradient(145deg, rgba(255, 79, 216, 0.08), rgba(71, 245, 255, 0.06)),
        rgba(15, 11, 33, 0.86);
      box-shadow:
        var(--shadow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .answer-shell::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 92px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 100%),
        linear-gradient(90deg, rgba(255, 79, 216, 0.18), rgba(71, 245, 255, 0.14));
      pointer-events: none;
    }

    .answer-shell > * {
      position: relative;
      z-index: 1;
    }

    .answer-copy {
      max-width: 760px;
    }

    .answer-copy h2 {
      margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .answer-copy p,
    .answer-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

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

    .answer-card {
      display: grid;
      gap: 12px;
      min-height: 100%;
      padding: 18px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(25, 18, 55, 0.74);
      border: 1px solid rgba(71, 245, 255, 0.12);
    }

    .answer-card h3 {
      margin: 0;
      color: #fff7ca;
      font-size: 20px;
      line-height: 1.1;
    }

    .answer-card a {
      align-self: end;
      width: fit-content;
      color: #aaf8ff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-decoration: none;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(170, 248, 255, 0.35);
    }

    .answer-card a:hover {
      border-bottom-color: rgba(170, 248, 255, 0.9);
    }

    .answer-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .answer-proof span {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 13px;
      border-radius: 999px;
      color: #f3f7ff;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(71, 245, 255, 0.14);
      font-size: 13px;
      font-weight: 700;
    }

    .discover-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
      gap: 22px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .discover-shell,
    .signals-shell,
    .library-shell,
    .panel {
      position: relative;
      overflow: hidden;
      box-shadow:
        var(--shadow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .discover-shell::before,
    .signals-shell::before,
    .library-shell::before,
    .panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 88px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 100%),
        linear-gradient(90deg, rgba(255, 79, 216, 0.18), rgba(71, 245, 255, 0.16));
      opacity: 0.58;
      pointer-events: none;
    }

    .discover-shell::after,
    .signals-shell::after,
    .library-shell::after,
    .panel::after {
      content: "";
      position: absolute;
      inset: auto -110px -130px auto;
      width: 250px;
      height: 250px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(71, 245, 255, 0.08), transparent 70%);
      pointer-events: none;
    }

    .discover-shell > *,
    .signals-shell > *,
    .library-shell > *,
    .panel > * {
      position: relative;
      z-index: 1;
    }

    .section-kicker {
      display: inline-block;
      margin: 0 0 10px;
      color: #aaf8ff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .discover-shell h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 38px);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .discover-shell p {
      max-width: 60ch;
    }

    .signals-strip {
      padding: 8px 0 10px;
    }

    .signals-shell {
      display: grid;
      gap: 18px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .signals-copy h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 38px);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

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

    .signal-panel {
      display: grid;
      gap: 14px;
      min-height: 100%;
      padding: 20px;
      background: rgba(15, 11, 33, 0.74);
      border: 1px solid var(--line);
      border-radius: 24px;
    }

    .signal-panel-featured,
    .signal-panel-spotlight {
      background:
        linear-gradient(145deg, rgba(255, 79, 216, 0.14), rgba(71, 245, 255, 0.08)),
        rgba(15, 11, 33, 0.8);
    }

    .signal-head {
      display: grid;
      gap: 8px;
    }

    .signal-head p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .signal-fill,
    .signal-list {
      display: grid;
      gap: 12px;
    }

    .special-games-list {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
      align-items: stretch;
    }

    .signal-empty {
      margin: 0;
      padding: 16px 18px;
      border-radius: 18px;
      border: 1px dashed rgba(71, 245, 255, 0.18);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.04);
    }

    .spotlight-card,
    .signal-card,
    .signal-slot {
      display: grid;
      gap: 14px;
      padding: 16px;
      border-radius: 22px;
      text-decoration: none;
      color: var(--text);
      background: rgba(71, 245, 255, 0.06);
      border: 1px solid rgba(71, 245, 255, 0.14);
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
    }

    .spotlight-card:hover,
    .signal-card:hover,
    .signal-slot:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 228, 79, 0.45);
      background: rgba(71, 245, 255, 0.1);
      box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.1);
    }

    .spotlight-card {
      grid-template-columns: minmax(0, 1.05fr) 220px;
      align-items: center;
    }

    .spotlight-copy {
      display: grid;
      gap: 10px;
    }

    .spotlight-badge,
    .signal-badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255, 79, 216, 0.16);
      border: 1px solid rgba(255, 79, 216, 0.22);
      color: #ffd4f3;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .spotlight-copy h3,
    .signal-card h3,
    .signal-slot h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .spotlight-copy p,
    .signal-card p,
    .signal-slot p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .spotlight-meta,
    .signal-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(71, 245, 255, 0.08);
      border: 1px solid rgba(71, 245, 255, 0.14);
      color: var(--muted);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .spotlight-thumb {
      width: 100%;
      max-width: 220px;
      aspect-ratio: 16 / 9;
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(71, 245, 255, 0.14);
      justify-self: end;
    }

    .spotlight-thumb .media-badges {
      left: 7px;
      right: 7px;
      bottom: 7px;
    }

    .spotlight-actions,
    .signal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .signal-card {
      grid-template-columns: 132px minmax(0, 1fr);
      align-items: center;
    }

    .signal-card-special {
      grid-template-columns: 1fr;
      gap: 0;
      overflow: hidden;
      padding: 0;
      min-height: 100%;
      background:
        linear-gradient(145deg, rgba(255, 196, 96, 0.14), rgba(109, 165, 255, 0.1)),
        rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 196, 96, 0.2);
    }

    .signal-card-special .signal-card-copy {
      display: grid;
      gap: 12px;
      padding: 16px;
    }

    .signal-card-special .signal-actions .button {
      flex: 1 1 132px;
      justify-content: center;
    }

    .signal-card-thumb {
      width: 132px;
      height: 94px;
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(71, 245, 255, 0.14);
    }

    .signal-card-special .signal-card-thumb {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 10;
      min-height: 0;
      border-radius: 22px 22px 0 0;
      border: 0;
      border-bottom: 1px solid rgba(71, 245, 255, 0.16);
    }

    .special-hook {
      display: grid;
      gap: 5px;
      padding: 12px 13px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(71, 245, 255, 0.1), rgba(255, 228, 79, 0.08));
      border: 1px solid rgba(71, 245, 255, 0.14);
    }

    .special-hook strong {
      color: #f8fbff;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .special-hook span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .signal-card-thumb .media-badges {
      left: 6px;
      right: 6px;
      bottom: 6px;
    }

    .signal-card-thumb .media-pill,
    .library-thumb-frame .media-pill {
      min-height: 20px;
      padding: 0 7px;
      font-size: 9px;
    }

    .signal-card-copy {
      display: grid;
      gap: 8px;
    }

    .signal-card-copy h3 {
      font-size: 17px;
    }

    .signal-card-copy p {
      font-size: 14px;
    }

    .signal-slot {
      background:
        linear-gradient(145deg, rgba(255, 79, 216, 0.16), rgba(71, 245, 255, 0.06)),
        rgba(71, 245, 255, 0.06);
    }

    .quest-strip {
      padding: 8px 0 10px;
    }

    .quest-shell {
      display: grid;
      gap: 20px;
      padding: 24px;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 12% 18%, rgba(255, 79, 216, 0.18), transparent 32%),
        radial-gradient(circle at 94% 4%, rgba(71, 245, 255, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 228, 79, 0.1), rgba(13, 10, 31, 0.86) 48%, rgba(71, 245, 255, 0.09)),
        rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(71, 245, 255, 0.2);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .quest-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(71, 245, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 79, 216, 0.055) 1px, transparent 1px);
      background-size: 30px 30px;
      mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 88%);
    }

    .quest-copy,
    .quest-grid {
      position: relative;
      z-index: 1;
    }

    .quest-copy h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 38px);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .quest-copy p {
      max-width: 66ch;
    }

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

    .quest-card {
      display: grid;
      gap: 14px;
      min-height: 100%;
      padding: 16px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(71, 245, 255, 0.09), rgba(255, 79, 216, 0.035)),
        rgba(12, 9, 29, 0.78);
      border: 1px solid rgba(71, 245, 255, 0.16);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    }

    .quest-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .quest-step,
    .quest-badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 11px;
      border-radius: 999px;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .quest-step {
      color: #12091d;
      background: #ffe44f;
    }

    .quest-badge {
      color: #ffd4f3;
      background: rgba(255, 79, 216, 0.14);
      border: 1px solid rgba(255, 79, 216, 0.24);
    }

    .quest-thumb {
      width: 100%;
      aspect-ratio: 16 / 8.5;
      min-height: 138px;
      overflow: hidden;
      position: relative;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(71, 245, 255, 0.14);
    }

    .quest-card-copy {
      display: grid;
      gap: 10px;
    }

    .quest-card h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.08;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .quest-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }

    .quest-target {
      display: grid;
      gap: 4px;
      padding: 12px;
      border-radius: 16px;
      background: rgba(71, 245, 255, 0.07);
      border: 1px solid rgba(71, 245, 255, 0.13);
    }

    .quest-target-label,
    .quest-target span:last-child {
      color: var(--muted);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .quest-target strong {
      font-size: 16px;
      line-height: 1.25;
    }

    .quest-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .quest-empty {
      margin: 0;
      padding: 18px 20px;
      border-radius: 18px;
      border: 1px dashed rgba(71, 245, 255, 0.28);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.05);
    }

    .library-strip {
      padding: 8px 0 10px;
    }

    .library-shell {
      display: grid;
      gap: 18px;
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .library-copy h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 4vw, 38px);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

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

    .library-panel {
      display: grid;
      gap: 14px;
      padding: 20px;
      background: rgba(15, 11, 33, 0.7);
      border: 1px solid var(--line);
      border-radius: 24px;
    }

    .library-head {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
    }

    .library-head h3 {
      margin: 0;
      font-size: 19px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .library-list {
      display: grid;
      gap: 12px;
    }

    .library-empty {
      margin: 0;
      padding: 16px 18px;
      border-radius: 20px;
      border: 1px dashed rgba(71, 245, 255, 0.18);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.04);
    }

    .library-item {
      display: grid;
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 20px;
      text-decoration: none;
      color: var(--text);
      background: rgba(71, 245, 255, 0.06);
      border: 1px solid rgba(71, 245, 255, 0.12);
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
    }

    .library-item:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 228, 79, 0.45);
      background: rgba(71, 245, 255, 0.1);
    }

    .library-thumb-frame,
    .library-thumb {
      width: 92px;
      height: 64px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
    }

    .library-thumb-frame .media-badges {
      left: 6px;
      right: 6px;
      bottom: 6px;
    }

    .library-thumb {
      display: grid;
      place-items: center;
      color: #d4fbff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .library-item strong {
      display: block;
      font-size: 17px;
      line-height: 1.2;
    }

    .library-item span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .support-strip {
      padding: 8px 0 12px;
    }

    .support-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
      gap: 20px;
      padding: 24px;
      background:
        linear-gradient(145deg, rgba(255, 79, 216, 0.14), rgba(71, 245, 255, 0.08)),
        rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .support-shell::before {
      content: "";
      position: absolute;
      inset: auto -90px -120px auto;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 79, 216, 0.2), transparent 68%);
      filter: blur(8px);
      pointer-events: none;
    }

    .support-shell > * {
      position: relative;
      z-index: 1;
    }

    .support-copy {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .support-copy h2 {
      margin: 0;
      font-size: clamp(26px, 4vw, 38px);
      line-height: 1.08;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .support-copy p {
      margin: 0;
      color: var(--muted);
      line-height: 1.68;
    }

    .support-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .support-stage {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .support-stage-head {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .support-stage-copy h3 {
      margin: 0;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 18px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .support-stage-copy p,
    .support-note {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .support-note {
      font-size: 12px;
    }

    .support-controls {
      display: flex;
      gap: 8px;
    }

    .support-icon-button {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(71, 245, 255, 0.2);
      border-radius: 12px;
      background: rgba(71, 245, 255, 0.08);
      color: var(--text);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
    }

    .support-icon-button:hover:not(:disabled) {
      transform: translateY(-1px);
      border-color: rgba(255, 228, 79, 0.45);
      background: rgba(255, 79, 216, 0.14);
      box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.16);
    }

    .support-icon-button:disabled {
      opacity: 0.42;
      cursor: default;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .support-empty {
      margin: 0;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px dashed rgba(71, 245, 255, 0.18);
      color: var(--muted);
    }

    .support-card {
      position: relative;
      overflow: hidden;
      display: grid;
      gap: 12px;
      min-height: 100%;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(71, 245, 255, 0.18);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
        rgba(14, 10, 30, 0.95);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
    }

    .support-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 79, 216, 0), rgba(71, 245, 255, 0.88), rgba(255, 79, 216, 0));
      opacity: 0.92;
      pointer-events: none;
    }

    .support-card:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 228, 79, 0.36);
      box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
    }

    .support-card-top,
    .support-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      justify-content: space-between;
    }

    .support-card-badge,
    .support-mini {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(8, 5, 19, 0.82);
      border: 1px solid rgba(71, 245, 255, 0.16);
      color: var(--muted);
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .support-card-badge {
      color: #fff7ca;
    }

    .support-card h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.2;
    }

    .support-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.62;
    }

    .support-link {
      width: fit-content;
      margin-top: auto;
    }

    .support-card-loot {
      background:
        radial-gradient(circle at top right, rgba(255, 79, 216, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(255, 79, 216, 0.14), rgba(255, 255, 255, 0.03)),
        rgba(14, 10, 30, 0.95);
    }

    .support-card-build {
      background:
        radial-gradient(circle at top right, rgba(71, 245, 255, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(71, 245, 255, 0.14), rgba(255, 255, 255, 0.03)),
        rgba(14, 10, 30, 0.95);
    }

    .support-card-ops {
      background:
        radial-gradient(circle at top right, rgba(255, 228, 79, 0.14), transparent 40%),
        linear-gradient(180deg, rgba(255, 138, 0, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(14, 10, 30, 0.95);
    }

    .retro-presets {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .retro-preset {
      display: grid;
      gap: 6px;
      min-height: 86px;
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(71, 245, 255, 0.2);
      background: rgba(9, 16, 32, 0.66);
      color: var(--text);
      text-align: left;
      cursor: pointer;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
    }

    .retro-preset:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 79, 216, 0.45);
      box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.12);
    }

    .retro-preset strong {
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .retro-preset span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .retro-preset.active {
      border-color: rgba(71, 245, 255, 0.65);
      background: rgba(71, 245, 255, 0.12);
      box-shadow: 0 0 0 1px rgba(71, 245, 255, 0.24), 0 0 24px rgba(71, 245, 255, 0.12);
    }

    .discover-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-content: start;
      justify-content: flex-end;
    }

    .discover-link {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      padding: 0 16px;
      border-radius: 14px;
      text-decoration: none;
      font-weight: 700;
      color: var(--text);
      background: rgba(71, 245, 255, 0.08);
      border: 1px solid rgba(71, 245, 255, 0.18);
      font-family: "Lucida Console", "Courier New", monospace;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
    }

    .discover-link:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 206, 69, 0.45);
      background: rgba(255, 255, 255, 0.12);
    }

    .panel {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--panel-strong);
      overflow: hidden;
    }

    .toolbar {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;
      gap: 14px;
      align-items: center;
      padding: 22px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.12), rgba(71, 245, 255, 0.06)),
        rgba(255, 255, 255, 0.03);
    }

    .toolbar h2 {
      margin: 0;
      font-size: clamp(24px, 4vw, 36px);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .toolbar p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .filter-bar {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.55fr) minmax(220px, 0.7fr);
      gap: 14px;
      padding: 18px 22px 0;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #cbd8ec;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 50px;
      padding: 0 16px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
      outline: none;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .field input::placeholder {
      color: #9fb0ca;
    }

    .field input:focus,
    .field select:focus {
      border-color: rgba(255, 206, 69, 0.6);
      box-shadow: 0 0 0 3px rgba(255, 206, 69, 0.14);
    }

    .field select option {
      color: #07111f;
    }

    .toolbar-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .page-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }

    .page-nav-top {
      justify-content: flex-end;
    }

    .page-nav-bottom {
      margin: 0 22px 24px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background:
        linear-gradient(135deg, rgba(255, 79, 216, 0.1), rgba(71, 245, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(12px);
    }

    .page-nav-copy {
      display: grid;
      gap: 4px;
    }

    .page-nav-copy strong {
      font-size: 15px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .page-nav-copy span {
      color: var(--muted);
      font-size: 14px;
    }

    .page-nav-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .result-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px 0;
    }

    .result-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .button[disabled] {
      opacity: 0.42;
      cursor: not-allowed;
      transform: none;
    }

    .catalog-state {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 22px 0;
      padding: 14px 16px;
      border: 1px dashed rgba(71, 245, 255, 0.18);
      border-radius: 18px;
      background: rgba(71, 245, 255, 0.04);
      color: var(--muted);
      min-height: 56px;
    }

    .catalog-state strong {
      color: var(--text);
    }

    .catalog-state.loading::before,
    .catalog-state.error::before {
      content: "";
      width: 14px;
      height: 14px;
      border-radius: 999px;
      flex: 0 0 auto;
    }

    .catalog-state.loading::before {
      border: 2px solid rgba(255, 255, 255, 0.22);
      border-top-color: var(--accent-2);
      animation: spin 0.9s linear infinite;
    }

    .catalog-state.error::before {
      background: var(--danger);
      box-shadow: 0 0 10px rgba(255, 134, 151, 0.65);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
      gap: 22px;
      padding: 18px 22px 24px;
    }

    .game-card {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      min-height: 100%;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        var(--card);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
      transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
    }

    .game-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 84px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 100%),
        linear-gradient(90deg, rgba(255, 79, 216, 0.18), rgba(71, 245, 255, 0.16));
      opacity: 0.9;
      pointer-events: none;
      z-index: 0;
    }

    .game-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .game-card-playable {
      cursor: pointer;
      transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
    }

    .game-card-playable:hover,
    .game-card-playable:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(255, 228, 79, 0.34);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
      outline: none;
    }

    .game-art {
      position: relative;
      aspect-ratio: 16 / 10;
      min-height: clamp(240px, 19vw, 310px);
      background: linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(65, 209, 255, 0.16));
      overflow: hidden;
    }

    .game-art::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%, rgba(8, 5, 19, 0.44) 100%);
      pointer-events: none;
    }

    .game-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 220ms ease, filter 220ms ease;
    }

    .game-card-playable:hover .game-art img {
      transform: scale(1.04);
      filter: saturate(1.06);
    }

    .game-art-frame {
      width: 100%;
      height: 100%;
      border-radius: 0;
    }

    .game-score {
      position: absolute;
      top: 12px;
      left: 12px;
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 12px;
      background: rgba(10, 9, 24, 0.82);
      border: 1px solid rgba(157, 255, 139, 0.18);
      color: #d7ff8d;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 12px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .game-body {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto auto 1fr auto;
      gap: 12px;
      padding: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 32%);
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 12px;
      background: rgba(71, 245, 255, 0.08);
      border: 1px solid rgba(71, 245, 255, 0.12);
      color: #d6e5ff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .tag-retro {
      background: linear-gradient(135deg, var(--success), #ebff7e);
      border-color: rgba(235, 255, 126, 0.45);
      color: #152009;
    }

    .game-card h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.04;
    }

    .game-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }

    .game-card footer {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 2px;
    }

    .game-card footer .button {
      flex: 1 1 132px;
      justify-content: center;
    }

    .button-small {
      min-height: 42px;
      padding: 0 14px;
      font-size: 14px;
      font-weight: 800;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    .game-card:focus-visible {
      outline: 3px solid rgba(255, 228, 79, 0.88);
      outline-offset: 3px;
      box-shadow: 0 0 0 6px rgba(71, 245, 255, 0.16);
    }

    .empty-state {
      padding: 0 22px 28px;
      color: var(--muted);
    }

    .player {
      --player-frame-ratio: 4 / 3;
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(3, 8, 16, 0.78);
      backdrop-filter: blur(12px);
      z-index: 10;
    }

    .player.open {
      display: flex;
    }

    .player-shell {
      width: min(1380px, calc(100vw - 18px));
      max-height: calc(100vh - 18px);
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      background: rgba(4, 12, 22, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 30px;
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    }

    .player-top {
      display: flex;
      gap: 14px;
      justify-content: space-between;
      align-items: flex-start;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .player-top > div:first-child {
      min-width: 0;
    }

    .player-top h2 {
      margin: 0;
      font-size: clamp(22px, 4vw, 34px);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .player-top p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .player-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .player-actions > * {
      flex: 0 0 auto;
    }

    .mobile-play-dock {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 9;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(11, 9, 26, 0.95);
      border: 1px solid rgba(71, 245, 255, 0.2);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(12px);
    }

    .mobile-play-copy {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    .mobile-play-kicker {
      color: #aaf8ff;
      font-family: "Lucida Console", "Courier New", monospace;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .mobile-play-copy strong {
      font-size: 15px;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .frame-wrap {
      min-height: 0;
      padding: 18px;
      overflow: auto;
      display: grid;
      place-items: center;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        #030a14;
    }

    .frame-shell {
      width: min(100%, 1240px);
      margin: 0 auto;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: #02060d;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      aspect-ratio: var(--player-frame-ratio);
    }

    .frame-shell iframe {
      display: block;
      width: 100%;
      height: min(84vh, 940px);
      border: 0;
      background: #02060d;
    }

    .player[data-orientation="portrait"] {
      padding: 10px;
    }

    .player[data-orientation="portrait"] .player-shell {
      width: min(980px, calc(100vw - 12px));
      height: min(calc(100vh - 12px), 920px);
      max-height: calc(100vh - 12px);
    }

    .player[data-orientation="portrait"] .player-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 16px;
    }

    .player[data-orientation="portrait"] .player-top h2 {
      font-size: clamp(24px, 6vw, 38px);
    }

    .player[data-orientation="portrait"] .player-actions {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .player[data-orientation="portrait"] .player-actions > * {
      width: 100%;
    }

    .player[data-orientation="portrait"] .frame-wrap {
      padding: 12px;
      overflow: hidden;
    }

    .player[data-orientation="portrait"] .frame-shell {
      width: auto;
      height: min(100%, 920px);
      max-width: min(100%, 720px);
      max-height: 100%;
      margin: 0;
    }

    .player[data-orientation="portrait"] .frame-shell iframe {
      width: 100%;
      height: 100%;
      max-height: none;
    }

    .player.player-original {
      padding: 6px;
    }

    .player.player-original .player-shell {
      width: min(720px, calc(100vw - 12px));
      height: min(calc(100vh - 12px), 1080px);
      max-height: calc(100vh - 12px);
      border-radius: 24px;
    }

    .player.player-original .player-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 8px 12px;
      padding: 9px 10px 9px 14px;
    }

    .player.player-original .player-top h2 {
      font-size: clamp(18px, 3vw, 24px);
      line-height: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .player.player-original .player-top p {
      display: none;
    }

    .player.player-original .player-actions {
      width: auto;
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .player.player-original .player-actions > * {
      width: auto;
      min-height: 36px;
      padding: 8px 11px;
      font-size: 12px;
      line-height: 1;
      white-space: nowrap;
    }

    .player.player-original .frame-wrap {
      padding: 6px;
      overflow: hidden;
    }

    .player.player-original[data-orientation="portrait"] .frame-shell {
      width: auto;
      height: 100%;
      max-width: min(100%, 560px);
      max-height: 100%;
      border-radius: 18px;
    }

    .player.player-original[data-orientation="portrait"] .frame-shell iframe {
      width: 100%;
      height: 100%;
    }

    .frame-shell:fullscreen,
    .frame-shell:-webkit-full-screen {
      width: 100vw;
      height: 100vh;
      max-width: none;
      max-height: none;
      border: 0;
      border-radius: 0;
      background: #02060d;
      box-shadow: none;
    }

    .frame-shell:fullscreen iframe,
    .frame-shell:-webkit-full-screen iframe {
      width: 100%;
      height: 100%;
      max-height: none;
      border-radius: 0;
    }

    .player:fullscreen,
    .player:-webkit-full-screen {
      padding: 0;
      background: rgba(2, 6, 13, 0.96);
    }

    .player:fullscreen::backdrop,
    .player:-webkit-full-screen::backdrop {
      background: rgba(2, 6, 13, 0.98);
    }

    .player:fullscreen .player-shell,
    .player:-webkit-full-screen .player-shell {
      width: 100vw;
      height: 100vh;
      max-height: 100vh;
      border-radius: 0;
      border: 0;
    }

    .player:fullscreen .frame-wrap,
    .player:-webkit-full-screen .frame-wrap {
      padding: 10px;
    }

    .player:fullscreen .frame-shell,
    .player:-webkit-full-screen .frame-shell {
      width: 100%;
      max-width: none;
      height: 100%;
      border-radius: 0;
      border-left: 0;
      border-right: 0;
    }

    .player:fullscreen .frame-shell iframe,
    .player:-webkit-full-screen .frame-shell iframe {
      height: calc(100vh - 106px);
      max-height: none;
      border-radius: 0;
    }

    .player[data-orientation="portrait"]:fullscreen .frame-shell,
    .player[data-orientation="portrait"]:-webkit-full-screen .frame-shell {
      width: auto;
      height: 100%;
      max-width: min(100%, 900px);
    }

    .player[data-orientation="portrait"]:fullscreen .frame-shell iframe,
    .player[data-orientation="portrait"]:-webkit-full-screen .frame-shell iframe {
      width: 100%;
      height: 100%;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

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

    @keyframes radar-sheen {
      0% {
        transform: translateX(-115%);
      }

      14%,
      100% {
        transform: translateX(115%);
      }
    }

    @media (max-width: 900px) {
      .site-chrome {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 24px 0;
      }

      .site-nav {
        justify-content: flex-start;
      }

      .hero-top {
        grid-template-columns: 1fr;
      }

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

      .starter-shell {
        grid-template-columns: 1fr;
      }

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

      .starter-card:first-child {
        grid-column: 1 / -1;
      }

      .discover-shell {
        grid-template-columns: 1fr;
      }

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

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

      .signals-grid {
        grid-template-columns: 1fr;
      }

      .quest-grid {
        grid-template-columns: 1fr;
      }

      .library-grid {
        grid-template-columns: 1fr;
      }

      .support-shell {
        grid-template-columns: 1fr;
      }

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

      .toolbar {
        grid-template-columns: 1fr;
      }

      .toolbar-actions {
        justify-content: flex-start;
      }

      .page-nav-top {
        justify-content: flex-start;
      }

      .status-row {
        align-items: flex-start;
      }
    }

    @media (max-width: 760px) {
      body {
        padding-bottom: 92px;
      }

      .filter-bar {
        grid-template-columns: 1fr;
      }

      .result-bar {
        align-items: flex-start;
      }

      .mobile-play-dock:not([hidden]) {
        display: flex;
      }

      .mobile-play-dock .button {
        min-width: 92px;
      }
    }

    @media (max-width: 640px) {
      .wrap {
        width: min(calc(100% - 20px), var(--content));
      }

      .site-chrome {
        padding-left: 16px;
        padding-right: 16px;
      }

      .site-nav {
        width: 100%;
      }

      .site-nav a {
        flex: 1 1 calc(50% - 10px);
      }

      .hero-top,
      .starter-shell,
      .runways-shell,
      .answer-shell,
      .discover-shell,
      .signals-shell,
      .quest-shell,
      .library-shell,
      .support-shell,
      .toolbar,
      .filter-bar,
      .result-bar,
      .cards,
      .frame-wrap {
        padding-left: 16px;
        padding-right: 16px;
      }

      .status-row,
      .catalog-state,
      .page-nav-bottom {
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero-marquee {
        grid-template-columns: 1fr;
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .instant-launch {
        grid-column: auto;
      }

      .starter-game-grid {
        grid-template-columns: 1fr;
      }

      .starter-card:first-child {
        grid-column: auto;
      }

      .starter-card:first-child .starter-thumb {
        min-height: 0;
      }

      .runways-grid {
        grid-template-columns: 1fr;
      }

      .answer-grid {
        grid-template-columns: 1fr;
      }

      .spotlight-card,
      .signal-card {
        grid-template-columns: 1fr;
      }

      .launch-card-grid {
        grid-template-columns: 1fr;
      }

      .launch-thumb-frame,
      .launch-thumb-placeholder {
        width: 100%;
      }

      .spotlight-thumb {
        max-width: none;
        justify-self: stretch;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .support-shell {
        padding: 18px;
      }

      .support-grid {
        grid-template-columns: 1fr;
      }

      .support-stage-head {
        align-items: flex-start;
      }

      .support-controls {
        width: 100%;
        justify-content: flex-start;
      }

      .player {
        padding: 10px;
      }

      .player-top {
        padding: 16px;
      }

      .frame-shell iframe {
        height: 74vh;
      }

      .player[data-orientation="portrait"] .player-actions {
        grid-template-columns: 1fr;
      }

      .player[data-orientation="portrait"] .frame-shell iframe {
        height: 100%;
      }

      .player.player-original {
        padding: 4px;
      }

      .player.player-original .player-shell {
        width: min(100vw - 8px, 620px);
        height: calc(100vh - 8px);
        border-radius: 18px;
      }

      .player.player-original .player-top {
        grid-template-columns: 1fr;
        padding: 8px;
      }

      .player.player-original .player-top h2 {
        display: none;
      }

      .player.player-original .player-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
      }

      .player.player-original .player-actions > * {
        width: 100%;
        min-width: 0;
        min-height: 34px;
        padding: 7px 8px;
        font-size: 11px;
      }

      .player.player-original .frame-wrap {
        padding: 4px;
      }
    }

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