:root {
  --bg: #060607;
  --bg-soft: #101012;
  --bg-panel: #141214;
  --bg-panel-alt: #0f0d0f;
  --text: #ece7e2;
  --text-dim: #b9b0aa;
  --accent: #621215;
  --accent-strong: #7a191d;
  --accent-shadow: rgba(98, 18, 21, 0.18);
  --line: #331013;
  --line-bright: #5a1719;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  --display-font: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  --body-font: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  --mono-font: Consolas, "Courier New", monospace;
  --shell-width: 1400px;
  --rail-column-width: 192px;
  --rail-button-width: 162px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scrollbar-color: #5a0f14 #090909;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(var(--shell-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.page-heading h1,
.section-heading h2,
.modal-panel h2,
.project-card h3,
.video-card h3,
.audio-entry h3,
.update-post h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-heading p,
.section-heading p,
.video-card p,
.audio-entry p,
.project-card p,
.update-post p,
.site-footer p,
.modal-panel p,
.modal-panel li {
  margin: 0;
  color: var(--text-dim);
}

.project-card-art,
.video-frame-placeholder {
  min-height: clamp(138px, 15vw, 210px);
}

.audio-art-placeholder {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.logo-placeholder {
  min-height: clamp(210px, 26vw, 390px);
}

.logo-art {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.99;
  filter: drop-shadow(0 14px 28px rgba(8, 8, 10, 0.24));
}


.project-card-art {
  aspect-ratio: 16 / 9;
}

.audio-art-placeholder {
  aspect-ratio: 1 / 1;
}

.audio-cover-art {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg-panel-alt);
}

.placeholder-box {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: clamp(14px, 1.8vw, 22px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(98, 18, 21, 0.16), rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.24)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%),
    var(--bg-panel-alt);
  border: 1px dashed var(--line-bright);
}

.placeholder-kicker,
.eyebrow,
.tag,
.status-pill,
.post-meta {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.placeholder-box strong {
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 0.94;
}

.logo-placeholder strong {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.placeholder-meta {
  font-family: var(--mono-font);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.ui-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.ui-link:hover,
.ui-link:focus-visible {
  border-color: var(--line-bright);
  background: rgba(98, 18, 21, 0.12);
}

.ui-link-button {
  appearance: none;
}

.site-footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.site-footer:empty {
  display: none;
}


.page-heading {
  display: grid;
  gap: 6px;
}

.page-heading h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}


.section-block {
  display: grid;
  gap: 18px;
}

.section-block + .section-block {
  margin-top: 28px;
}

.section-heading {
  display: grid;
  gap: 6px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 16px;
}

.video-card,
.project-card,
.audio-entry,
.update-post,
.empty-state {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%),
    linear-gradient(135deg, rgba(98, 18, 21, 0.08), transparent 50%),
    var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.project-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  min-width: 0;
}

.video-frame,
.video-frame-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy,
.project-card-body {
  display: grid;
  gap: 12px;
}

.tag-list,
.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  background: rgba(98, 18, 21, 0.10);
  border: 1px solid var(--line);
}

.audio-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 16px;
}

.updates-feed {
  display: grid;
  gap: 16px;
}

.audio-entry {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
}

.audio-entry-copy {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.audio-player-shell,
.audio-empty {
  min-width: 0;
  min-height: 52px;
  display: grid;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.audio-player-shell audio {
  width: 100%;
  min-width: 0;
}

.audio-empty {
  font-family: var(--mono-font);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.project-card-art {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.project-card-body {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.project-card-link {
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.project-card-link:hover,
.project-card-link:focus-visible {
  border-color: var(--line-bright);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(135deg, rgba(98, 18, 21, 0.14), transparent 56%),
    var(--bg-panel);
  transform: translateX(2px);
}

.audio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ui-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-bright);
  background: rgba(98, 18, 21, 0.14);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  line-height: 1;
}

.ui-button:hover,
.ui-button:focus-visible {
  background: rgba(98, 18, 21, 0.22);
}

.ui-button.secondary {
  border-color: var(--line);
  background: transparent;
}

.update-post {
  display: grid;
  gap: 12px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line-bright);
  box-shadow: none;
  background: transparent;
}

.update-post:first-child {
  padding-top: 0;
  border-top: 0;
}

.post-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.post-brand {
  width: 54px;
  flex: 0 0 54px;
}

.post-brand-art {
  width: 54px;
  height: auto;
  display: block;
}

.post-meta {
  color: #b96f73;
  align-self: center;
}

.post-body {
  display: grid;
  gap: 12px;
}

.empty-state {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 24px));
  max-height: min(86vh, 920px);
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(135deg, rgba(98, 18, 21, 0.12), transparent 54%),
    var(--bg-panel);
  border: 1px solid var(--line-bright);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.56);
}


.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--line-bright);
  background: rgba(98, 18, 21, 0.12);
}

.modal-panel ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .media-grid,
  .audio-list,
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(var(--shell-width), calc(100% - 20px));
    padding-top: 12px;
  }

  .video-card,
  .project-card {
    padding: 14px;
  }

  .audio-entry,
  .project-card {
    grid-template-columns: 1fr;
  }

  .audio-art-placeholder,
  .project-card-art {
    min-height: 140px;
  }

  .modal {
    padding: 10px;
  }

  .modal-panel {
    padding: 18px;
  }
}






















.project-cover-art {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg-panel-alt);
}


.audio-meta-row {
  min-width: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.audio-meta-row .tag-list {
  gap: 8px;
}

.audio-meta-row .audio-actions {
  display: contents;
}


.audio-info-button {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  line-height: 1;
}

.audio-info-button:hover,
.audio-info-button:focus-visible {
  border-color: var(--line-bright);
  background: rgba(98, 18, 21, 0.12);
  color: var(--text);
}



.page-hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 18px;
}

.page-hero-logo {
  width: min(100%, 920px);
  aspect-ratio: 8 / 3;
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 10px 18px rgba(47, 6, 13, 0.16));
}

.media-heading-logo,
.games-heading-logo {
  width: min(100%, 520px);
}

.media-heading-logo {
  background-image: url("../assets/logos/media-logo-hero-web.png");
}

.games-heading-logo {
  background-image: url("../assets/logos/games-software-logo-hero-web.png");
}

.updates-heading-logo {
  width: min(100%, 560px);
  background-image: url("../assets/logos/updates-logo-hero-web.png");
}


.site-shell.site-shell-framed {
  width: min(var(--shell-width), calc(100% - 24px));
  max-width: none;
  margin: 0 0 0 24px;
  display: grid;
  grid-template-columns: var(--rail-column-width) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  min-height: 100svh;
}

.page-home {
  overflow: auto;
}

.page-home .site-shell.site-shell-framed {
  height: auto;
  grid-template-rows: none;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-rail {
  position: sticky;
  top: 18px;
  align-self: start;
  width: var(--rail-column-width);
  min-width: var(--rail-column-width);
  max-width: var(--rail-column-width);
  min-height: calc(100svh - 36px);
  padding: 6px 0 8px 0;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.rail-brand {
  width: var(--rail-button-width);
  min-width: var(--rail-button-width);
  max-width: var(--rail-button-width);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rail-brand-art {
  width: 92px;
  height: auto;
  display: block;
  opacity: 0.98;
  filter: drop-shadow(0 8px 14px rgba(47, 6, 13, 0.16));
}

.rail-nav {
  width: var(--rail-button-width);
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.rail-nav-control,
.rail-nav-link {
  width: var(--rail-button-width);
  min-width: var(--rail-button-width);
  max-width: var(--rail-button-width);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line-bright);
  background: #111214;
  color: var(--text);
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.36);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.rail-nav-control:hover,
.rail-nav-control:focus-visible,
.rail-nav-link:hover,
.rail-nav-link:focus-visible {
  border-color: #7a191d;
  background: #16171a;
  transform: translateX(2px);
}

.rail-nav-label {
  display: block;
  color: #f2efea;
  font-size: 0.72rem;
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-content {
  min-width: 0;
  padding: 6px 0 24px;
}

.page-heading-inline {
  justify-items: center;
  margin-bottom: 2px;
}

.page-heading-inline .eyebrow {
  letter-spacing: 0.28em;
}

.page-main {
  padding-top: 0;
}

.page-main-home {
  min-height: calc(100svh - 36px);
  display: grid;
  align-items: center;
}

.home-stage {
  min-height: calc(100svh - 72px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(18px, 2.4vh, 28px);
  padding: 20px 0;
}

.home-stage-logo {
  width: min(100%, 1760px, 98vw, 92vh);
  display: block;
}

.home-stage-logo-art {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.99;
  filter: drop-shadow(0 14px 28px rgba(8, 8, 10, 0.24));
}

.home-stage-lede {
  width: min(860px, 74vw);
  margin: 0;
  color: var(--text-dim);
  text-align: center;
  font-size: clamp(0.92rem, 0.55vw + 0.78rem, 1.04rem);
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .site-shell.site-shell-framed,
  .page-home .site-shell.site-shell-framed {
    width: calc(100% - 24px);
    max-width: none;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .site-rail {
    position: static;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 0;
    grid-template-rows: none;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 12px;
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-brand {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .rail-brand-art {
    width: 80px;
  }

  .rail-nav {
    width: min(100%, 760px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .rail-nav-control,
  .rail-nav-link {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 42px;
  }

  .site-content {
    padding-top: 0;
    padding-bottom: 18px;
  }

  .page-main-home {
    min-height: 0;
  }

  .page-hero-logo-wrap {
    padding-bottom: 14px;
  }

  .page-hero-logo {
    width: min(100%, 480px);
  }

  .home-stage {
    min-height: 0;
    gap: 14px;
    padding: 8px 0 16px;
  }

  .home-stage-logo {
    width: min(100%, 1500px, 94vw);
  }

  .home-stage-lede {
    width: min(100%, 720px);
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .section-block {
    gap: 14px;
  }

  .audio-list,
  .project-grid,
  .updates-feed,
  .video-grid {
    gap: 12px;
  }

  .audio-entry,
  .project-card,
  .video-card {
    padding: 12px;
  }

  .audio-player-shell,
  .audio-empty {
    padding: 8px 10px;
  }

  .audio-entry h3,
  .project-card h3,
  .video-card h3 {
    overflow-wrap: anywhere;
  }

  .modal-panel {
    width: min(100vw - 24px, 720px);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 16px);
    padding-top: 10px;
  }

  .site-rail {
    gap: 10px;
    padding-bottom: 10px;
  }

  .rail-nav-control,
  .rail-nav-link {
    min-height: 38px;
    padding: 0 10px;
  }

  .rail-nav-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .page-hero-logo-wrap {
    padding-bottom: 10px;
  }

  .page-hero-logo {
    width: min(100%, 360px);
  }

  .home-stage-logo {
    width: min(100%, 96vw);
  }

  .home-stage-lede {
    width: min(100%, 640px);
    font-size: 0.9rem;
  }

  .audio-entry,
  .project-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .video-card {
    padding: 10px;
  }

  .audio-art-placeholder,
  .project-card-art {
    min-height: 120px;
  }

  .audio-meta-row,
  .tag-list,
  .status-list {
    gap: 6px;
  }

  .audio-info-button,
  .tag,
  .status-pill {
    min-height: 24px;
    padding: 0 8px;
    letter-spacing: 0.12em;
  }

  .post-head {
    gap: 10px;
  }

  .post-brand {
    width: 44px;
    flex-basis: 44px;
  }

  .post-brand-art {
    width: 44px;
  }

  .post-meta {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .update-post {
    gap: 10px;
  }

  .modal-panel {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: calc(100% - 12px);
  }

  .rail-nav {
    grid-template-columns: 1fr;
  }

  .rail-brand-art {
    width: 72px;
  }

  .page-hero-logo {
    width: min(100%, 300px);
  }

  .home-stage-logo {
    width: min(100%, 96vw);
  }

  .home-stage-lede {
    width: min(100%, 92vw);
    font-size: 0.88rem;
  }
}


.ai-disclosure-heading-logo {
  width: min(100%, 560px);
  background-image: url("../assets/logos/ai-disclosure-hero-web.png");
}

.disclosure-block {
  max-width: 880px;
  margin: 0 auto;
}

.disclosure-copy {
  display: grid;
  gap: 16px;
  color: var(--text-dim);
}

.disclosure-intro {
  margin: 0;
}

.disclosure-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}





.video-groups {
  display: grid;
  gap: 22px;
}

.video-group {
  display: grid;
}

.video-grid {
  display: grid;
  gap: 16px;
}

.video-grid-portrait {
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
}

.video-grid-landscape {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
}

.video-grid-square {
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
}

.video-frame,
.video-frame-placeholder {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.video-frame--landscape,
.video-frame-placeholder.video-frame--landscape,
.update-video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame--portrait,
.video-frame-placeholder.video-frame--portrait {
  aspect-ratio: 9 / 16;
}

.video-frame--square,
.video-frame-placeholder.video-frame--square {
  aspect-ratio: 1 / 1;
}

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

.update-video-frame {
  max-width: min(100%, 420px);
}

@media (max-width: 1100px) {
  .video-grid-portrait,
  .video-grid-landscape,
  .video-grid-square {
    grid-template-columns: 1fr;
  }
}



.audio-heading-logo,
.video-heading-logo {
  width: min(100%, 520px);
}

.audio-heading-logo {
  background-image: url("../assets/logos/audio-logo.png");
}

.video-heading-logo {
  background-image: url("../assets/logos/video-logo.png");
}





.project-card-art-contain {
  background: #000;
}

.project-cover-art-contain {
  object-fit: contain;
  background: #000;
}


