:root {
  color-scheme: dark;
  --bg: #101513;
  --bg-2: #0a100e;
  --surface: #17201c;
  --surface-2: #1c2c25;
  --line: rgba(199, 243, 107, 0.16);
  --text: #f1f5f1;
  --muted: #a0b1a8;
  --soft: #788b81;
  --lime: #c7f36b;
  --lime-ink: #101513;
  --aqua: #77e7d3;
  --amber: #f6c881;
  --red: #ff5f6d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 6px;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
.server-bay__name,
.server-bay__gpu {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 10px clamp(18px, 4vw, 72px);
  border-bottom: 1px solid rgba(238, 246, 240, 0.08);
  background: rgba(8, 17, 14, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
}

.brand-stack {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-sub {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--lime-ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(184, 255, 46, 0.45);
  border-radius: 999px;
  color: var(--lime);
  font-weight: 700;
}

.header-action:hover {
  background: rgba(184, 255, 46, 0.1);
}

/* —— HERO: one composition, brand first, full-bleed —— */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(100vh, 920px);
  padding: clamp(72px, 12vh, 140px) clamp(18px, 4vw, 72px) clamp(48px, 8vh, 88px);
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Left stays readable for copy; right stays open so the ritual cue (empty chair) hooks the eye */
  background:
    linear-gradient(100deg, rgba(8, 17, 14, 0.97) 0%, rgba(8, 17, 14, 0.76) 30%, rgba(8, 17, 14, 0.14) 54%, rgba(8, 17, 14, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 17, 14, 0.18), rgba(8, 17, 14, 0.88) 92%),
    url("assets/hero-return-ritual.png") 78% 40% / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@supports (background-image: image-set(url("assets/hero-return-ritual.webp") type("image/webp"))) {
  .hero-stage {
    background:
      linear-gradient(100deg, rgba(8, 17, 14, 0.97) 0%, rgba(8, 17, 14, 0.76) 30%, rgba(8, 17, 14, 0.14) 54%, rgba(8, 17, 14, 0.22) 100%),
      linear-gradient(180deg, rgba(8, 17, 14, 0.18), rgba(8, 17, 14, 0.88) 92%),
      image-set(
        url("assets/hero-return-ritual.webp") type("image/webp"),
        url("assets/hero-return-ritual.png") type("image/png")
      ) 78% 40% / cover no-repeat;
  }
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 21, 19, 0.3), transparent 56%),
    repeating-linear-gradient(
      -12deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.015) 14px 15px
    );
  content: "";
  pointer-events: none;
}

.hero-copy {
  max-width: 660px;
  animation: hero-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-hero {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 18ch;
  font-size: clamp(2.4rem, 6.1vw, 4.6rem);
  line-height: 1.02;
  font-weight: 800;
}

.hero-lead {
  margin: 0 0 28px;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.hero-return {
  display: grid;
  gap: 8px;
  max-width: 540px;
  margin-top: 30px;
  padding: 16px 0 0 16px;
  border-left: 2px solid var(--aqua);
}

.hero-return__eyebrow {
  margin: 0;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-return p:not(.hero-return__eyebrow) {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.hero-return__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-return__action,
.hero-save-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-return__action {
  background: var(--aqua);
  color: #07110f;
}

.hero-save-button {
  border: 1px solid rgba(241, 245, 241, 0.22);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.hero-return__action:hover,
.hero-save-button:hover {
  transform: translateY(-2px);
}

.hero-return__hint {
  color: var(--muted) !important;
  font-size: 0.8rem;
  font-weight: 500 !important;
}

.door-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.door-pills li {
  padding: 7px 12px;
  border: 1px solid rgba(119, 231, 211, 0.34);
  border-radius: 999px;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 700;
}

.door-strip {
  margin: 0;
  padding: 16px clamp(18px, 4vw, 72px);
  border-top: 1px solid rgba(119, 231, 211, 0.18);
  border-bottom: 1px solid rgba(119, 231, 211, 0.18);
  background: rgba(119, 231, 211, 0.055);
}

.calm-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.door-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.door-strip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}

.price-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 0 0 12px;
}

.price-compare div {
  display: grid;
  gap: 2px;
}

.price-compare strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.price-compare span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-button,
.secondary-button,
.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button,
.play-button {
  border: 0;
  background: var(--lime);
  color: var(--lime-ink);
}

.secondary-button {
  border: 1px solid rgba(238, 246, 240, 0.22);
  background: transparent;
  color: var(--text);
}

.primary-button:hover,
.play-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.section {
  padding: clamp(56px, 9vh, 96px) clamp(18px, 4vw, 72px);
}

.section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  max-width: 560px;
}

.facts div {
  padding: 14px 16px;
  border-left: 2px solid var(--lime);
  background: linear-gradient(90deg, rgba(184, 255, 46, 0.08), transparent);
}

.facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
}

.facts span {
  color: var(--muted);
  font-size: 0.88rem;
}

.favorite-lounge {
  margin: 0 0 30px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(119, 231, 211, 0.22);
  border-bottom: 1px solid rgba(119, 231, 211, 0.16);
}

.favorite-lounge__heading {
  max-width: 600px;
  margin-bottom: 14px;
}

.favorite-lounge__heading .eyebrow {
  color: var(--aqua);
}

.favorite-lounge__heading h3 {
  margin: 0 0 5px;
  font-size: 1.35rem;
}

.favorite-lounge__heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.favorite-server {
  display: flex;
  min-width: 0;
  min-height: 130px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(119, 231, 211, 0.22);
  border-radius: 8px;
  background: rgba(119, 231, 211, 0.055);
}

.favorite-server__label {
  margin: 0 0 5px;
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.favorite-server h4 {
  margin: 0 0 3px;
  overflow-wrap: anywhere;
  font-size: 1.08rem;
}

.favorite-server p:not(.favorite-server__label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.favorite-server__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.favorite-server__play {
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 800;
}

.favorite-server__remove,
.server-favorite {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(241, 245, 241, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.server-favorite:hover,
.server-favorite.is-favorite,
.favorite-server__remove:hover {
  border-color: rgba(246, 200, 129, 0.62);
  color: var(--amber);
}

.server-favorite:focus-visible,
.favorite-server__remove:focus-visible,
.hero-save-button:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 14px;
  max-width: 560px;
}

.search-field,
.select-field {
  display: grid;
  gap: 6px;
}

.search-field {
  position: relative;
}

.search-field span,
.select-field span {
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-field input,
.select-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(238, 246, 240, 0.12);
  border-radius: var(--radius);
  background: rgba(18, 32, 27, 0.9);
  color: var(--text);
  font: inherit;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 5;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(238, 246, 240, 0.12);
  border-radius: var(--radius);
  background: #101c18;
}

.search-suggestions.is-visible {
  display: block;
}

.search-suggestions button {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.search-suggestions button.is-active,
.search-suggestions button:hover {
  background: rgba(184, 255, 46, 0.1);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.games-cats .quick-filter {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  min-height: 52px;
  padding: 8px 14px;
  border-radius: 12px;
}

.games-cats .quick-filter span {
  line-height: 1.15;
}

.games-cats .quick-filter small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.quick-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(238, 246, 240, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quick-filter small {
  color: var(--soft);
  font-weight: 600;
}

.quick-filter:hover {
  border-color: rgba(184, 255, 46, 0.55);
  color: var(--lime);
}

.quick-filter:hover small {
  color: var(--lime);
}

.quick-filter.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
}

.quick-filter.is-active small {
  color: var(--lime-ink);
}

.catalog-status {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.sync-status,
.filter-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— Server bays: interactive rows, not dashboard cards —— */
.server-grid {
  display: grid;
  gap: 12px;
}

.server-bay {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(238, 246, 240, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(184, 255, 46, 0.05), transparent 28%),
    rgba(13, 24, 20, 0.92);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.server-bay:hover {
  border-color: rgba(184, 255, 46, 0.35);
  transform: translateX(4px);
  background:
    linear-gradient(90deg, rgba(184, 255, 46, 0.1), transparent 36%),
    rgba(16, 30, 25, 0.96);
}

.server-bay--hot {
  border-color: rgba(184, 255, 46, 0.28);
}

.server-bay__rail {
  display: grid;
  gap: 8px;
}

.server-bay__gpu {
  color: var(--lime);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.server-bay__line {
  color: var(--soft);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.server-bay__name {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.server-bay__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.server-bay__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.server-bay__specs li::before {
  content: "· ";
  color: var(--lime);
}

.server-bay__specs li:first-child::before {
  content: "";
}

.games-details {
  color: var(--soft);
  font-size: 0.88rem;
}

.games-details summary {
  cursor: pointer;
  color: var(--aqua);
  font-weight: 700;
}

.games-details ul {
  margin: 8px 0 0;
  padding-left: 16px;
}

.matched-game {
  color: var(--lime);
  font-weight: 700;
}

.server-bay__cta {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.server-bay__price {
  margin: 0;
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.server-bay__cta .play-button {
  min-height: 46px;
  text-transform: none;
  letter-spacing: 0;
}

.empty-state {
  padding: 28px;
  border: 1px dashed rgba(238, 246, 240, 0.16);
  border-radius: 14px;
  color: var(--muted);
}

.bay-section {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(184, 255, 46, 0.06), transparent 55%),
    var(--bg);
}

.games-section {
  background: var(--bg-2);
}

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

.games-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.games-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(184, 255, 46, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--lime);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.games-more-button:hover {
  background: rgba(184, 255, 46, 0.1);
  transform: translateY(-1px);
}

.games-more-button[data-action="collapse"] {
  border-color: rgba(238, 246, 240, 0.18);
  color: var(--muted);
}

.game-card__cover {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(184, 255, 46, 0.16), transparent 55%),
    #101c18;
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(238, 246, 240, 0.08);
  border-radius: 14px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.game-card:hover,
.game-card:focus-visible {
  border-color: rgba(93, 255, 210, 0.4);
  outline: none;
  transform: translateY(-3px);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.game-card-body {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.game-card span {
  font-family: var(--font-display);
  font-weight: 700;
}

.game-card small {
  color: var(--muted);
}

.game-card__conditions {
  color: var(--aqua) !important;
  font-size: 0.76rem;
  font-weight: 700;
}

.game-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.game-filter-button,
.game-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
}

.game-filter-button {
  flex: 1;
  border: 0;
  background: rgba(184, 255, 46, 0.14);
  color: var(--lime);
  cursor: pointer;
}

/* —— game.html: servers for selected title —— */
.game-page {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.game-page__section {
  padding-left: 0;
  padding-right: 0;
}

.game-page__hero {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.game-page__cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(238, 246, 240, 0.1);
  background: #101c18;
}

.game-page__cover--empty {
  display: grid;
  place-items: center;
  color: var(--lime);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
}

.game-page__copy h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.game-page__lead {
  margin: 0 0 18px;
  max-width: 46ch;
  color: var(--muted);
}

.game-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-page__list {
  display: grid;
  gap: 12px;
}

.game-page__ready {
  margin: 0;
  color: var(--aqua);
  font-size: 0.9rem;
  font-weight: 700;
}

.choice-steps {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.choice-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.choice-step + .choice-step::before {
  width: 28px;
  height: 1px;
  background: rgba(238, 246, 240, 0.18);
  content: "";
}

.choice-step span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(238, 246, 240, 0.16);
  border-radius: 50%;
}

.choice-step.is-complete {
  color: var(--aqua);
}

.choice-step.is-complete span {
  border-color: rgba(119, 231, 211, 0.55);
}

.choice-step.is-active {
  color: var(--text);
}

.choice-step.is-active span {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
}

.game-page__facts,
.server-bay__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.game-page__facts {
  margin: 0 0 18px;
}

.game-page__facts span,
.server-bay__badges span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(119, 231, 211, 0.26);
  border-radius: 999px;
  background: rgba(119, 231, 211, 0.08);
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 800;
}

.server-bay__badges span + span {
  border-color: rgba(199, 243, 107, 0.28);
  background: rgba(199, 243, 107, 0.08);
  color: var(--lime);
}

.game-filters {
  margin: 0 0 28px;
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(238, 246, 240, 0.11);
  border-radius: 8px;
  background: rgba(23, 32, 28, 0.86);
}

.game-filters__heading,
.game-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.game-filters__heading {
  margin-bottom: 18px;
}

.game-filters__heading .eyebrow,
.game-filters__heading h2 {
  margin: 0;
}

.game-filters__heading h2,
.game-results-heading h2 {
  font-size: 1.25rem;
}

.filter-reset {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(238, 246, 240, 0.17);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-reset:hover,
.filter-reset:focus-visible {
  border-color: rgba(119, 231, 211, 0.55);
  color: var(--aqua);
  outline: none;
}

.launch-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.launch-toggle {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(238, 246, 240, 0.11);
  border-radius: 8px;
  background: rgba(8, 17, 14, 0.38);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.launch-toggle:has(input:checked) {
  border-color: rgba(199, 243, 107, 0.64);
  background: rgba(199, 243, 107, 0.1);
}

.launch-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.launch-toggle i {
  position: relative;
  display: block;
  width: 38px;
  height: 22px;
  flex: 0 0 38px;
  border-radius: 999px;
  background: #415047;
  transition: background 150ms ease;
}

.launch-toggle i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f1f5f1;
  content: "";
  transition: transform 150ms ease;
}

.launch-toggle input:checked + i {
  background: #23a75a;
}

.launch-toggle input:checked + i::after {
  transform: translateX(16px);
}

.launch-toggle:focus-within {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

.server-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.price-control,
.sort-control {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(238, 246, 240, 0.11);
  border-radius: 8px;
  background: rgba(8, 17, 14, 0.38);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.price-control > span,
.sort-control {
  color: var(--soft);
}

.price-control label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-control input,
.sort-control select {
  width: 76px;
  min-height: 32px;
  padding: 0 7px;
  border: 1px solid rgba(238, 246, 240, 0.13);
  border-radius: 6px;
  background: #17201c;
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
}

.sort-control select {
  width: auto;
  min-width: 158px;
}

.game-gpu-filters {
  margin: 14px 0 0;
}

.game-results-heading {
  margin: 0 0 12px;
}

.game-results-heading h2,
.game-results-heading p {
  margin: 0;
}

.game-results-heading p {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 820px) {
  .game-page__hero {
    grid-template-columns: 1fr;
  }

  .game-page__cover {
    max-width: 360px;
  }

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

.game-link {
  border: 1px solid rgba(238, 246, 240, 0.14);
  color: var(--muted);
}

.steps-section {
  background:
    linear-gradient(180deg, transparent, rgba(184, 255, 46, 0.04)),
    var(--bg);
}

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

.steps article {
  min-height: 200px;
  padding: 24px;
  border-top: 2px solid var(--lime);
  background: rgba(18, 32, 27, 0.85);
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--bg-2);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq-list details {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(238, 246, 240, 0.1);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 72px);
  border-top: 1px solid rgba(238, 246, 240, 0.08);
  background: #050a08;
  color: var(--muted);
}

.site-footer div {
  margin-right: auto;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--font-display);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--aqua);
  font-weight: 700;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-stage,
  .server-bay {
    animation: none !important;
    transition: none !important;
  }
}

/* —— go.html —— */
.go-body {
  min-height: 100vh;
}

.go-main {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 64px;
}

.go-card {
  padding: 28px clamp(18px, 4vw, 34px) 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 32, 27, 0.98), rgba(8, 17, 14, 0.98));
  box-shadow: var(--shadow);
}

.go-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.92;
}

.go-lead,
.go-note,
.go-status {
  color: var(--muted);
}

.go-lead {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.go-door {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-left: 2px solid var(--lime);
  background: rgba(184, 255, 46, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.save-place {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(93, 255, 210, 0.28);
  border-radius: var(--radius);
  background: rgba(93, 255, 210, 0.06);
}

.save-place .eyebrow {
  margin-bottom: 6px;
}

.save-place h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.save-place p {
  margin: 0;
  color: var(--muted);
}

.save-place__button {
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--lime-ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.save-place__button:hover {
  transform: translateY(-2px);
}

.save-place__button:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.save-place__hint {
  margin-top: 10px !important;
  font-size: 0.88rem;
}

.go-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.go-specs div {
  padding: 12px 14px;
  border: 1px solid rgba(238, 246, 240, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.go-specs dt {
  color: var(--soft);
  font-size: 0.82rem;
}

.go-specs dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 800;
}

.go-status {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(93, 255, 210, 0.28);
  border-radius: var(--radius);
  background: rgba(93, 255, 210, 0.08);
  color: #e6fff8;
  font-weight: 800;
}

.go-status[data-tone="warn"] {
  border-color: rgba(255, 200, 87, 0.45);
  background: rgba(255, 200, 87, 0.1);
  color: #ffe6a8;
}

.go-status[data-tone="ok"] {
  border-color: rgba(184, 255, 46, 0.35);
  background: rgba(184, 255, 46, 0.1);
  color: #f2ffd6;
}

.go-panel {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
}

.go-panel strong {
  display: block;
  margin-bottom: 8px;
}

.go-panel p,
.go-panel ol {
  margin: 0 0 14px;
}

.go-panel ol {
  padding-left: 20px;
}

.go-panel-warn {
  border: 1px solid rgba(255, 200, 87, 0.4);
  background: rgba(255, 200, 87, 0.1);
  color: #ffe6a8;
}

.go-panel-ok {
  border: 1px solid rgba(184, 255, 46, 0.28);
  background: rgba(184, 255, 46, 0.08);
  color: #f2ffd6;
}

.go-inline-actions,
.go-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.go-actions .primary-button,
.go-actions .secondary-button,
.go-panel .primary-button,
.go-panel .secondary-button {
  min-width: min(100%, 240px);
  cursor: pointer;
  border-style: solid;
  font: inherit;
}

@keyframes go-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(184, 255, 46, 0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(184, 255, 46, 0);
  }
}

.go-cta-pulse {
  animation: go-cta-pulse 1.15s ease-in-out infinite;
  outline: 2px solid rgba(184, 255, 46, 0.85);
  outline-offset: 3px;
  z-index: 1;
}

.go-cta-muted {
  opacity: 0.42;
  filter: saturate(0.55);
}

.go-text-link,
.go-back {
  display: inline-block;
  margin-top: 12px;
  color: var(--aqua);
  font-weight: 800;
}

.go-note {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .server-bay {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .server-bay__price {
    text-align: left;
  }

  .games-strip,
  .steps,
  .facts,
  .favorite-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calm-route {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 10px 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    font-size: 0.88rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding-top: 64px;
  }

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

  .games-strip,
  .steps,
  .facts,
  .favorite-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .primary-button,
  .secondary-button,
  .play-button,
  .header-action {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-return__actions {
    display: grid;
  }

  .hero-return__action,
  .hero-save-button {
    width: 100%;
  }

  .game-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 120px;
  }

  .game-card img {
    height: 100%;
    min-height: 120px;
    aspect-ratio: auto;
  }

  .go-actions {
    display: grid;
  }

  .go-actions .primary-button,
  .go-actions .secondary-button {
    width: 100%;
  }
}
