
@import url("games/_shared/scrollbars-base.css");

:root {
  --bg: #02060b;
  --panel: rgba(7, 16, 28, 0.86);
  --text: #f4f8ff;
  --muted: #8fa4b8;
  --cyan: #28d9ff;
  --line: rgba(82, 185, 228, 0.26);
  --max: 1360px;
  --gutter: clamp(28px, 5vw, 80px);
  --email: hello@rycx.games;
  --scrollbar-size: 10px;
  --scrollbar-accent: var(--cyan);
  --scrollbar-track: rgba(2, 8, 14, 0.78);
  --scrollbar-thumb: color-mix(in srgb, var(--scrollbar-accent) 82%, #02060b);
  --scrollbar-thumb-hover: color-mix(in srgb, var(--scrollbar-accent) 94%, #fff 6%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 10%, rgba(27, 116, 192, 0.12), transparent 30%),
    linear-gradient(180deg, #02050a, #07101b 55%, #03070d);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(#000, transparent 88%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(2, 6, 11, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 14px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  width: 220px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #b8c9d9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 16px;
  position: relative;
  border-radius: 2px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: #f4f8ff;
  background: rgba(40, 217, 255, 0.05);
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 16px;
  right: calc(100% - 16px);
  bottom: 6px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transition: right 0.18s ease;
}

.nav-links a:hover:after,
.nav-links a[aria-current="page"] {
  color: #f4f8ff;
}

.nav-links a:hover:after,
.nav-links a[aria-current="page"]:after { right: 16px; }

/* Games mega menu */
.nav-mega {
  position: relative;
}

.nav-mega-trigger {
  padding: 10px 16px;
  position: relative;
  border: 0;
  background: transparent;
  color: #b8c9d9;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-mega-trigger:hover,
.nav-mega.is-open .nav-mega-trigger {
  color: #f4f8ff;
  background: rgba(40, 217, 255, 0.05);
}

.nav-mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  width: min(640px, calc(100vw - 40px));
  padding: 16px;
  background: rgba(4, 12, 21, 0.98);
  border: 1px solid rgba(40, 217, 255, 0.28);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(40, 217, 255, 0.06);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.nav-mega-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: rgba(6, 18, 30, 0.72);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: 0.15s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.nav-mega-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent, var(--cyan)), transparent 35%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.nav-mega-card[aria-current="page"] {
  border-color: color-mix(in srgb, var(--accent, var(--cyan)), transparent 20%);
  background: color-mix(in srgb, var(--accent, var(--cyan)), transparent 92%);
}

.nav-mega-card.neon { --accent: #d932ff; }
.nav-mega-card.fission { --accent: #20ddff; }
.nav-mega-card.stack { --accent: #ff49c7; }
.nav-mega-card.lumen { --accent: #84dfff; }
.nav-mega-card.wreckage { --accent: #ff982c; }

.nav-mega-thumb {
  overflow: hidden;
  aspect-ratio: 6/5;
  background: #06101b;
  border: 1px solid var(--line);
}

.nav-mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-mega-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mega-copy strong {
  color: #eef6ff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.nav-mega-copy small {
  color: #8498ab;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-mega-all {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-mega-all:hover { color: #fff; }

/* Homepage hero */
.hero {
  min-height: 570px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.94) 0%, rgba(2, 6, 11, 0.78) 38%, rgba(2, 6, 11, 0.14) 72%, rgba(2, 6, 11, 0.08) 100%),
    url("assets/hero-banner.png") center/cover no-repeat;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, rgba(3, 8, 14, 0.94));
  pointer-events: none;
}

.hero-copy-wrap {
  position: relative;
  z-index: 2;
  padding: 90px 0 110px;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 18px 0 22px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(40, 217, 255, 0.68);
  color: #c2f7ff;
  background: rgba(6, 30, 43, 0.42);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(8, 49, 66, 0.62);
  box-shadow: 0 0 26px rgba(40, 217, 255, 0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(82, 185, 228, 0.22);
  color: #9eb6c8;
  background: rgba(4, 14, 24, 0.55);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.btn-secondary:hover {
  color: #c2f7ff;
  border-color: rgba(40, 217, 255, 0.45);
  transform: translateY(-2px);
}

/* Homepage sections */
.section { padding: 68px 0; }

.section-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.section-heading:before,
.section-heading:after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(40, 217, 255, 0.45), transparent);
}

.section-heading h2 {
  margin: 0;
  color: #72e7ff;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.game-card {
  --accent: #28d9ff;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 21, 36, 0.92), rgba(3, 8, 15, 0.98));
  border: 1px solid color-mix(in srgb, var(--accent), transparent 42%);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  transition: 0.18s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 28px color-mix(in srgb, var(--accent), transparent 85%);
}

.game-card.neon { --accent: #d932ff; }
.game-card.fission { --accent: #20ddff; }
.game-card.stack { --accent: #ff49c7; }
.game-card.lumen { --accent: #84dfff; }
.game-card.wreckage { --accent: #ff982c; }

.game-art {
  aspect-ratio: 6/5;
  background: #06101b;
  overflow: hidden;
}

.game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card:hover .game-art img { transform: scale(1.035); }

.game-info {
  padding: 18px 16px 17px;
  text-align: center;
}

.game-info h3 {
  margin: 0 0 7px;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.game-info p {
  min-height: 36px;
  margin: 0 0 8px;
  color: color-mix(in srgb, var(--accent), white 15%);
  font-size: 12.5px;
  line-height: 1.5;
}

.game-platforms {
  min-height: 0 !important;
  margin: 0 0 14px !important;
  color: #7f95a8 !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 41px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 22%);
  color: color-mix(in srgb, var(--accent), white 24%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.studio-strip { padding: 18px 0 76px; }

.studio-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.studio-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  align-items: center;
  padding: 26px 30px;
}

.studio-point + .studio-point { border-left: 1px solid rgba(90, 158, 190, 0.2); }

.studio-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(80, 179, 222, 0.34);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aef0ff;
}

.studio-point h3 {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-point p {
  margin: 0;
  color: #8498ab;
  font-size: 12px;
  line-height: 1.6;
}

/* Secondary page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.96) 0%, rgba(2, 6, 11, 0.82) 42%, rgba(2, 6, 11, 0.55) 100%),
    url("assets/hero-banner.png") center/cover no-repeat;
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(3, 8, 14, 0.95));
  pointer-events: none;
}

.page-hero .shell { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 14px 0 16px;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.page-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hero-meta span {
  padding: 8px 14px;
  background: rgba(4, 14, 24, 0.72);
  border: 1px solid var(--line);
  color: #8faec2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-meta span strong { color: #c2f7ff; }

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Content blocks */
.content { padding: 56px 0 88px; }

.panel {
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

/* About page */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.about-intro-copy {
  position: relative;
  padding-left: 18px;
}

.about-intro-copy:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(40, 217, 255, 0.08));
}

.about-intro-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-intro h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.about-intro-body {
  display: grid;
  gap: 22px;
}

.about-intro p {
  margin: 0;
  color: #a7b7c6;
  font-size: 16px;
  line-height: 1.8;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-pill-row li {
  padding: 8px 12px;
  border: 1px solid rgba(82, 185, 228, 0.22);
  background: rgba(4, 12, 21, 0.72);
  color: #b8c9d9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values-panel {
  margin-bottom: 48px;
}

.about-values-panel .studio-point {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 28px 30px;
}

.about-values-panel .studio-point + .studio-point {
  border-left: 1px solid rgba(90, 158, 190, 0.2);
}

.stat-card {
  flex: 1;
  min-width: 140px;
  padding: 8px 24px;
  text-align: center;
  background: none;
  border: none;
}

.stat-card + .stat-card {
  border-left: 1px solid var(--line);
}

.stat-card .stat-num {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-card .stat-label {
  color: #8498ab;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-game-chip {
  --accent: #28d9ff;
  display: grid;
  gap: 8px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 21, 36, 0.88), rgba(3, 8, 15, 0.96));
  border: 1px solid color-mix(in srgb, var(--accent), transparent 50%);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: 0.18s ease;
}

.about-game-chip-art {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-game-chip-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-game-chip:hover .about-game-chip-art img {
  transform: scale(1.04);
}

.about-game-chip-tag {
  color: #7f95a8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-game-chip-name {
  color: color-mix(in srgb, var(--accent), white 20%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

.about-game-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px color-mix(in srgb, var(--accent), transparent 88%);
}

.about-game-chip.neon { --accent: #d932ff; }
.about-game-chip.fission { --accent: #20ddff; }
.about-game-chip.stack { --accent: #ff49c7; }
.about-game-chip.lumen { --accent: #84dfff; }
.about-game-chip.wreckage { --accent: #ff982c; }

.cta-panel {
  margin-top: 48px;
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(8, 28, 44, 0.85), rgba(4, 12, 21, 0.92));
  border: 1px solid rgba(40, 217, 255, 0.28);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.cta-panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-panel p {
  margin: 0;
  color: #8498ab;
  font-size: 14px;
  line-height: 1.65;
  max-width: 480px;
}

/* Support page */
.contact-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 44px;
  margin-bottom: 52px;
  background: linear-gradient(135deg, rgba(8, 28, 44, 0.85), rgba(4, 12, 21, 0.92));
  border: 1px solid rgba(40, 217, 255, 0.28);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.contact-banner-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.contact-banner p {
  margin: 0 0 20px;
  color: #8498ab;
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(40, 217, 255, 0.08);
  border: 1px solid rgba(40, 217, 255, 0.35);
  color: #c2f7ff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.15s ease;
}

.contact-email:hover {
  background: rgba(40, 217, 255, 0.14);
  box-shadow: 0 0 24px rgba(40, 217, 255, 0.1);
  transform: translateY(-2px);
}

.contact-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-tip {
  padding: 16px 18px;
  background: rgba(2, 8, 16, 0.55);
  border: 1px solid var(--line);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.contact-tip strong {
  display: block;
  margin-bottom: 5px;
  color: #c2f7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-tip span {
  color: #8498ab;
  font-size: 12.5px;
  line-height: 1.5;
}

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

.support-card {
  --accent: #28d9ff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 21, 36, 0.92), rgba(3, 8, 15, 0.98));
  border: 1px solid color-mix(in srgb, var(--accent), transparent 42%);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  transition: 0.18s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 28px color-mix(in srgb, var(--accent), transparent 85%);
}

.support-card.neon { --accent: #d932ff; }
.support-card.fission { --accent: #20ddff; }
.support-card.stack { --accent: #ff49c7; }
.support-card.lumen { --accent: #84dfff; }
.support-card.wreckage { --accent: #ff982c; }
.support-card.general { --accent: #28d9ff; }

.support-card-art {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #06101b;
}

.support-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.support-card:hover .support-card-art img { transform: scale(1.04); }

.support-card-art.icon {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(6, 22, 36, 0.9), rgba(3, 10, 18, 0.95));
  font-size: 48px;
  color: var(--accent);
}

.support-card-art:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(3, 8, 15, 0.95));
  pointer-events: none;
}

.support-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.support-card-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 30%);
  color: color-mix(in srgb, var(--accent), white 20%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent), white 18%);
}

.support-card p {
  flex: 1;
  margin: 0 0 18px;
  color: #97aabd;
  font-size: 13.5px;
  line-height: 1.65;
}

.support-card .btn {
  width: 100%;
  min-height: 44px;
  border-color: color-mix(in srgb, var(--accent), transparent 25%);
  color: color-mix(in srgb, var(--accent), white 22%);
}

.support-card .btn:hover {
  background: color-mix(in srgb, var(--accent), transparent 88%);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent), transparent 82%);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 0;
}

.faq-block {
  padding: 26px 28px;
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: 0.15s ease;
}

.faq-block:hover {
  border-color: rgba(40, 217, 255, 0.28);
  background: rgba(6, 18, 30, 0.82);
}

.faq-block-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(80, 179, 222, 0.34);
  border-radius: 50%;
  color: #aef0ff;
  font-size: 13px;
}

.faq-block h3 {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c2f7ff;
}

.faq-block p {
  margin: 0;
  color: #8498ab;
  font-size: 13.5px;
  line-height: 1.65;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

/* Legal / doc pages */
.doc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.doc-nav {
  position: sticky;
  top: 108px;
  padding: 24px 20px;
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.doc-nav-label {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.doc-nav a {
  display: block;
  padding: 9px 12px;
  margin-bottom: 2px;
  color: #7f95a8;
  font-size: 13px;
  line-height: 1.4;
  border-left: 2px solid transparent;
  transition: 0.15s ease;
}

.doc-nav a:hover,
.doc-nav a.is-active {
  color: #c2f7ff;
  border-left-color: var(--cyan);
  background: rgba(40, 217, 255, 0.04);
}

.doc-body {
  padding: 36px 40px 40px;
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.notice {
  padding: 16px 20px;
  margin-bottom: 36px;
  background: rgba(28, 97, 124, 0.12);
  border: 1px solid rgba(74, 187, 229, 0.25);
  color: #a9c2d2;
  line-height: 1.65;
  font-size: 14px;
}

.doc-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(82, 185, 228, 0.12);
  scroll-margin-top: 110px;
}

.doc-section:last-of-type { border-bottom: 0; }

.doc-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #e8f2fa;
}

.doc-section p {
  margin: 0;
  color: #a7b7c6;
  line-height: 1.75;
  font-size: 15px;
}

.doc-section a { color: #77eaff; }

.doc-section a:hover { text-decoration: underline; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  background: rgba(1, 4, 8, 0.78);
}

.footer-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-logo img {
  width: 180px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.footer-copy {
  color: #71879a;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: #a6b7c5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--cyan); }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  padding: 0 0 22px;
}

.footer-social--pending { display: none; }

.footer-social a {
  color: #8fa4b8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-social a:hover { color: var(--cyan); }

/* Mobile bottom dock */
.mobile-dock {
  display: none;
}

.mobile-games-sheet {
  display: none;
}

@media (max-width: 820px) {
  .site-header .nav-links {
    display: none;
  }

  body.has-mobile-dock {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-dock footer {
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-dock .cookie-banner:not([hidden]) {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  body.mobile-sheet-open {
    overflow: hidden;
  }

  .mobile-dock {
    position: fixed;
    z-index: 70;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(40, 217, 255, 0.22);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(8, 18, 30, 0.92), rgba(4, 10, 18, 0.88));
    backdrop-filter: blur(22px) saturate(140%);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.03) inset,
      0 0 36px rgba(40, 217, 255, 0.08);
  }

  .mobile-dock-item {
    display: flex;
    min-height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px;
    border: 0;
    background: transparent;
    color: #8fa4b8;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 16px;
    transition:
      color 0.16s ease,
      transform 0.16s ease,
      background 0.16s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-dock-item:active {
    transform: scale(0.96);
  }

  .mobile-dock-icon-wrap {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    color: #b8c9d9;
    transition:
      color 0.16s ease,
      background 0.16s ease,
      box-shadow 0.16s ease;
  }

  .mobile-dock-icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .mobile-dock-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-dock-item.is-active,
  .mobile-dock-item[aria-expanded="true"] {
    color: #f4f8ff;
  }

  .mobile-dock-item.is-active .mobile-dock-icon-wrap,
  .mobile-dock-item[aria-expanded="true"] .mobile-dock-icon-wrap {
    background: rgba(40, 217, 255, 0.14);
    color: var(--cyan);
    box-shadow: 0 0 22px rgba(40, 217, 255, 0.18);
  }

  .mobile-games-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
  }

  .mobile-games-sheet.is-open {
    pointer-events: auto;
  }

  .mobile-games-sheet-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 6, 11, 0.68);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  .mobile-games-sheet.is-open .mobile-games-sheet-backdrop {
    opacity: 1;
  }

  .mobile-games-sheet-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    max-height: min(82vh, 680px);
    flex-direction: column;
    padding: 10px 16px calc(18px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(40, 217, 255, 0.24);
    background:
      linear-gradient(180deg, rgba(6, 16, 28, 0.98), rgba(3, 8, 14, 0.98));
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(104%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-games-sheet.is-open .mobile-games-sheet-panel {
    transform: translateY(0);
  }

  .mobile-games-sheet-handle {
    width: 42px;
    height: 4px;
    margin: 2px auto 14px;
    border-radius: 999px;
    background: rgba(143, 164, 184, 0.45);
  }

  .mobile-games-sheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
  }

  .mobile-games-sheet-kicker {
    margin: 0 0 6px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-games-sheet-head h2 {
    margin: 0;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
  }

  .mobile-games-sheet-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(82, 185, 228, 0.24);
    background: rgba(4, 12, 21, 0.72);
    color: #b8c9d9;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 12px;
  }

  .mobile-games-sheet-grid {
    display: grid;
    gap: 10px;
    overflow: auto;
    padding-right: 2px;
  }

  .mobile-games-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(6, 18, 30, 0.72);
    text-decoration: none;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: transform 0.15s ease, border-color 0.15s ease;
  }

  .mobile-games-card:active {
    transform: scale(0.99);
  }

  .mobile-games-card[aria-current="page"] {
    border-color: rgba(40, 217, 255, 0.45);
    box-shadow: 0 0 24px rgba(40, 217, 255, 0.1);
  }

  .mobile-games-card-thumb {
    overflow: hidden;
    aspect-ratio: 6 / 5;
    border: 1px solid rgba(82, 185, 228, 0.16);
  }

  .mobile-games-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-games-card-copy strong {
    display: block;
    color: #f4f8ff;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .mobile-games-card-copy small {
    display: block;
    margin-top: 4px;
    color: #8fa4b8;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-games-sheet-all {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(82, 185, 228, 0.14);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-games-card.neon { --accent: #3de1ff; }
  .mobile-games-card.fission { --accent: #3de1ff; }
  .mobile-games-card.stack { --accent: #ff58b9; }
  .mobile-games-card.lumen { --accent: #84dfff; }
  .mobile-games-card.wreckage { --accent: #ff982c; }

  .mobile-games-card:hover,
  .mobile-games-card[aria-current="page"] {
    border-color: color-mix(in srgb, var(--accent, var(--cyan)), transparent 35%);
  }
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 22px;
  z-index: 80;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(4, 12, 21, 0.94);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  color: #a7b7c6;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-banner a { color: #77eaff; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(40, 217, 255, 0.45);
  background: rgba(6, 30, 43, 0.5);
  color: #c2f7ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner button[data-cookie-reject] {
  border-color: rgba(82, 185, 228, 0.22);
  color: #9eb6c8;
  background: transparent;
}

/* Game detail */
.game-detail {
  --accent: #28d9ff;
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 48px;
  align-items: start;
}

.game-detail.neon { --accent: #d932ff; }
.game-detail.fission { --accent: #20ddff; }
.game-detail.stack { --accent: #ff49c7; }
.game-detail.lumen { --accent: #84dfff; }
.game-detail.wreckage { --accent: #ff982c; }

.game-detail-art {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent, #28d9ff), transparent 42%);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.game-detail-art img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
}

.game-detail-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
}

.game-detail-copy p {
  margin: 0 0 20px;
  color: #a7b7c6;
  font-size: 15px;
  line-height: 1.75;
}

.game-feature-list {
  margin: 0 0 28px;
  padding-left: 18px;
  color: #a7b7c6;
  font-size: 14px;
  line-height: 1.7;
}

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

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(82, 185, 228, 0.22);
  color: #9eb6c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-badge.is-disabled {
  opacity: 0.55;
  cursor: default;
}

.store-badge:not(.is-disabled) {
  border-color: rgba(40, 217, 255, 0.45);
  color: #c2f7ff;
}

/* Press */
.press-contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.press-contact-item {
  padding: 22px 24px;
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.press-contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.press-contact-item span,
.press-contact-item a {
  color: #c2f7ff;
  font-size: 14px;
  line-height: 1.5;
}

.press-contact-item span { color: #a7b7c6; font-size: 13px; }

.press-boilerplate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 48px;
}

.press-copy-block {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, rgba(8, 28, 44, 0.85), rgba(4, 12, 21, 0.92));
  border: 1px solid rgba(40, 217, 255, 0.22);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.press-copy-block h3 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #72e7ff;
}

.press-copy-block p {
  margin: 0;
  color: #a7b7c6;
  font-size: 14px;
  line-height: 1.75;
}

.press-copy-block .press-copy-label {
  display: block;
  margin-bottom: 10px;
  color: #71879a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.press-fact {
  padding: 20px 18px;
  text-align: center;
  background: rgba(6, 18, 30, 0.65);
  border: 1px solid var(--line);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.press-fact .fact-value {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.press-fact .fact-label {
  color: #8498ab;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press-assets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 0;
}

.press-asset {
  overflow: hidden;
  padding: 0;
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  transition: 0.18s ease;
}

.press-asset:hover {
  border-color: rgba(40, 217, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.press-asset-preview {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #06101b;
  border-bottom: 1px solid var(--line);
}

.press-asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-asset-preview.icon-preview {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(40, 217, 255, 0.08), rgba(4, 12, 21, 0.95));
}

.press-asset-preview.icon-preview img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.press-asset-body {
  padding: 20px 22px 22px;
}

.press-asset-body h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-asset-meta {
  display: block;
  margin-bottom: 10px;
  color: #71879a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-asset-body p {
  margin: 0 0 16px;
  color: #8498ab;
  font-size: 13px;
  line-height: 1.6;
}

.press-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.press-game-card {
  --accent: #28d9ff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 21, 36, 0.92), rgba(3, 8, 15, 0.98));
  border: 1px solid color-mix(in srgb, var(--accent), transparent 42%);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  transition: 0.18s ease;
}

.press-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 28px color-mix(in srgb, var(--accent), transparent 85%);
}

.press-game-card.neon { --accent: #d932ff; }
.press-game-card.fission { --accent: #20ddff; }
.press-game-card.stack { --accent: #ff49c7; }
.press-game-card.lumen { --accent: #84dfff; }
.press-game-card.wreckage { --accent: #ff982c; }

.press-game-art {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #06101b;
}

.press-game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.press-game-card:hover .press-game-art img { transform: scale(1.04); }

.press-game-art:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 60px;
  background: linear-gradient(to top, rgba(3, 8, 15, 0.95), transparent);
  pointer-events: none;
}

.press-game-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.press-game-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--accent), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent), transparent 55%);
  color: color-mix(in srgb, var(--accent), white 18%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.press-game-body h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-game-body p {
  flex: 1;
  margin: 0 0 18px;
  color: #97aabd;
  font-size: 13.5px;
  line-height: 1.55;
}

.press-game-body .btn-secondary {
  width: 100%;
  min-height: 44px;
  border-color: color-mix(in srgb, var(--accent), transparent 25%);
  color: color-mix(in srgb, var(--accent), white 22%);
}

.press-game-body .btn-secondary:hover {
  background: color-mix(in srgb, var(--accent), transparent 88%);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent), transparent 82%);
}

.press-guidelines {
  padding: 28px 32px;
  margin-bottom: 48px;
  background: rgba(4, 12, 21, 0.72);
  border: 1px solid var(--line);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.press-guidelines h3 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-guidelines ul {
  margin: 0;
  padding-left: 18px;
  color: #a7b7c6;
  font-size: 14px;
  line-height: 1.75;
}

.press-guidelines li + li { margin-top: 6px; }

.press-cta {
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(8, 28, 44, 0.85), rgba(4, 12, 21, 0.92));
  border: 1px solid rgba(40, 217, 255, 0.28);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.press-cta h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.press-cta p {
  margin: 0;
  color: #8498ab;
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 1180px) {
  .game-grid,
  .about-games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-card:last-child { grid-column: span 2; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --gutter: clamp(20px, 5vw, 32px); }
  .nav { min-height: 72px; padding-block: 10px; gap: 20px; }
  .logo-link img { width: 180px; height: 48px; }
  .nav-links { gap: 4px; font-size: 9px; }
  .nav-links a { padding: 10px 10px; }
  .nav-links a:after { left: 10px; }
  .nav-links a:hover:after,
  .nav-links a[aria-current="page"]:after { right: 10px; }
  .hero { background-position: 65% center; }
  .hero-copy-wrap { padding: 72px 0 84px; }
  .hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .studio-panel { grid-template-columns: 1fr; }
  .studio-point + .studio-point { border-left: 0; border-top: 1px solid rgba(90, 158, 190, 0.2); }
  .about-intro { grid-template-columns: 1fr; gap: 24px; }
  .about-intro h2 { max-width: none; }
  .about-intro-copy { padding-left: 14px; }
  .about-stats { flex-direction: column; padding: 20px 0; }
  .stat-card + .stat-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 12px;
  }
  .about-values-panel .studio-point + .studio-point {
    border-left: 0;
    border-top: 1px solid rgba(90, 158, 190, 0.2);
  }
  .contact-tips { grid-template-columns: 1fr; }
  .page-hero { padding: 72px 0 56px; }
  .content { padding: 44px 0 72px; }
  .support-card .btn { width: 100%; justify-content: center; }
  .about-games-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-banner { grid-template-columns: 1fr; }
  .contact-tips { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc-nav { position: static; }
  .doc-nav nav { display: flex; flex-wrap: wrap; gap: 6px; }
  .doc-nav a { border: 1px solid rgba(82, 185, 228, 0.16); border-left: 1px solid rgba(82, 185, 228, 0.16); margin: 0; padding: 8px 12px; font-size: 12px; }
  .doc-nav a.is-active { border-color: rgba(40, 217, 255, 0.45); }
  .doc-body { padding: 28px 24px; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .game-detail { grid-template-columns: 1fr; gap: 28px; }
  .press-assets { grid-template-columns: 1fr; }
  .press-contact-bar { grid-template-columns: 1fr; }
  .press-boilerplate { grid-template-columns: 1fr; }
  .press-facts { grid-template-columns: repeat(2, 1fr); }
  .press-games { grid-template-columns: repeat(2, 1fr); }
  .press-cta { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; padding: 26px 0; }
  .footer-links { flex-wrap: wrap; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .nav-mega-panel { right: auto; left: 0; width: min(640px, calc(100vw - 32px)); }
  .nav-mega-grid { grid-template-columns: 1fr; }
  .game-grid,
  .about-games-grid { grid-template-columns: 1fr; }
  .game-card:last-child { grid-column: auto; }
  .section-heading h2 { font-size: 11px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn,
  .page-hero-actions .btn-secondary { width: 100%; }
  .cookie-banner { left: 16px; right: 16px; }
}
