﻿* {
      box-sizing: border-box;
    }
    html,
    body {
      margin: 0;
      min-height: 100%;
      background: #000;
      color: #e8e8ef;
      font-family: "JetBrains Mono", ui-monospace, monospace;
    }
    .cosmos {
      position: fixed;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 130% 85% at 50% 115%, var(--cosmos-glow) 0%, transparent 55%),
        radial-gradient(ellipse 90% 55% at 8% 12%, var(--cosmos-glow-2) 0%, transparent 48%),
        radial-gradient(ellipse 70% 45% at 94% 22%, var(--cosmos-glow-3) 0%, transparent 42%),
        linear-gradient(180deg, #000 0%, #050508 50%, #000 100%);
    }
    .cosmos::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(1px 1px at 14% 22%, rgba(255, 255, 255, 0.28), transparent),
        radial-gradient(1px 1px at 76% 14%, rgba(255, 255, 255, 0.22), transparent),
        radial-gradient(1px 1px at 42% 78%, rgba(255, 255, 255, 0.16), transparent);
      opacity: 0.75;
    }
    .wrap {
      position: relative;
      z-index: 1;
      max-width: 76rem;
      margin: 0 auto;
      padding: 1.25rem 1.25rem 2.5rem;
    }
    .top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.25rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
    }
    .brand {
      display: flex;
      align-items: baseline;
      gap: 0.65rem;
    }
    h1 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
      color: #9cdcfe;
      letter-spacing: 0.02em;
    }
    .top-meta {
      font-size: 0.72rem;
      color: rgba(156, 220, 254, 0.45);
      font-weight: 500;
    }
    .top-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }
    .back {
      color: var(--accent-soft);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      border: 1px solid rgba(var(--accent-rgb), 0.35);
      padding: 0.4rem 0.8rem;
      border-radius: 0.35rem;
      background: rgba(8, 10, 18, 0.6);
    }
    .back:hover {
      border-color: rgba(var(--accent-rgb), 0.55);
      color: #9cdcfe;
    }
    .toolbar {
      margin-bottom: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .search-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .search-field {
      flex: 1;
      min-width: min(100%, 14rem);
      max-width: 28rem;
      position: relative;
    }
    .search-field svg {
      position: absolute;
      left: 0.85rem;
      top: 50%;
      transform: translateY(-50%);
      width: 1rem;
      height: 1rem;
      stroke: rgba(156, 220, 254, 0.4);
      fill: none;
      stroke-width: 2;
      pointer-events: none;
    }
    #game-search {
      width: 100%;
      padding: 0.65rem 0.75rem 0.65rem 2.4rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(var(--accent-rgb), 0.35);
      background: rgba(6, 8, 14, 0.85);
      color: #d4d4d4;
      font: inherit;
      font-size: 0.82rem;
      outline: none;
    }
    #game-search::placeholder {
      color: rgba(156, 220, 254, 0.3);
    }
    #game-search:focus {
      border-color: rgba(var(--accent-rgb), 0.55);
      box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.15);
    }
    .search-field:focus-within svg {
      stroke: rgba(156, 220, 254, 0.65);
    }
    #game-count {
      margin: 0;
      font-size: 0.72rem;
      color: rgba(156, 220, 254, 0.5);
      white-space: nowrap;
    }
    #game-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      align-items: center;
    }
    .cat-chip {
      font: inherit;
      font-size: 0.72rem;
      font-weight: 500;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(var(--accent-rgb), 0.28);
      background: rgba(8, 10, 18, 0.5);
      color: rgba(200, 210, 230, 0.85);
      cursor: pointer;
      transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
    }
    .cat-chip:hover {
      border-color: rgba(var(--accent-rgb), 0.45);
      color: #c8d4e8;
    }
    .cat-chip.is-active {
      border-color: var(--accent);
      background: rgba(var(--accent-rgb), 0.22);
      color: #e8f0ff;
    }
    .cat-chip.cat-chip--popularity {
      border-style: dashed;
      border-color: rgba(var(--accent-rgb), 0.42);
    }
    .cat-chip.cat-chip--popularity.is-active {
      border-style: solid;
    }
    .cat-chip.cat-chip--custom {
      border-style: dashed;
      border-color: rgba(var(--accent-rgb), 0.48);
    }
    .game-custom-dialog {
      margin: auto;
      padding: 0;
      max-width: min(22rem, calc(100vw - 2rem));
      border: none;
      border-radius: 0.65rem;
      background: linear-gradient(165deg, rgba(22, 26, 44, 0.98) 0%, rgba(10, 12, 22, 0.99) 100%);
      color: #e8e8ef;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
    }
    .game-custom-dialog::backdrop {
      background: rgba(0, 0, 0, 0.72);
      backdrop-filter: blur(4px);
    }
    .game-custom-form {
      padding: 1.1rem 1.15rem 1.15rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .game-custom-form-title {
      margin: 0 0 0.15rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #9cdcfe;
    }
    .game-custom-label {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      font-size: 0.68rem;
      font-weight: 500;
      color: rgba(156, 220, 254, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .game-custom-label input {
      font: inherit;
      font-size: 0.85rem;
      text-transform: none;
      letter-spacing: normal;
      padding: 0.55rem 0.65rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(var(--accent-rgb), 0.45);
      background: rgba(6, 8, 14, 0.9);
      color: #d4d4d4;
      outline: none;
    }
    .game-custom-label input:focus {
      border-color: var(--accent-soft);
    }
    .game-custom-hint {
      margin: 0;
      font-size: 0.65rem;
      line-height: 1.45;
      color: rgba(170, 186, 214, 0.72);
      text-transform: none;
      letter-spacing: normal;
    }
    .game-custom-actions {
      display: flex;
      gap: 0.5rem;
      justify-content: flex-end;
      margin-top: 0.35rem;
    }
    .game-custom-btn {
      font: inherit;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.45rem 0.85rem;
      border-radius: 0.35rem;
      cursor: pointer;
      border: 1px solid rgba(var(--accent-rgb), 0.4);
      background: rgba(8, 10, 18, 0.8);
      color: rgba(200, 210, 230, 0.95);
    }
    .game-custom-btn.primary {
      border-color: rgba(var(--accent-rgb), 0.65);
      background: linear-gradient(180deg, var(--accent) 0%, rgba(var(--accent-rgb), 0.82) 100%);
      color: #0a0c12;
    }
    .game-custom-btn:hover {
      filter: brightness(1.06);
    }
    #game-pinned-slots {
      display: grid;
      gap: 0.75rem;
      grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
      margin-bottom: 1rem;
    }
    #game-pinned-slots[hidden] {
      display: none !important;
    }
    #game-slots {
      display: grid;
      gap: 0.75rem;
      grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
    }
    .game-card-wrap.is-hidden {
      display: none;
    }
    .game-card-wrap {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(var(--accent-rgb), 0.28);
      border-radius: 0.45rem;
      overflow: hidden;
      background: rgba(6, 8, 14, 0.72);
      transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }
    .game-card-wrap:hover {
      border-color: rgba(var(--accent-rgb), 0.45);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    }
    .game-card {
      display: flex;
      flex-direction: column;
      flex: 1;
      text-decoration: none;
      color: inherit;
      min-height: 0;
    }
    .game-card-cover {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      display: block;
      background: rgba(0, 0, 0, 0.35);
    }
    .game-card-meta {
      padding: 0.55rem 0.65rem 0.5rem;
    }
    .game-card-meta h2 {
      margin: 0 0 0.35rem;
      font-size: 0.72rem;
      font-weight: 600;
      color: #d8dde8;
      line-height: 1.35;
    }
    .game-card-tag {
      display: inline-block;
      font-size: 0.58rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(var(--accent-rgb), 0.85);
      padding: 0.12rem 0.35rem;
      border-radius: 0.2rem;
      background: rgba(var(--accent-rgb), 0.12);
    }
    .game-card-plays {
      display: block;
      margin-top: 0.38rem;
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      color: rgba(170, 186, 214, 0.82);
    }
    .game-card-author {
      margin: 0;
      padding: 0 0.65rem 0.55rem;
      font-size: 0.62rem;
      color: rgba(156, 220, 254, 0.42);
      line-height: 1.35;
    }
    .game-card-author-link {
      color: rgba(var(--accent-rgb), 0.9);
      text-decoration: none;
    }
    .game-card-author-link:hover {
      text-decoration: underline;
    }
    .empty-state {
      margin: 2rem 0 0;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(156, 220, 254, 0.45);
    }
    .empty-state.is-hidden {
      display: none;
    }
    #game-slots.is-error {
      display: block;
      color: rgba(244, 135, 113, 0.9);
      font-size: 0.88rem;
    }
    button.game-card {
      display: flex;
      flex-direction: column;
      flex: 1;
      width: 100%;
      min-height: 0;
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      font: inherit;
      color: inherit;
      text-align: left;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
    }
    .game-launch {
      position: fixed;
      inset: 0;
      z-index: 50;
      display: none;
      flex-direction: column;
      padding: 0;
      pointer-events: none;
    }
    .game-launch.is-open {
      display: flex;
      pointer-events: auto;
    }
    body.game-launch-active {
      overflow: hidden;
    }
    .game-launch-panel {
      position: relative;
      z-index: 1;
      flex: 1;
      width: 100%;
      min-height: 0;
      height: 100%;
      padding: 0;
      border-radius: 0;
      border: none;
      background: #050508;
      display: flex;
      flex-direction: column;
      box-shadow: none;
    }
    .game-launch-close {
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0.55rem;
      background: rgba(12, 14, 22, 0.75);
      color: rgba(210, 218, 240, 0.92);
      font: inherit;
      line-height: 1;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
    }
    .game-launch-close svg {
      width: 1.1rem;
      height: 1.1rem;
    }
    .game-launch-close:hover {
      background: rgba(var(--accent-rgb), 0.22);
      border-color: rgba(var(--accent-rgb), 0.35);
      color: #fff;
    }
    .game-launch-frame {
      flex: 1;
      min-height: 0;
      margin: max(0.35rem, env(safe-area-inset-top)) max(0.5rem, env(safe-area-inset-right))
        max(0.35rem, env(safe-area-inset-bottom)) max(0.5rem, env(safe-area-inset-left));
      border-radius: 0.85rem;
      border: 1px solid rgba(var(--accent-rgb), 0.22);
      background: #000;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    }
    .game-launch-viewport {
      position: relative;
      width: 100%;
      flex: 1 1 auto;
      min-height: 0;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: min(1.25rem, 4vw);
      overflow: hidden;
    }
    .game-launch-panel.is-playing .game-launch-viewport {
      padding: 0;
    }
    .game-launch-preview-stack {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.85rem;
      max-width: 100%;
      transition: opacity 0.28s ease;
    }
    .game-launch-panel.is-playing .game-launch-preview-stack {
      opacity: 0;
      pointer-events: none;
    }
    .game-launch-cover {
      position: relative;
      width: min(72vmin, 22rem, 52vh);
      height: min(72vmin, 22rem, 52vh);
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      border-radius: 0.9rem;
      border: 1px solid rgba(var(--accent-rgb), 0.35);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
      flex-shrink: 0;
    }
    .game-launch-iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      z-index: 1;
      background: #000;
    }
    .game-launch-frame-footer {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem 0.85rem;
      padding: 0.5rem max(0.85rem, env(safe-area-inset-right)) max(0.55rem, env(safe-area-inset-bottom))
        max(0.85rem, env(safe-area-inset-left));
      border-top: 1px solid rgba(var(--accent-rgb), 0.22);
      background: rgba(8, 10, 18, 0.92);
    }
    .game-launch-meta {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      margin: 0;
      text-align: left;
      flex: 1;
      min-width: 0;
    }
    .game-launch-icon-sm {
      width: 2.35rem;
      height: 2.35rem;
      flex-shrink: 0;
      object-fit: cover;
      border-radius: 0.4rem;
      border: 1px solid rgba(var(--accent-rgb), 0.28);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
      background: rgba(0, 0, 0, 0.35);
    }
    .game-launch-title {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 600;
      color: #e8eef8;
      line-height: 1.3;
      letter-spacing: 0.015em;
      flex: 1;
      min-width: 0;
    }
    .game-launch-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.45rem;
      flex-shrink: 0;
      align-self: center;
    }
    .game-launch-pinned {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      max-width: min(42vw, 14rem);
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0.1rem 0;
      scrollbar-width: thin;
    }
    .game-launch-pinned:empty {
      display: none;
    }
    .game-launch-pinned-btn {
      flex: 0 0 auto;
      width: 2.35rem;
      height: 2.35rem;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(var(--accent-rgb), 0.38);
      border-radius: 0.45rem;
      background: rgba(0, 0, 0, 0.35);
      cursor: pointer;
      overflow: hidden;
      transition: border-color 0.12s ease, box-shadow 0.12s ease;
    }
    .game-launch-pinned-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .game-launch-pinned-btn:hover {
      border-color: rgba(var(--accent-rgb), 0.65);
      box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.2);
    }
    .game-launch-pin {
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(var(--accent-rgb), 0.4);
      border-radius: 0.55rem;
      background: rgba(var(--accent-rgb), 0.14);
      color: rgba(220, 230, 255, 0.95);
      cursor: pointer;
      aspect-ratio: 1;
      transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
    }
    .game-launch-pin[hidden] {
      display: none !important;
    }
    .game-launch-pin svg {
      width: 1.05rem;
      height: 1.05rem;
    }
    .game-launch-pin:hover {
      background: rgba(var(--accent-rgb), 0.26);
      border-color: rgba(var(--accent-rgb), 0.55);
      color: #fff;
    }
    .game-launch-pin.is-pinned {
      background: rgba(var(--accent-rgb), 0.38);
      border-color: rgba(var(--accent-rgb), 0.75);
      color: #fff;
    }
    .game-launch-play {
      width: min(72vmin, 22rem, 52vh);
      max-width: 100%;
      margin: 0;
      padding: 0.72rem 1.25rem;
      border: none;
      border-radius: 0.65rem;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      cursor: pointer;
      color: #0a0c12;
      background: linear-gradient(180deg, var(--accent) 0%, rgba(var(--accent-rgb), 0.82) 100%);
      box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.38);
      transition: filter 0.12s ease, transform 0.12s ease, opacity 0.2s ease;
      flex-shrink: 0;
    }
    .game-launch-play:hover {
      filter: brightness(1.08);
    }
    .game-launch-play:active {
      transform: translateY(1px);
    }
    .game-launch-play:disabled {
      opacity: 0.55;
      cursor: default;
      filter: none;
    }
    .game-launch-tab.is-hidden {
      display: none;
    }
    .game-launch-tab {
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(var(--accent-rgb), 0.4);
      border-radius: 0.55rem;
      background: rgba(var(--accent-rgb), 0.14);
      color: rgba(220, 230, 255, 0.95);
      cursor: pointer;
      aspect-ratio: 1;
      transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
    }
    .game-launch-tab:hover {
      background: rgba(var(--accent-rgb), 0.26);
      border-color: rgba(var(--accent-rgb), 0.55);
      color: #fff;
    }
    .game-launch-tab svg {
      width: 1.15rem;
      height: 1.15rem;
    }

    .game-launch-orbit {
      position: absolute;
      inset: 0;
      z-index: 15;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.9rem;
      padding: 1rem;
      background: radial-gradient(ellipse 100% 80% at 50% 20%, #0a0e24 0%, #02030a 45%, #000 100%);
      border-radius: inherit;
      pointer-events: none;
    }
    .game-launch-orbit[hidden] {
      display: none;
    }
    .game-launch-orbit-sky {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(200, 220, 255, 0.2), transparent),
        radial-gradient(1.2px 1.2px at 70% 30%, rgba(255, 255, 255, 0.28), transparent),
        radial-gradient(0.8px 0.8px at 85% 65%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 50% 8%, rgba(150, 190, 255, 0.2), transparent),
        radial-gradient(0.7px 0.7px at 22% 90%, rgba(255, 255, 255, 0.18), transparent);
      background-size: 100% 100%;
      animation: game-orbit-sky 12s ease-in-out infinite alternate;
    }
    @keyframes game-orbit-sky {
      0% {
        opacity: 0.6;
        filter: saturate(0.9);
      }
      100% {
        opacity: 1;
        filter: saturate(1.1);
      }
    }
    .game-launch-orbit-system {
      --orbit-r: min(26vw, 6.5rem);
      position: relative;
      width: min(78vmin, 20rem);
      height: min(78vmin, 20rem);
      max-width: 100%;
      max-height: 58vh;
      flex-shrink: 0;
    }
    .game-launch-orbit-track {
      position: absolute;
      inset: 0;
      z-index: 2;
      animation: game-orbit-spin 1.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      transform-style: preserve-3d;
    }
    @keyframes game-orbit-spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    .game-launch-orbit--merge .game-launch-orbit-track {
      animation: game-orbit-suck 0.9s cubic-bezier(0.55, 0, 0.15, 1) forwards;
    }
    @keyframes game-orbit-suck {
      0% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
      }
      100% {
        transform: rotate(540deg) scale(0);
        opacity: 0;
      }
    }
    .game-launch-orbit-sat {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 4.25rem;
      height: 4.25rem;
      margin: -2.125rem;
    }
    .game-launch-orbit-sat-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid rgba(var(--accent-rgb), 0.5);
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(var(--accent-rgb), 0.25),
        inset 0 0 12px rgba(255, 255, 255, 0.1);
    }
    .game-launch-orbit-sat--0 {
      transform: rotate(0deg) translateY(calc(-1 * var(--orbit-r))) rotate(0deg);
    }
    .game-launch-orbit-sat--1 {
      transform: rotate(120deg) translateY(calc(-1 * var(--orbit-r))) rotate(-120deg);
    }
    .game-launch-orbit-sat--2 {
      transform: rotate(240deg) translateY(calc(-1 * var(--orbit-r))) rotate(-240deg);
    }
    .game-launch-orbit-sun-wrap {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 1;
      width: 7rem;
      height: 7rem;
      margin: -3.5rem;
    }
    .game-launch-orbit-sun-glow {
      position: absolute;
      inset: -35%;
      border-radius: 50%;
      background: radial-gradient(
        circle,
        rgba(var(--accent-rgb), 0.5) 0%,
        rgba(80, 40, 120, 0.2) 35%,
        transparent 70%
      );
      filter: blur(4px);
      animation: game-orbit-pulse 1.4s ease-in-out infinite;
    }
    @keyframes game-orbit-pulse {
      0%,
      100% {
        opacity: 0.55;
        transform: scale(0.95);
      }
      50% {
        opacity: 0.9;
        transform: scale(1.05);
      }
    }
    .game-launch-orbit--merge .game-launch-orbit-sun-glow {
      animation: game-orbit-flare 0.9s ease forwards;
    }
    @keyframes game-orbit-flare {
      0% {
        filter: blur(4px);
        opacity: 0.6;
      }
      50% {
        filter: blur(8px);
        opacity: 1;
      }
      100% {
        filter: blur(6px);
        opacity: 0.4;
      }
    }
    .game-launch-orbit-sun-core {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
      box-shadow:
        0 0 0 2px rgba(255, 200, 120, 0.2),
        inset 0 0 24px rgba(255, 200, 120, 0.15);
    }
    .game-launch-orbit-hero {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      transform: scale(0.35);
      filter: blur(1px) saturate(0.6);
    }
    .game-launch-orbit--merge .game-launch-orbit-hero {
      animation: game-orbit-hero 0.95s cubic-bezier(0.2, 0.85, 0.2, 1) 0.1s forwards;
    }
    @keyframes game-orbit-hero {
      0% {
        opacity: 0.2;
        transform: scale(0.35) rotate(-6deg);
        filter: blur(1px) saturate(0.6);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0) saturate(1.1);
      }
    }
    .game-launch-orbit-label {
      position: relative;
      z-index: 2;
      margin: 0;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(200, 215, 245, 0.6);
    }
    .game-launch-orbit--merge .game-launch-orbit-label {
      color: rgba(230, 240, 255, 0.85);
      text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
    }
    .game-launch-viewport:has(.game-launch-orbit:not([hidden])) .game-launch-iframe {
      z-index: 0;
    }
    .game-launch-viewport:has(.game-launch-orbit:not([hidden])) .game-launch-preview-stack {
      z-index: 0;
    }
