:root {
  --bg: #061016;
  --bg-soft: #0c1920;
  --panel: rgba(12, 23, 29, 0.78);
  --panel-strong: rgba(10, 18, 24, 0.92);
  --line: rgba(170, 230, 255, 0.16);
  --line-hot: rgba(255, 118, 82, 0.48);
  --text: #edf7f5;
  --muted: #9fb3bd;
  --cyan: #7ae7ff;
  --mint: #a5ffce;
  --ember: #ff7a52;
  --amber: #ffd27d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 122, 82, 0.28), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(122, 231, 255, 0.21), transparent 32rem),
    linear-gradient(135deg, #05080c 0%, #07141b 50%, #11120e 100%);
  color: var(--text);
  font-family: Manrope, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 11, 15, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 10px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(122, 231, 255, 0.45);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(122, 231, 255, 0.2), rgba(255, 122, 82, 0.18)),
    #0d2028;
  color: var(--cyan);
  font-family: "Russo One", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.nav a,
.lang-button,
.button {
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header-actions {
  display: inline-flex;
  gap: 6px;
}

.lang-button {
  min-width: 42px;
  padding: 10px 12px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.lang-button.is-active {
  border-color: rgba(122, 231, 255, 0.5);
  background: rgba(122, 231, 255, 0.14);
  color: var(--text);
}

main,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section,
.section-grid {
  margin-top: 78px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 120px);
  margin-top: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.15rem, 5.7vw, 5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

h1,
h2,
.title-impact,
.stat-board strong {
  font-family: "Russo One", Impact, sans-serif;
  font-weight: 400;
}

.title-impact {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--mint) 42%, var(--ember));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead,
.big-copy,
.section-heading p {
  max-width: 760px;
  color: #c5d1d6;
  font-size: clamp(1.04rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  font-weight: 950;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(255, 122, 82, 0.65);
  background:
    linear-gradient(135deg, rgba(255, 122, 82, 0.96), rgba(122, 231, 255, 0.86)),
    var(--ember);
  color: #091116;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.signal-list li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(to top, rgba(6, 16, 22, 0.94), transparent);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.015);
  animation: coverDrift 16s ease-in-out infinite alternate;
}

.panel-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  max-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(122, 231, 255, 0.3);
  border-radius: 24px;
  background: rgba(7, 16, 23, 0.82);
  backdrop-filter: blur(16px);
}

.panel-badge span,
.panel-badge strong {
  display: block;
}

.panel-badge span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.panel-badge strong {
  margin-top: 4px;
  font-family: "Russo One", Impact, sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ticker span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 210, 125, 0.2);
  border-radius: 999px;
  background: rgba(255, 210, 125, 0.08);
  color: #ffe1a4;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(12, 25, 32, 0.78), rgba(6, 13, 18, 0.86));
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
}

.section-heading p {
  margin: 0;
}

.game-grid,
.mechanic-grid,
.release-grid {
  display: grid;
  gap: 18px;
}

.game-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.game-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
}

.game-card.is-live {
  border-color: rgba(122, 231, 255, 0.38);
  background:
    radial-gradient(circle at 12% 15%, rgba(122, 231, 255, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.045);
}

.game-card.is-locked {
  align-items: center;
  border-style: dashed;
}

.game-card img,
.future-mark {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 22px;
  object-fit: cover;
}

.future-mark {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 125, 0.24);
  background: rgba(255, 210, 125, 0.08);
  color: var(--amber);
  font-family: "Russo One", Impact, sans-serif;
  font-size: 5rem;
}

.card-status {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.game-card h3,
.mechanic-grid h3,
.release-step h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.game-card p:not(.card-status),
.mechanic-grid p,
.release-step p,
.contact-card p {
  color: #b8c8cf;
  font-weight: 700;
  line-height: 1.62;
}

.feature {
  align-items: stretch;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(122, 231, 255, 0.2);
  border-radius: 42px;
  background:
    radial-gradient(circle at 84% 20%, rgba(122, 231, 255, 0.14), transparent 25rem),
    radial-gradient(circle at 15% 90%, rgba(255, 122, 82, 0.14), transparent 22rem),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

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

.stat-board div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.stat-board strong {
  display: block;
  color: var(--mint);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.86;
}

.stat-board span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mechanic-grid,
.release-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mechanic-grid article,
.release-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.mechanic-grid span,
.release-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--ember);
  font-family: "Russo One", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.release-step:nth-child(2) span {
  color: var(--cyan);
}

.release-step:nth-child(3) span {
  color: var(--mint);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
  background:
    linear-gradient(135deg, rgba(255, 122, 82, 0.12), rgba(122, 231, 255, 0.13)),
    var(--panel-strong);
}

.contact-card h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

@keyframes coverDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-1.5%, 1%, 0);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav {
    display: none;
  }

  .section-grid,
  .section-heading,
  .game-grid,
  .mechanic-grid,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 430px;
  }

  .game-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 18px, 1180px);
  }

  .site-header {
    margin-top: 9px;
  }

  .brand strong {
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(3.2rem, 18.5vw, 5.1rem);
    line-height: 1.02;
  }

  .section,
  .feature {
    border-radius: 28px;
  }

  .game-card {
    grid-template-columns: 1fr;
  }

  .game-card img,
  .future-mark {
    max-height: 280px;
  }

  .stat-board {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
