:root {
        color-scheme: dark;
        --bg: #080806;
        --panel: rgba(18, 18, 15, 0.76);
        --text: #f5f1e8;
        --muted: #bdb5a5;
        --line: rgba(245, 241, 232, 0.17);
        --gold: #d4a830;
        --green: #7bd7b8;
        --red: #d96d61;
        --max: 1180px;
        --radius: 8px;
        --hero-art: none;
        --hero-art-position: right center;
        --hero-art-size: auto 100%;
        --hero-art-transform: none;
        --shot-1: none;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        min-width: 320px;
        background:
          radial-gradient(circle at 14% 12%, rgba(212, 168, 48, 0.16), transparent 28rem),
          radial-gradient(circle at 84% 8%, rgba(123, 215, 184, 0.13), transparent 22rem),
          var(--bg);
        color: var(--text);
        font-family:
          Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
          sans-serif;
        letter-spacing: 0;
        line-height: 1.55;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -2;
        background-image:
          linear-gradient(rgba(245, 241, 232, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(245, 241, 232, 0.035) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: linear-gradient(to bottom, black, transparent 74%);
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .wrap {
        width: min(calc(100% - 40px), var(--max));
        margin: 0 auto;
      }

      .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        border-bottom: 1px solid rgba(245, 241, 232, 0.12);
        background: rgba(8, 8, 6, 0.72);
        backdrop-filter: blur(18px);
      }

      .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        gap: 18px;
      }

      .brand {
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 760;
      }

      .brand-cluster {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }

      .language-menu {
        position: relative;
      }

      .language-button {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        min-height: 34px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 0 10px;
        color: var(--muted);
        background: rgba(245, 241, 232, 0.06);
        font: inherit;
        font-size: 0.78rem;
        font-weight: 820;
        cursor: pointer;
      }

      .language-button:hover,
      .language-button[aria-expanded="true"] {
        color: var(--text);
        background: rgba(245, 241, 232, 0.1);
      }

      .language-current {
        color: var(--gold);
      }

      .language-list {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        z-index: 30;
        min-width: 168px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 6px;
        background: rgba(18, 18, 15, 0.96);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(16px);
      }

      .language-list[hidden] {
        display: none;
      }

      .language-choice {
        display: flex;
        width: 100%;
        min-height: 34px;
        align-items: center;
        border: 0;
        border-radius: 6px;
        padding: 0 10px;
        color: var(--muted);
        background: transparent;
        font: inherit;
        font-size: 0.82rem;
        font-weight: 760;
        cursor: pointer;
      }

      .language-choice:hover,
      .language-choice[aria-selected="true"] {
        color: var(--text);
        background: rgba(245, 241, 232, 0.1);
      }

      .top-links {
        display: flex;
        gap: 8px;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 0 15px;
        color: var(--text);
        background: rgba(245, 241, 232, 0.06);
        font-size: 0.9rem;
        font-weight: 760;
      }

      .button-primary {
        border-color: rgba(102, 192, 244, 0.34);
        color: #f5f7fb;
        background: linear-gradient(135deg, #2a475e, #1b2838);
        box-shadow: 0 16px 34px rgba(27, 40, 56, 0.32);
      }

      .hero {
        position: relative;
        display: grid;
        min-height: 100svh;
        align-items: end;
        overflow: hidden;
        padding: 116px 0 58px;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        background-image:
          linear-gradient(to right, rgba(8, 8, 6, 0.96), rgba(8, 8, 6, 0.42) 48%, rgba(8, 8, 6, 0.28)),
          linear-gradient(to top, var(--bg), transparent 46%);
        background-position:
          center,
          center;
        background-size:
          cover,
          cover;
        background-repeat: no-repeat;
        opacity: 0.8;
      }

      .hero-art {
        position: absolute;
        inset: 0;
        z-index: -3;
        background-image: var(--hero-art);
        background-position: var(--hero-art-position);
        background-size: var(--hero-art-size);
        background-repeat: no-repeat;
        filter: saturate(1.08) contrast(1.08);
        transform: var(--hero-art-transform);
        transform-origin: center;
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background:
          repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.034) 0,
            rgba(255, 255, 255, 0.034) 1px,
            transparent 1px,
            transparent 6px
          ),
          linear-gradient(to bottom, transparent 62%, var(--bg));
        opacity: 0.56;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: clamp(28px, 5vw, 64px);
        align-items: end;
        max-width: 980px;
      }

      .hero-copy {
        min-width: 0;
        text-align: left;
      }

      .steam-store-link {
        justify-self: end;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0 16px;
        border: 1px solid rgba(180, 196, 214, 0.34);
        border-radius: var(--radius);
        background:
          linear-gradient(135deg, rgba(42, 71, 94, 0.96), rgba(27, 40, 56, 0.96)),
          rgba(44, 53, 67, 0.96);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
        transition:
          border-color 160ms ease,
          transform 160ms ease,
          background 160ms ease;
      }

      .steam-store-link:hover,
      .steam-store-link:focus-visible {
        border-color: rgba(134, 215, 187, 0.58);
        background:
          linear-gradient(135deg, rgba(50, 87, 116, 0.98), rgba(30, 48, 68, 0.98)),
          rgba(44, 53, 67, 0.98);
        transform: translateY(-1px);
      }

      .steam-store-logo {
        display: block;
        width: 96px;
        height: auto;
      }


      h1,
      h2,
      h3,
      p {
        margin-top: 0;
      }

      h1 {
        max-width: 15ch;
        margin-bottom: 26px;
        font-size: clamp(2.8rem, 6.9vw, 6.8rem);
        line-height: 0.9;
        letter-spacing: 0;
      }

      .summary {
        max-width: 720px;
        margin-bottom: 26px;
        color: #ded7c8;
        font-size: clamp(1rem, 1.7vw, 1.18rem);
      }

      .status-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 0;
      }

      .label {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        border: 1px solid rgba(255, 142, 58, 0.7);
        border-radius: var(--radius);
        padding: 5px 10px;
        color: #fff0df;
        background: linear-gradient(135deg, rgba(224, 101, 33, 0.92), rgba(130, 58, 22, 0.84));
        box-shadow: 0 12px 28px rgba(224, 101, 33, 0.22);
        font-size: 0.82rem;
        font-weight: 850;
      }

      .label-muted {
        border-color: rgba(245, 241, 232, 0.2);
        color: var(--text);
        background: rgba(245, 241, 232, 0.08);
      }

      .label-released {
        border-color: rgba(123, 215, 184, 0.62);
        color: #06130f;
        background: linear-gradient(135deg, #9df0d0, var(--green));
        box-shadow: 0 12px 28px rgba(123, 215, 184, 0.22);
      }

      .label-event {
        border-color: rgba(212, 168, 48, 0.56);
        color: #161108;
        background: linear-gradient(135deg, #f2d36c, var(--gold));
        box-shadow: none;
      }

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

      .presskit-band {
        padding: 36px 0;
      }

      .presskit-resources {
        display: grid;
        gap: 14px;
      }

      .presskit-panel {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px 18px;
        align-items: center;
        border: 1px solid rgba(245, 241, 232, 0.18);
        border-radius: var(--radius);
        padding: 22px;
        background:
          linear-gradient(135deg, rgba(42, 71, 94, 0.34), rgba(18, 18, 15, 0.72)),
          rgba(18, 18, 15, 0.74);
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
        transition:
          border-color 160ms ease,
          transform 160ms ease,
          background 160ms ease;
      }

      .presskit-panel:hover,
      .presskit-panel:focus-visible {
        border-color: rgba(123, 215, 184, 0.48);
        background:
          linear-gradient(135deg, rgba(42, 71, 94, 0.46), rgba(18, 18, 15, 0.8)),
          rgba(18, 18, 15, 0.82);
        transform: translateY(-1px);
      }

      .presskit-kicker {
        grid-row: 1 / -1;
        color: var(--gold);
        font-size: 0.78rem;
        font-weight: 880;
        letter-spacing: 0;
      }

      .presskit-title {
        color: var(--text);
        font-size: clamp(1.2rem, 2vw, 1.7rem);
        font-weight: 880;
        line-height: 1.15;
      }

      .presskit-description {
        grid-column: 2;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .presskit-note {
        grid-column: 2;
        color: var(--muted);
        font-size: 0.76rem;
        line-height: 1.5;
      }

      .presskit-button {
        grid-column: 3;
        grid-row: 1 / -1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        border: 1px solid rgba(102, 192, 244, 0.34);
        border-radius: var(--radius);
        padding: 0 14px;
        color: #f5f7fb;
        background: linear-gradient(135deg, #2a475e, #1b2838);
        font-weight: 850;
        white-space: nowrap;
      }

      .pitch-password-dialog {
        position: fixed;
        inset: 0;
        width: min(460px, calc(100% - 32px));
        margin: auto;
        padding: 0;
        border: 1px solid rgba(245, 241, 232, 0.22);
        border-radius: var(--radius);
        background: #171814;
        color: var(--text);
        box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
      }

      .pitch-password-dialog::backdrop {
        background: rgba(0, 0, 0, 0.76);
        backdrop-filter: blur(3px);
      }

      body:has(.pitch-password-dialog[open]) {
        overflow: hidden;
      }

      .pitch-password-form {
        display: grid;
        gap: 14px;
        padding: 28px;
      }

      .pitch-password-form h2 {
        margin: 0;
        font-size: 1.35rem;
      }

      .pitch-password-description {
        margin: 0 0 4px;
        color: var(--muted);
        line-height: 1.7;
      }

      .pitch-password-form label {
        font-size: 0.86rem;
        font-weight: 760;
      }

      .pitch-password-form input {
        width: 100%;
        min-height: 46px;
        border: 1px solid rgba(245, 241, 232, 0.24);
        border-radius: var(--radius);
        padding: 9px 12px;
        background: #0d0e0c;
        color: var(--text);
        font: inherit;
      }

      .pitch-password-form input:focus-visible {
        border-color: var(--green);
        outline: 2px solid rgba(123, 215, 184, 0.36);
        outline-offset: 2px;
      }

      .pitch-password-error {
        margin: 0;
        color: #ffb8ad;
        font-size: 0.9rem;
      }

      .pitch-password-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 6px;
      }

      .pitch-password-actions button {
        min-height: 42px;
        border-radius: var(--radius);
        padding: 0 18px;
        color: var(--text);
        font: inherit;
        font-weight: 760;
        cursor: pointer;
      }

      .pitch-password-cancel {
        border: 1px solid rgba(245, 241, 232, 0.22);
        background: transparent;
      }

      .pitch-password-submit {
        border: 1px solid var(--gold);
        background: var(--gold);
        color: #171814 !important;
      }

      .text-band {
        padding: 70px 0 64px;
        border-top: 1px solid var(--line);
        background: linear-gradient(to bottom, rgba(8, 8, 6, 0.96), rgba(8, 8, 6, 0.84));
      }

      .text-blocks {
        display: grid;
        gap: 28px;
      }

      .text-block {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(245, 241, 232, 0.12);
      }

      .text-block:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .text-block h2 {
        margin-bottom: 0;
        font-size: clamp(1.25rem, 2.2vw, 2rem);
        line-height: 1.08;
      }

      .text-block p {
        max-width: 1120px;
        margin-top: 14px;
        margin-bottom: 0;
        color: var(--muted);
        font-size: clamp(1rem, 1.5vw, 1.18rem);
        white-space: pre-line;
      }

      .info-list {
        display: grid;
        gap: 18px;
        max-width: 1120px;
        margin: 16px 0 0;
        padding: 0;
        list-style: none;
      }

      .timeline-item {
        position: relative;
        display: grid;
        grid-template-columns: 18px var(--timeline-date-width, 9em) minmax(0, 1fr);
        gap: 14px;
        align-items: baseline;
        color: var(--muted);
        font-size: clamp(1rem, 1.5vw, 1.18rem);
      }

      .timeline-dot {
        width: 10px;
        height: 10px;
        margin-top: 0.58em;
        border-radius: 50%;
        background: var(--timeline-dot-color, var(--gold));
        box-shadow: 0 0 0 6px var(--timeline-dot-glow, rgba(212, 168, 48, 0.13));
      }

      .timeline-list-plans {
        --timeline-dot-color: var(--green);
        --timeline-dot-glow: rgba(123, 215, 184, 0.16);
      }

      .timeline-list-history {
        --timeline-dot-color: var(--gold);
        --timeline-dot-glow: rgba(212, 168, 48, 0.13);
      }

      .info-date {
        color: rgba(245, 241, 232, 0.68);
        font-weight: 860;
        font-variant-numeric: tabular-nums;
        letter-spacing: 0;
        white-space: nowrap;
      }

      .timeline-item-full .info-date {
        display: none;
      }

      .info-body {
        min-width: 0;
        color: var(--muted);
      }

      .info-body-full {
        grid-column: 2 / -1;
      }

      .info-list a {
        color: var(--text);
        text-decoration: underline;
        text-decoration-color: rgba(126, 225, 195, 0.72);
        text-decoration-thickness: 2px;
        text-underline-offset: 0.18em;
      }

      .info-list a:hover {
        color: var(--mint);
        text-decoration-color: currentColor;
      }

      .video-band,
      .visual-band {
        position: relative;
        z-index: 0;
        isolation: isolate;
        padding: 72px 0;
        overflow: hidden;
        border-top: 1px solid var(--line);
      }

      .video-band::before,
      .visual-band::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(to bottom, var(--bg), rgba(8, 8, 6, 0.84) 24%, rgba(8, 8, 6, 0.9) 74%, var(--bg));
      }

      .band-head {
        margin-bottom: 30px;
      }

      .band-head h2 {
        margin-bottom: 0;
        font-size: clamp(1.25rem, 2.2vw, 2rem);
        line-height: 1.08;
      }

      .teaser-frame {
        position: relative;
        width: min(100%, 980px);
        margin: 0 auto;
        overflow: hidden;
        border: 1px solid rgba(245, 241, 232, 0.14);
        border-radius: var(--radius);
        background: #11110e;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
        aspect-ratio: 16 / 9;
      }

      .teaser-frame iframe,
      .teaser-frame video {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        object-fit: cover;
      }

      .screenshot-carousel {
        --slide-width: min(72vw, 760px, 78%);
        position: relative;
        width: 100%;
        overflow: hidden;
      }

      .screenshot-viewport {
        position: relative;
        overflow: hidden;
      }

      .screenshot-viewport::before {
        content: "";
        display: block;
        width: var(--slide-width);
        aspect-ratio: 16 / 9;
        margin: 0 auto;
      }

      .screenshot-slide {
        position: absolute;
        top: 0;
        left: 50%;
        width: var(--slide-width);
        height: 100%;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        border: 1px solid rgba(245, 241, 232, 0.14);
        border-radius: var(--radius);
        background:
          linear-gradient(135deg, rgba(212, 168, 48, 0.1), rgba(123, 215, 184, 0.08)),
          #151511;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
        cursor: zoom-in;
        transform: translateX(-50%) translateX(var(--slide-x, 0));
        transition:
          opacity 360ms ease,
          transform 360ms ease,
          filter 360ms ease;
      }

      .screenshot-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 260ms ease;
      }

      .screenshot-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(8, 8, 6, 0.56), transparent 44%);
        pointer-events: none;
      }

      .screenshot-slide.is-active {
        opacity: 1;
        pointer-events: auto;
        z-index: 3;
      }

      .screenshot-slide.is-side {
        opacity: 0.34;
        pointer-events: auto;
        z-index: 2;
        filter: saturate(0.75) brightness(0.42);
      }

      .screenshot-slide.slot-prev {
        --slide-x: -75%;
      }

      .screenshot-slide.slot-next {
        --slide-x: 75%;
      }

      .screenshot-carousel.is-moving-next .slot-prev {
        --slide-x: -150%;
        opacity: 0;
      }

      .screenshot-carousel.is-moving-next .slot-active {
        --slide-x: -75%;
        opacity: 0.34;
        z-index: 2;
        filter: saturate(0.75) brightness(0.42);
      }

      .screenshot-carousel.is-moving-next .slot-next {
        --slide-x: 0;
        opacity: 1;
        z-index: 3;
        filter: none;
      }

      .screenshot-carousel.is-moving-prev .slot-prev {
        --slide-x: 0;
        opacity: 1;
        z-index: 3;
        filter: none;
      }

      .screenshot-carousel.is-moving-prev .slot-active {
        --slide-x: 75%;
        opacity: 0.34;
        z-index: 2;
        filter: saturate(0.75) brightness(0.42);
      }

      .screenshot-carousel.is-moving-prev .slot-next {
        --slide-x: 150%;
        opacity: 0;
      }

      .screenshot-carousel.is-resetting .screenshot-slide {
        transition: none;
      }

      .screenshot-slide:hover img {
        transform: scale(1.035);
      }

      .screenshot-controls {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
      }

      .screenshot-dot {
        width: 34px;
        height: 5px;
        border: 0;
        border-radius: 999px;
        padding: 0;
        background: rgba(245, 241, 232, 0.32);
        cursor: pointer;
      }

      .screenshot-dot.is-active {
        background: var(--gold);
      }

      .screenshot-arrow {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: grid;
        place-items: center;
        width: 42px;
        height: 54px;
        border: 1px solid rgba(245, 241, 232, 0.26);
        border-radius: var(--radius);
        color: var(--text);
        background: rgba(8, 8, 6, 0.58);
        font: inherit;
        font-size: 2rem;
        font-weight: 760;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
        backdrop-filter: blur(8px);
      }

      .screenshot-arrow:hover {
        background: rgba(8, 8, 6, 0.78);
      }

      .screenshot-arrow-prev {
        left: calc(50% - (var(--slide-width) / 2) + 14px);
      }

      .screenshot-arrow-next {
        right: calc(50% - (var(--slide-width) / 2) + 14px);
      }

      .image-lightbox {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: grid;
        place-items: center;
        padding: 32px;
        background: rgba(0, 0, 0, 0.84);
        backdrop-filter: blur(8px);
      }

      .image-lightbox[hidden] {
        display: none;
      }

      .image-lightbox img {
        max-width: min(94vw, 1440px);
        max-height: 86vh;
        border: 1px solid rgba(245, 241, 232, 0.18);
        border-radius: var(--radius);
        object-fit: contain;
        box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
      }

      .lightbox-close {
        position: absolute;
        top: 18px;
        right: 18px;
        min-width: 42px;
        min-height: 42px;
        border: 1px solid rgba(245, 241, 232, 0.24);
        border-radius: var(--radius);
        color: var(--text);
        background: rgba(12, 12, 10, 0.72);
        font: inherit;
        font-size: 1.4rem;
        line-height: 1;
        cursor: pointer;
      }

      @media (max-width: 920px) {
        .hero {
          min-height: auto;
        }

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

        .steam-store-link {
          justify-self: start;
        }
      }

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

        .topbar-inner {
          flex-wrap: wrap;
          gap: 8px 10px;
          min-height: 58px;
          padding: 8px 0;
        }

        .top-links {
          display: grid;
          grid-template-columns: 1fr 1fr;
          width: 100%;
        }

        .top-links .button {
          min-height: 36px;
          padding: 0 10px;
          font-size: 0.78rem;
        }

        .hero {
          padding: 122px 0 42px;
        }

        .steam-store-link {
          min-height: 48px;
          padding: 0 14px;
        }

        .steam-store-logo {
          width: 90px;
        }

        .timeline-item {
          grid-template-columns: 16px minmax(0, 1fr);
          gap: 4px 12px;
        }

        .presskit-panel {
          grid-template-columns: 1fr;
        }

        .presskit-kicker,
        .presskit-description,
        .presskit-note,
        .presskit-button {
          grid-column: 1;
          grid-row: auto;
        }

        .info-date,
        .info-body,
        .info-body-full {
          grid-column: 2;
        }

        .screenshot-carousel {
          --slide-width: min(78vw, 520px, 86%);
        }

        .image-lightbox {
          padding: 18px;
        }
      }
