/* VoltageGoblin Play — browser games hub */

:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-panel: #111111;
  --line: rgba(152, 223, 2, 0.35);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #c8c8c8;
  --primary: #98df02;
  --primary-ink: #020204;
  --accent: #921dee;
  --accent-soft: rgba(146, 29, 238, 0.25);
  --danger: #ff6b7a;
  --success: #3dd68c;
  --warning: #ffff00;
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1120px;
  --font: "Roboto", "Segoe UI", system-ui, sans-serif;
  --font-body: "Roboto", "Segoe UI", system-ui, sans-serif;
  --font-nav: Futura, "Futura PT", "Trebuchet MS", "Century Gothic", sans-serif;
  --font-bullet: "Orbitron", sans-serif;
  --font-display: "Syne", "Source Sans 3", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --nav-green: #98df02;
  --nav-active: #921dee;
  --nav-hover: #020204;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: #000;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ===== Shared org header (matches main VoltageGoblin / edu site) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #000;
  border-bottom: 0;
  box-shadow: none;
}

.header-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.55rem 0 0.75rem;
  min-height: 0;
  isolation: isolate;
}

.header-inner::before { content: none; display: none; }

.header-brand-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 168px;
  z-index: 3;
}

.brand-lockup {
  display: block;
  flex: 0 0 auto;
  width: min(168px, 30vw);
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 0;
  grid-column: auto;
  grid-row: auto;
  position: relative;
  z-index: 4;
}
.brand-lockup:hover { text-decoration: none; }
.brand-lockup img {
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.brand-text { display: none; }

.header-level-up {
  position: absolute;
  left: 50%;
  top: 0.15rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: min(400px, 52vw);
  max-height: 130px;
  overflow: hidden;
  min-width: 0;
  pointer-events: none;
  z-index: 1;
}
.header-level-up img {
  width: 100%;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  object-position: center top;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--nav-green);
  color: #000;
  border-radius: 6px;
  padding: 0.55rem 0.8rem;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  margin: 0 auto;
  padding: 0;
  background: var(--nav-green);
  border: 3px solid var(--nav-green);
  border-radius: 6px;
  overflow: hidden;
  grid-column: auto;
  grid-row: auto;
  position: relative;
  z-index: 5;
}

.site-nav a,
.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  opacity: 1;
  padding: 0.7rem 1.05rem;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  flex: 0 0 auto;
  background: transparent;
  min-height: 100%;
}
.site-nav a:hover,
.site-nav .nav-link:hover {
  color: #020204;
  text-decoration: underline;
  background: transparent;
}
.site-nav a.is-active,
.site-nav .nav-link.is-active {
  background: var(--nav-active);
  color: #fff;
  text-decoration: none;
}
.site-nav a.is-active:hover,
.site-nav .nav-link.is-active:hover {
  color: #fff;
  text-decoration: none;
}

.site-nav .btn,
.site-nav .btn-primary {
  border-radius: 0;
  border: 0;
  min-height: 100%;
  padding: 0.7rem 1.05rem;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #000;
  box-shadow: none;
  transform: none;
}
.site-nav .btn:hover,
.site-nav .btn-primary:hover {
  color: #020204;
  text-decoration: underline;
  background: transparent;
  transform: none;
}
.site-nav .btn.is-active,
.site-nav .btn-primary.is-active {
  background: var(--nav-active);
  color: #fff;
  text-decoration: none;
}
.site-nav > span {
  display: inline-flex;
  align-items: stretch;
  min-height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-danger {
  background: transparent;
  border-color: rgba(255, 107, 122, 0.45);
  color: var(--danger);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-panel {
  background: linear-gradient(160deg, rgba(123, 92, 255, 0.22), rgba(163, 255, 0, 0.08));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-panel h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.stat {
  background: rgba(0, 0, 0, 0.28);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 3.25rem 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--line-soft);
}
.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.6rem;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.nimbo-callout {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
}
.nimbo-callout h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
}
.nimbo-callout p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 0;
  border-top: 0;
  color: #fff;
  font-size: 14px;
  background-color: #000;
  isolation: isolate;
  overflow: hidden;
}
.footer-main {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 4.5rem;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 168px;
  gap: 1.25rem 1.1rem;
  align-items: start;
  min-height: 320px;
  background-color: transparent;
  background-image: url("../assets/brand/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.footer-brand {
  /* Left logos/CTA live in the background image */
  min-height: 220px;
  visibility: hidden;
  pointer-events: none;
}
.footer-wordmark,
.footer-tagline,
.footer-cta {
  display: none;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
  align-items: start;
  width: 100%;
  justify-items: center;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 100%;
}
.footer-col-head {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 0 0.75rem;
  object-fit: contain;
  object-position: center center;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  width: max-content;
  max-width: 100%;
}
.footer-col li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.25;
  min-height: 1.3em;
}
.footer-bullet {
  font-family: var(--font-bullet);
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
  font-weight: 700;
  flex: 0 0 auto;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.footer-col a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-col a.is-pending,
.footer-col a.member-access {
  color: #ffe14a;
  cursor: default;
  pointer-events: none;
}
.footer-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-height: 260px;
  padding-bottom: 0.25rem;
}
.footer-mascot {
  /* Right mascot lives in the background image */
  display: none;
}
.footer-contact-box {
  width: min(180px, 100%);
  border: 0;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  background: transparent;
  margin-top: auto;
}
.footer-socials {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}
.footer-mail img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.footer-bottom {
  /* Bottom bar text lives in the background image */
  display: none;
}

/* Videos gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.chip {
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}
.chip.is-active,
.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(163, 255, 0, 0.08);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.video-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.video-thumb {
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
  width: 100%;
}
.video-thumb-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #241b3d, #132015);
  color: var(--muted);
  font-weight: 700;
}
.video-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.video-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.video-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}
.tag {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.empty-state,
.status-banner {
  border: 1px solid var(--line-soft);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--muted);
}
.status-banner.is-error {
  border-color: rgba(255, 107, 122, 0.4);
  color: #ffc0c7;
}
.status-banner.is-ok {
  border-color: rgba(61, 214, 140, 0.35);
  color: #b8f5d4;
}

/* Auth */
.auth-page {
  min-height: calc(100vh - 2rem);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}
.auth-card {
  width: min(100%, 440px);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.auth-card h1 {
  font-family: var(--font-display);
  margin: 0.75rem 0 0.5rem;
}
.auth-card .lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.filters-panel {
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-field label {
  font-weight: 700;
  font-size: 0.9rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font: inherit;
}
.form-field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(163, 255, 0, 0.35);
  border-color: var(--primary);
}
.dev-link {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  word-break: break-all;
}

/* Members shell */
.members-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0 3rem;
  align-items: start;
}
.members-nav {
  position: sticky;
  top: 92px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.members-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-weight: 650;
}
.members-nav a:hover,
.members-nav a.is-active {
  background: rgba(163, 255, 0, 0.1);
  color: var(--primary);
}
.members-nav .nav-meta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.82rem;
}
.members-main h1 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
}
.members-main .page-lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.progress-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.lesson-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lesson-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--bg-panel);
}
.lesson-item.is-locked { opacity: 0.55; }
.lesson-status {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}
.lesson-status.done { background: rgba(61, 214, 140, 0.18); color: var(--success); }
.lesson-status.available { background: rgba(163, 255, 0, 0.14); color: var(--primary); }
.lesson-item h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.lesson-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-soft);
  margin-bottom: 1.25rem;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.markdown-block {
  white-space: pre-wrap;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.hint-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.hint-list li { margin-bottom: 0.35rem; }

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid-3,
  .card-grid-2,
  .members-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-grid {
    grid-template-columns: 1fr;
  }
  .menu-toggle { display: inline-flex; z-index: 1; }
  .header-brand-row {
    flex-wrap: wrap;
    min-height: 96px;
  }
  .brand-lockup {
    width: min(168px, 46vw);
  }
  .header-level-up {
    position: static;
    transform: none;
    order: 3;
    flex: 1 1 100%;
    margin-top: 0.25rem;
    pointer-events: none;
    z-index: 0;
  }
  .header-level-up img {
    width: min(340px, 92%);
    margin-inline: auto;
  }
  .site-nav {
    display: none;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    height: auto;
    padding: 0.35rem;
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a,
  .site-nav .nav-link,
  .site-nav .btn,
  .site-nav .btn-primary {
    width: 100%;
    justify-content: flex-start;
    border-radius: 10px;
    min-height: 42px;
  }
  .members-nav { position: static; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-col a {
    white-space: normal;
  }
  .footer-col-head {
    height: 68px;
  }
}

/* ===== Play hub ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.game-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--game-accent, var(--primary));
}
.game-card-top h3 {
  font-family: var(--font-display);
  margin: 0.35rem 0 0.25rem;
  font-size: 1.45rem;
}
.game-tagline {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}
.game-card > p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}
.game-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(152, 223, 2, 0.14);
  color: var(--primary);
}
.game-status.is-soon {
  background: rgba(255, 255, 0, 0.12);
  color: var(--warning);
}
.play-frame-wrap {
  margin-top: 1.75rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #050505;
  box-shadow: var(--shadow);
}
.play-frame {
  display: block;
  width: 100%;
  min-height: min(72vh, 820px);
  height: 72vh;
  border: 0;
  background: #000;
}
.frame-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.page-hero {
  padding: 3.5rem 0 2rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}
.page-hero .hero-lead {
  margin-bottom: 0;
}
.update-list {
  display: grid;
  gap: 1rem;
}
.update-item {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.update-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}
.update-item p {
  margin: 0;
  color: var(--muted);
}
.update-meta {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .game-grid {
    grid-template-columns: 1fr;
  }
}
