:root {
  --color-bg: #010106;
  --color-bg-alt: #05020a;
  --color-surface: rgba(12, 6, 9, 0.88);
  --color-surface-strong: rgba(20, 8, 12, 0.92);
  --color-border: rgba(255, 66, 48, 0.28);
  --color-primary: #ff321c;
  --color-primary-strong: #ff111f;
  --color-secondary: #ff003c;
  --color-highlight: #ff6c17;
  --color-text: #ffe7db;
  --color-text-muted: rgba(255, 200, 188, 0.78);
  --color-navy-glow: rgba(20, 42, 108, 0.35);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 24px 60px rgba(8, 12, 26, 0.45);
  --max-width: 1120px;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(120% 120% at 12% 18%, rgba(16, 4, 8, 0.94) 0%, rgba(2, 1, 6, 0.98) 56%, rgba(1, 1, 6, 1) 82%),
    radial-gradient(90% 90% at 84% 12%, var(--color-navy-glow), transparent 65%),
    radial-gradient(70% 80% at 60% 80%, rgba(6, 14, 42, 0.38), transparent 75%),
    linear-gradient(180deg, #010106 0%, #050212 70%, #010106 100%);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  cursor: default;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 80px;
}

body::after {
  content: '';
  position: fixed;
  inset: -15%;
  pointer-events: none;
  background:
    radial-gradient(220px 220px at 10% 16%, rgba(255, 40, 20, 0.2), transparent 60%),
    radial-gradient(180px 180px at 82% 14%, rgba(255, 22, 26, 0.2), transparent 60%),
    radial-gradient(140px 140px at 32% 72%, rgba(255, 78, 44, 0.14), transparent 52%),
    radial-gradient(240px 240px at 58% 58%, rgba(255, 50, 36, 0.18), transparent 60%),
    radial-gradient(300px 300px at 76% 80%, rgba(32, 60, 128, 0.28), transparent 66%),
    radial-gradient(200px 200px at 20% 80%, rgba(20, 36, 96, 0.2), transparent 65%);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: ember-drift 26s linear infinite;
  z-index: 0;
}

@keyframes ember-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -14px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(-6px, -28px, 0) scale(1);
  }
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  color: var(--color-primary);
}

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

button,
[role='button'],
input[type='button'],
input[type='submit'],
.btn,
select,
textarea,
label,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='search'] {
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}

.page-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2.5rem);
}

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255, 140, 108, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(70, 118, 200, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.08;
  z-index: 0;
}

::selection {
  background: rgba(104, 230, 255, 0.25);
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5, 7, 15, 0.85);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: rgba(104, 230, 255, 0.22);
  background: rgba(5, 7, 15, 0.94);
  box-shadow: 0 12px 40px rgba(3, 6, 18, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Oxanium', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.logo-emblem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 85, 46, 0.92), rgba(255, 30, 85, 0.92));
  color: #0b0508;
  font-weight: 700;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  font-weight: 500;
  margin-left: auto;
}

.site-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a,
.nav-link {
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.site-nav a::after,
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover,
.nav-link:hover {
  color: var(--color-text);
}

.site-nav a:hover::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-download {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff552e, #ff1e55);
  color: #0b0508;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 28px rgba(255, 78, 64, 0.4);
}

.nav-download::after {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  min-width: 200px;
  background: rgba(5, 7, 15, 0.98);
  border: 1px solid rgba(104, 230, 255, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 20;
}

.nav-dropdown__item {
  display: block;
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.nav-dropdown__item:hover {
  background: rgba(104, 230, 255, 0.12);
  color: var(--color-text);
}

.nav-item--has-dropdown.is-open .nav-dropdown {
  display: block;
}

.language-switcher {
  position: relative;
  margin-left: clamp(0.75rem, 2vw, 1.5rem);
}

.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.language-switcher__flag {
  font-size: 1rem;
  line-height: 1;
}

.language-switcher__menu {
  position: absolute;
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  min-width: 200px;
  background: rgba(5, 7, 15, 0.96);
  border: 1px solid rgba(104, 230, 255, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  z-index: 12;
}

.language-switcher__menu li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  color: var(--color-text);
}

.language-switcher__menu li[aria-selected='true'] {
  background: rgba(104, 230, 255, 0.08);
  font-weight: 600;
}

.language-switcher__menu li:hover {
  background: rgba(104, 230, 255, 0.12);
}

.poll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.poll-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(11, 16, 34, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.poll-card__header h3,
.poll-card__header p {
  margin: 0;
}

.poll-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  font-size: 0.82rem;
}

.poll-card__question {
  font-size: 1.35rem;
  margin: 0.25rem 0 0.35rem;
}

.poll-card__meta {
  color: var(--color-text-muted);
}

.poll-card__options {
  display: grid;
  gap: 0.8rem;
}

.poll-option {
  width: 100%;
  border: 1px solid rgba(104, 230, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-align: left;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.poll-option:hover {
  border-color: rgba(104, 230, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.poll-option.is-locked {
  cursor: default;
  opacity: 0.95;
}

.poll-option__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.poll-option__label {
  font-weight: 600;
}

.poll-option__count {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.poll-option__meter {
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 0.65rem;
}

.poll-option__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.3s ease;
}

.poll-card__footer {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.poll-card__link {
  margin-top: 0.3rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--color-primary);
  font-weight: 600;
}

.poll-card.voted .poll-card__footer {
  color: var(--color-primary);
  font-weight: 600;
}

.patch-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.patch-filter {
  display: inline-block;
  position: relative;
  margin: 0 0 1rem;
}

.patch-filter__toggle {
  background: rgba(11, 16, 34, 0.9);
  border: 1px solid rgba(104, 230, 255, 0.18);
  color: var(--color-text);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.patch-filter__menu {
  list-style: none;
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0.4rem;
  background: rgba(11, 16, 34, 0.95);
  border: 1px solid rgba(104, 230, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  top: calc(100% + 6px);
  z-index: 12;
}

.patch-filter__menu li {
  padding: 0.25rem;
}

.patch-filter__menu button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-text);
  text-align: left;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.patch-filter__menu button:hover,
.patch-filter__menu button:focus {
  background: rgba(104, 230, 255, 0.1);
  outline: none;
}

.patch-notes__card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 104, 70, 0.32);
  background: linear-gradient(145deg, rgba(26, 13, 18, 0.95), rgba(18, 8, 12, 0.92));
  box-shadow: 0 22px 50px rgba(255, 62, 54, 0.3);
  padding: 1.5rem 1.75rem;
}

.patch-notes__card h3 {
  margin: 0 0 0.75rem;
}

.patch-notes__card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  color: var(--color-text-muted);
}

.roadmap {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(104, 230, 255, 0.24);
  background: rgba(11, 16, 34, 0.85);
  padding: 1.6rem 1.75rem;
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 12% 10%, rgba(255, 76, 48, 0.08), transparent 55%),
    radial-gradient(120% 120% at 90% 80%, rgba(104, 230, 255, 0.08), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.roadmap > * {
  position: relative;
  z-index: 1;
}

.roadmap__year-bubble {
  justify-self: start;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(104, 230, 255, 0.9), rgba(84, 136, 255, 0.85));
  color: #0b1022;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.roadmap__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(104, 230, 255, 0.14);
  background: radial-gradient(120% 140% at 0% 0%, rgba(104, 230, 255, 0.1), rgba(104, 230, 255, 0)) 0 0 / 100% 100% no-repeat,
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.roadmap__badge {
  min-width: 74px;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(104, 230, 255, 0.45), rgba(84, 136, 255, 0.3));
  color: #0b1022;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.roadmap__quarter {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.roadmap__year {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.roadmap__body {
  display: grid;
  gap: 0.4rem;
}

.roadmap__label {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.roadmap__list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--color-text-muted);
}

.roadmap__item {
  position: relative;
  padding-left: 0.2rem;
}

.roadmap__item--done {
  color: #96f5b3;
  font-weight: 600;
}

.roadmap__item--done::before {
  content: '✔';
  position: absolute;
  left: -1.6rem;
  color: #96f5b3;
  font-weight: 700;
}

@media (max-width: 640px) {
  .roadmap__row {
    flex-direction: column;
  }

  .roadmap__badge {
    width: 100%;
  }
}

.roadmap__months {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.roadmap__month {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(7, 10, 22, 0.75);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.roadmap__month:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 104, 70, 0.35);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.4);
}

.roadmap__month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.roadmap__month-name {
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--color-text);
  text-transform: uppercase;
}

.roadmap__task-group {
  display: grid;
  gap: 0.45rem;
}

.roadmap__task-title {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.roadmap__task-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--color-text-muted);
}

.roadmap__task {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.roadmap__task::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(104, 230, 255, 0.35);
  background: rgba(104, 230, 255, 0.08);
}

.roadmap__task--done {
  color: #b8f7cc;
}

.roadmap__task--done::before {
  border-color: rgba(120, 240, 180, 0.7);
  background: rgba(120, 240, 180, 0.18);
  box-shadow: 0 0 12px rgba(120, 240, 180, 0.45);
}

.roadmap__task--done::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0.42rem;
  width: 4px;
  height: 7px;
  border-right: 2px solid #b8f7cc;
  border-bottom: 2px solid #b8f7cc;
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  .roadmap {
    padding: 1.25rem;
  }

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

.media {
  display: grid;
  gap: 2rem;
}

.media-grid {
  display: grid;
  gap: 2.5rem;
}

.media-block {
  display: grid;
  gap: 1.2rem;
}

.media-block__header {
  display: grid;
  gap: 0.35rem;
  max-width: 640px;
}

.media-block__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.media-block__header h3 {
  margin: 0;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.media-block__header p {
  margin: 0;
  color: var(--color-text-muted);
}

.media-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.media-gallery--videos {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.media-gallery--wallpapers {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.media-card {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(8, 12, 24, 0.85);
  overflow: hidden;
  display: grid;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 104, 70, 0.35);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45);
}

.media-card--shot {
  aspect-ratio: 16 / 10;
}

.media-card--shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.media-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(6, 10, 24, 0.55);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.media-card__play::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.9);
}

.media-card__meta {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
}

.media-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.media-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.media-wallpaper {
  display: grid;
  gap: 0.6rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(8, 12, 24, 0.8);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(104, 230, 255, 0.28);
  background: rgba(8, 12, 24, 0.6);
}

.media-placeholder__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 85, 46, 0.2), rgba(255, 30, 85, 0.2));
  border: 1px solid rgba(255, 120, 84, 0.4);
  color: #ffe7db;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.about {
  display: grid;
  gap: 2.5rem;
}

.about__intro {
  margin-bottom: 0;
}

.about__content {
  display: grid;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.about__block {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(8, 12, 24, 0.82);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.about__block h3 {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.12em;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.about__subheading {
  margin: 1.6rem 0 0.8rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.05em;
  text-transform: none;
}

.about__block p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.about__block p:last-child {
  margin-bottom: 0;
}

.about__eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.media-wallpaper:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 104, 70, 0.35);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45);
}

.media-wallpaper img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.media-wallpaper--desktop img {
  aspect-ratio: 16 / 9;
}

.media-wallpaper__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.suggestions-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(11, 16, 34, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  padding: 1.5rem;
}

.suggestions-card h3 {
  margin: 0 0 0.5rem;
}

.suggestions-card p {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
}

.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.suggestions-list li {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.suggestions-card--input {
  display: grid;
  gap: 1rem;
}

.suggestions-card__header h3 {
  margin: 0 0 0.2rem;
}

.suggestions-form {
  display: grid;
  gap: 0.6rem;
}

.suggestions-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-text);
  padding: 0.85rem 1rem;
  min-height: 120px;
  resize: vertical;
}

.suggestions-form textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.suggestions-form__status {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  min-height: 1.2rem;
}

.suggestions-card__submitted {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.8rem;
}

.suggestions-card__submitted-label {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
}

.submitted-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.submitted-list li {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.submitted-list__placeholder {
  color: var(--color-text-muted);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 34px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
  bottom: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 7.5rem) 0 clamp(4rem, 10vw, 6rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 22% 24%, rgba(255, 24, 18, 0.3), transparent 60%),
    radial-gradient(48% 48% at 82% 18%, rgba(255, 60, 34, 0.2), transparent 70%),
    radial-gradient(40% 40% at 78% 12%, rgba(24, 52, 128, 0.32), transparent 78%),
    linear-gradient(165deg, rgba(2, 1, 6, 0.98), rgba(6, 2, 10, 0.97) 38%, rgba(12, 4, 10, 0.9));
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 0, 4, 0.78) 0%, rgba(2, 1, 6, 0.9) 55%, rgba(2, 1, 6, 0.96) 100%);
  z-index: 0;
}

.hero__smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.65) 25%, #fff 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.65) 25%, #fff 65%, transparent 100%);
}

.hero__smoke::before,
.hero__smoke::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-image: radial-gradient(circle at 52% 62%, rgba(255, 38, 20, 0.78) 0%, rgba(255, 38, 20, 0.42) 18%, transparent 55%),
    radial-gradient(circle at 28% 68%, rgba(255, 84, 42, 0.65) 0%, rgba(255, 84, 42, 0.35) 16%, transparent 52%),
    radial-gradient(circle at 72% 64%, rgba(255, 12, 30, 0.68) 0%, rgba(255, 12, 30, 0.4) 16%, transparent 52%),
    radial-gradient(circle at 44% 42%, rgba(255, 134, 104, 0.64) 0%, rgba(255, 134, 104, 0.38) 14%, transparent 48%),
    radial-gradient(circle at 58% 36%, rgba(40, 84, 160, 0.4) 0%, rgba(40, 84, 160, 0.2) 18%, transparent 52%);
  filter: blur(0.6px);
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: embersFloat 14s linear infinite;
}

.hero__smoke::after {
  animation-duration: 18s;
  animation-delay: -4s;
  opacity: 0.7;
  transform: scale(1.08);
}

.hero__reddit {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.25rem);
  top: 52%;
  z-index: 50;
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.hero__reddit img {
  width: 54px;
  height: 54px;
  display: block;
}

.hero__reddit:hover,
.hero__reddit:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.55);
  opacity: 0.95;
}

.hero__instagram {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.25rem);
  top: 63%;
  z-index: 50;
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.hero__instagram img {
  width: 54px;
  height: 54px;
  display: block;
}

.hero__instagram:hover,
.hero__instagram:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.55);
  opacity: 0.95;
}

.hero__youtube {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.25rem);
  top: 41%;
  z-index: 50;
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.hero__youtube img {
  width: 54px;
  height: 54px;
  display: block;
}

.hero__youtube:hover,
.hero__youtube:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.55);
  opacity: 0.95;
}

@keyframes embersFloat {
  0% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  25% {
    transform: translate3d(12px, -10px, 0) scale(1.05);
    opacity: 0.75;
  }
  50% {
    transform: translate3d(-8px, -18px, 0) scale(1.12);
    opacity: 0.65;
  }
  75% {
    transform: translate3d(10px, -26px, 0) scale(1.17);
    opacity: 0.58;
  }
  100% {
    transform: translate3d(-12px, -34px, 0) scale(1.22);
    opacity: 0.5;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero--center {
  padding-top: clamp(4rem, 12vw, 6rem);
  padding-bottom: clamp(3.5rem, 10vw, 5.5rem);
}

.hero__centered {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  min-height: 60vh;
  justify-content: flex-start;
}

.hero__headline {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(3.2rem, 8vw, 4.6rem);
  letter-spacing: 0.08em;
  margin: 0;
}

.hero__availability {
  margin: 0;
  color: rgba(234, 236, 245, 0.72);
  letter-spacing: 0.24em;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-hero {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 40px rgba(255, 78, 64, 0.4);
}

.hero__text h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  color: var(--color-text-muted);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 104, 70, 0.38);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(120deg, #ff552e 0%, #ff1e55 58%, #ff552e 100%);
  color: #0b0508;
  border: 1px solid rgba(255, 96, 64, 0.68);
  box-shadow: 0 18px 42px rgba(255, 62, 54, 0.46);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(255, 62, 54, 0.62);
}

.btn-secondary {
  background: rgba(255, 85, 46, 0.08);
  border-color: rgba(255, 120, 84, 0.46);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: rgba(255, 104, 70, 0.64);
  background: rgba(255, 85, 46, 0.12);
}

.btn-windows,
.btn-linux {
  position: relative;
  border-radius: 0;
  background: #1b1c20;
  border: 1px solid #32343c;
  color: #f5f5f5;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: none;
}

.btn-windows .btn__label,
.btn-linux .btn__label {
  position: relative;
  z-index: 1;
  transition: none;
}

.btn-windows .btn__icon,
.btn-linux .btn__icon {
  position: relative;
  z-index: 1;
}

.btn-windows:hover,
.btn-windows:focus-visible,
.btn-linux:hover,
.btn-linux:focus-visible {
  background: #24262c;
  border-color: #4a4d58;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.btn-windows {
  border-color: #32343c;
}

.btn-windows:active,
.btn-linux:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45);
  transition-duration: 0.1s;
}

.btn-windows .btn__icon svg,
.btn-linux .btn__icon svg {
  transition: none;
}

.btn-windows:hover .btn__icon svg,
.btn-windows:focus-visible .btn__icon svg,
.btn-linux:hover .btn__icon svg,
.btn-linux:focus-visible .btn__icon svg {
  transform: none;
  filter: none;
}

.btn-windows:hover .btn__label,
.btn-windows:focus-visible .btn__label,
.btn-linux:hover .btn__label,
.btn-linux:focus-visible .btn__label {
  letter-spacing: 0.06em;
  transform: none;
}

.btn-linux {
  background: #1b1c20;
  color: #f5f5f5;
}

.btn-linux:hover,
.btn-linux:focus-visible {
  background: #24262c;
}

.btn-linux:active {
  transform: translateY(0);
}

.btn-highlight {
  background: linear-gradient(120deg, #ff7a1e, #ff3b1f);
  color: #0b0508;
  border: none;
  box-shadow: 0 18px 36px rgba(255, 60, 40, 0.4);
}

.btn-highlight:hover {
  transform: translateY(-2px);
}

.btn-platform {
  padding: 0.95rem 2.2rem;
  min-width: 240px;
  justify-content: flex-start;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.btn__label {
  text-align: left;
  line-height: 1.3;
}

.hero__stats {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  padding: 1.2rem 1.4rem;
  background: rgba(11, 16, 34, 0.75);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(104, 230, 255, 0.16);
  box-shadow: 0 18px 36px rgba(4, 8, 22, 0.35);
}

.stat-value {
  display: block;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.hero__media {
  position: relative;
}

.holo-card {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: rgba(15, 22, 45, 0.72);
  border: 1px solid rgba(104, 230, 255, 0.22);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.holo-card::before {
  content: '';
  position: absolute;
  inset: -40% 30% auto;
  height: 70%;
  background: linear-gradient(120deg, rgba(104, 230, 255, 0.35), rgba(255, 79, 139, 0));
  opacity: 0.65;
  transform: rotate(25deg);
  pointer-events: none;
}

.holo-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.holo-tag {
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(104, 230, 255, 0.45);
  background: rgba(104, 230, 255, 0.12);
}

.holo-status {
  color: var(--color-secondary);
  font-weight: 600;
}

.holo-card__body h2 {
  margin: 0 0 0.85rem;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.holo-card__body p {
  margin: 0;
  color: var(--color-text-muted);
}

.holo-ping {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-highlight);
}

.ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-highlight);
  box-shadow: 0 0 12px rgba(255, 232, 102, 0.8);
}

.holo-metrics {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.holo-metrics li {
  background: rgba(104, 230, 255, 0.08);
  border: 1px solid rgba(104, 230, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--color-text-muted);
}

.holo-metrics strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.1rem;
  color: var(--color-text);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__chips span {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(104, 230, 255, 0.12);
  border: 1px solid rgba(104, 230, 255, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--color-primary);
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

#patchnotes.section {
  padding-top: clamp(2rem, 6vw, 3rem);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 80% 20%, rgba(255, 32, 68, 0.12), transparent 75%),
    radial-gradient(60% 60% at 20% 80%, rgba(28, 46, 110, 0.12), transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section--alt {
  background: rgba(4, 5, 14, 0.78);
}

.game-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.game-info__card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  background: rgba(11, 16, 34, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  padding: 1.5rem;
}

.game-info__card h3 {
  margin: 0 0 0.75rem;
}

.game-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.game-info__list li {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.25rem;
}

.game-info__list span {
  color: var(--color-text-muted);
}

.map-item p {
  margin: 0.25rem 0 0;
  color: var(--color-text-muted);
}

.map-item__body {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
}

.section__intro {
  max-width: 40rem;
  margin: 0 auto clamp(3rem, 7vw, 4rem);
  text-align: center;
}

.section__intro h2 {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
}

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

.news__container {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.news__header h2 {
  margin: 0.35rem 0 0.5rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.news__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  font-size: 0.78rem;
  margin: 0;
}

.news__header p {
  margin: 0.35rem 0 0;
  color: var(--color-text-muted);
}

.news__feed {
  background: rgba(7, 12, 26, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.18);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news__empty {
  border: 1px dashed rgba(104, 230, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  background: rgba(104, 230, 255, 0.04);
}

.news__empty-title {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.news__empty-body {
  margin: 0;
  color: var(--color-text-muted);
}

.news-entry {
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(36, 17, 20, 0.9), rgba(20, 8, 10, 0.9));
  border: 1px solid rgba(255, 122, 60, 0.32);
  box-shadow: 0 18px 38px rgba(255, 93, 58, 0.25);
  overflow: hidden;
}

.news-entry + .news-entry {
  margin-top: 0;
}

.news-entry__header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.5rem;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.news-entry__header:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.news-entry__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.news-entry__title {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
}

.news-entry__preview {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 58ch;
}

.news-entry__date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-entry__chevron {
  width: 0.75rem;
  height: 0.75rem;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.news-entry__header:hover .news-entry__chevron,
.news-entry__header:focus-visible .news-entry__chevron {
  transform: rotate(135deg);
}

.news-entry__body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
}

.news-entry__body p {
  margin: 1rem 0 0;
}

.news-entry__body p:first-child {
  margin-top: 1.2rem;
}

.news-entry__media {
  margin: 1.2rem 0;
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(104, 230, 255, 0.2);
}

.news-entry__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.news-modal.is-visible {
  display: flex;
}

.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.news-modal__dialog {
  position: relative;
  width: min(760px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(8, 12, 26, 0.95);
  border: 1px solid rgba(104, 230, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.news-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
}

.news-modal__close::before,
.news-modal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.news-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.news-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.news-modal__date {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  font-size: 0.8rem;
}

.news-modal__title {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
}

.news-modal__body p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.news-modal__body p:last-child {
  margin-bottom: 0;
}

.news-modal__body .news-entry__media {
  margin: 1.2rem 0;
}

.feature-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 2rem 1.75rem;
  background: rgba(11, 16, 34, 0.75);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(104, 230, 255, 0.15);
  box-shadow: 0 20px 38px rgba(3, 6, 18, 0.4);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: auto -30% -40% 55%;
  height: 120%;
  background: radial-gradient(65% 65% at 50% 50%, rgba(104, 230, 255, 0.22), transparent 75%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.gameplay {
  background: rgba(5, 8, 18, 0.6);
}

.gameplay::before {
  background: radial-gradient(70% 70% at 20% 20%, rgba(104, 230, 255, 0.1), transparent 70%),
    radial-gradient(60% 60% at 80% 80%, rgba(255, 79, 139, 0.08), transparent 80%);
}

.gameplay__container {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.gameplay__copy h2 {
  margin: 0 0 1.2rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.gameplay__copy p {
  margin: 0 0 1.8rem;
  color: var(--color-text-muted);
}

.gameplay__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(104, 230, 255, 0.35);
  background: rgba(104, 230, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--color-primary);
  margin-bottom: 1.4rem;
}

.gameplay__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  color: var(--color-text-muted);
  max-width: 28rem;
}

.gameplay__highlights li {
  padding-left: 1.1rem;
  position: relative;
}

.gameplay__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 12px rgba(255, 79, 139, 0.5);
}

.gameplay__highlights strong {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 0.82rem;
  margin-right: 0.4rem;
}

.gameplay__gallery {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(11, 16, 34, 0.7);
  border: 1px solid rgba(104, 230, 255, 0.26);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.5rem;
}

.gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(104, 230, 255, 0.2);
  background: rgba(5, 7, 15, 0.8);
}

.gallery__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0.08, 0.2, 1), opacity 0.3s ease;
}

.gallery__slide {
  position: relative;
  /* Ensure exactly one slide fits the viewport width */
  flex: 0 0 100%;
  width: 100%;
  margin: 0; /* reset default figure margins to avoid slide gaps */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.gallery__slide.is-active {
  opacity: 1;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(5, 7, 15, 0.78), rgba(5, 7, 15, 0));
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: rgba(225, 234, 255, 0.92);
}

.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gallery__control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(104, 230, 255, 0.35);
  background: rgba(5, 7, 15, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.gallery__control:hover {
  border-color: rgba(104, 230, 255, 0.8);
  background: rgba(104, 230, 255, 0.18);
  transform: translateY(-2px);
}

.gallery__control span {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: rotate(45deg);
  margin-left: 4px;
}

.gallery__control--prev span {
  transform: rotate(-135deg);
  margin-left: 0;
  margin-right: 4px;
}

.gallery__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(104, 230, 255, 0.4);
  background: rgba(104, 230, 255, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

.gallery__dot.is-active {
  transform: scale(1.2);
  background: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.9);
}

.gallery__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(104, 230, 255, 0.35);
}

.gallery__control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(104, 230, 255, 0.28);
}

.mode-showcase {
  display: grid;
  gap: clamp(2rem, 7vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.mode-showcase__copy h2 {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.mode-showcase__copy p {
  margin-bottom: 2rem;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.mode-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.4rem;
}

.mode-list li {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 34, 0.68);
  border: 1px solid rgba(104, 230, 255, 0.16);
  box-shadow: 0 16px 32px rgba(3, 6, 18, 0.35);
  display: grid;
  gap: 0.6rem;
}

.mode-list strong {
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.mode-list span {
  color: var(--color-text-muted);
}

.mode-showcase__board {
  position: relative;
}

.board-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.78);
  border: 1px solid rgba(104, 230, 255, 0.18);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 100%;
}

.board-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.board-label {
  color: var(--color-text-muted);
}

.board-status {
  color: var(--color-secondary);
  font-weight: 600;
}

.board-body {
  flex: 1 1 auto;
}

.board-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.board-rows li {
  display: grid;
  gap: 0.45rem;
}

.board-rows span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: rgba(221, 230, 255, 0.6);
}

.board-rows strong {
  font-size: 1rem;
  font-weight: 600;
}

.board-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.board-footer-value {
  color: var(--color-primary);
}

.timeline {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline__item {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 34, 0.72);
  border: 1px solid rgba(104, 230, 255, 0.15);
  box-shadow: 0 18px 34px rgba(3, 6, 18, 0.35);
}

.timeline__date {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--color-secondary);
  margin-bottom: 0.8rem;
}

.timeline__item h3 {
  margin: 0 0 0.6rem;
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.05em;
}

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

.download {
  display: grid;
  gap: clamp(2rem, 7vw, 4rem);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.download__copy h2 {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.download__copy p {
  color: var(--color-text-muted);
  max-width: 30rem;
}

.download__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
  justify-content: center;
}

.download__actions--stacked {
  display: grid;
  width: min(440px, 100%);
  gap: 0.85rem;
  justify-items: stretch;
}

.download__actions--stacked .btn {
  width: 100%;
  justify-content: center;
}

.download__hash {
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(221, 230, 255, 0.6);
  text-transform: uppercase;
}

.download__note {
  margin: 0;
  color: rgba(221, 230, 255, 0.72);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0f;
  border: 1px solid rgba(104, 230, 255, 0.24);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(104, 230, 255, 0.6);
  box-shadow: 0 12px 24px rgba(8, 16, 38, 0.45);
}

.store-badge img {
  display: block;
  height: 36px;
  width: auto;
}

.download__actions--stacked .store-badge {
  justify-self: center;
}

.hero__centered .store-badge {
  margin-top: 0.75rem;
}

.gamejolt-banner {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(104, 230, 255, 0.24);
  background: #0b0b0f;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gamejolt-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(104, 230, 255, 0.6);
  box-shadow: 0 16px 32px rgba(8, 16, 38, 0.55);
}

.gamejolt-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.download__panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.78);
  border: 1px solid rgba(104, 230, 255, 0.18);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.5rem;
}

.download__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--color-text-muted);
}

.download__panel li {
  display: flex;
  gap: 0.5rem;
}

.waitlist {
  background: rgba(5, 8, 18, 0.7);
}

.waitlist__container {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.waitlist__copy h2 {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.waitlist__copy p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.waitlist__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.74);
  border: 1px solid rgba(104, 230, 255, 0.2);
  box-shadow: 0 18px 36px rgba(3, 6, 18, 0.35);
}

.waitlist__form input {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(104, 230, 255, 0.25);
  background: rgba(5, 7, 15, 0.9);
  color: var(--color-text);
  font-size: 1rem;
}

.waitlist__form input:focus {
  outline: none;
  border-color: rgba(104, 230, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(104, 230, 255, 0.18);
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  min-height: 1.4rem;
}

[data-form-message][data-state='error'] {
  color: var(--color-secondary);
}

[data-form-message][data-state='success'] {
  color: var(--color-primary);
}

.waitlist__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-text-muted);
}

.support {
  background: rgba(5, 8, 18, 0.7);
}

.support__container {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.support__eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.support__copy h1 {
  margin: 0 0 1rem;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
}

.support__copy p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  max-width: 32rem;
}

.support__note {
  margin-top: 0;
  font-size: 0.95rem;
}

.support__form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.74);
  border: 1px solid rgba(104, 230, 255, 0.2);
  box-shadow: 0 18px 36px rgba(3, 6, 18, 0.35);
  text-align: left;
}

.support__field {
  display: grid;
  gap: 0.45rem;
}

.support__field label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.support__form input,
.support__form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(104, 230, 255, 0.25);
  background: rgba(5, 7, 15, 0.9);
  color: var(--color-text);
  font-size: 1rem;
}

.support__form textarea {
  min-height: 160px;
  resize: vertical;
}

.support__form input:focus,
.support__form textarea:focus {
  outline: none;
  border-color: rgba(104, 230, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(104, 230, 255, 0.18);
}

.support__form .btn {
  justify-self: start;
}

.store {
  background: rgba(5, 8, 18, 0.7);
}

.store__container {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  text-align: center;
}

.store__header {
  display: grid;
  gap: 0.4rem;
}

.store__eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-primary);
}

.store__title {
  margin: 0 0 1rem;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.store__intro {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--color-text-muted);
}

.store__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 1.9rem);
  border-radius: var(--radius-lg);
  background: rgba(11, 16, 34, 0.74);
  border: 1px solid rgba(104, 230, 255, 0.2);
  box-shadow: 0 18px 36px rgba(3, 6, 18, 0.35);
  align-items: center;
}

.store__search input {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(104, 230, 255, 0.25);
  background: rgba(5, 7, 15, 0.9);
  color: var(--color-text);
  font-size: 1rem;
}

.store__search input:focus {
  outline: none;
  border-color: rgba(104, 230, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(104, 230, 255, 0.18);
}

.store__empty {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(104, 230, 255, 0.28);
  background: rgba(8, 12, 24, 0.6);
  padding: clamp(1.6rem, 4vw, 2.2rem);
  display: grid;
  gap: 0.6rem;
}

.store__empty h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-weight: 600;
}

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

.social-links {
  display: inline-flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.social-links a {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(104, 230, 255, 0.25);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(221, 230, 255, 0.78);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.stealth-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stealth-link {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: auto;
  background: transparent;
}

.download__social {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-btn::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
}

.social-links a:hover {
  border-color: rgba(104, 230, 255, 0.65);
  background: rgba(104, 230, 255, 0.1);
  color: var(--color-text);
}

.site-footer {
  border-top: 1px solid rgba(104, 230, 255, 0.14);
  background: rgba(5, 7, 15, 0.9);
  padding: 2.5rem 0;
  position: relative;
  z-index: 2;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  color: var(--color-text-muted);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
}

.footer__contact {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer__separator {
  opacity: 0.6;
}

.footer__contact a {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer__contact a:hover {
  color: #ffffff;
}

.footer__social {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-animate] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .holo-card {
    animation: none;
  }
}

.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;
}

@media (max-width: 1080px) {
  .hero__smoke img {
    width: min(620px, 95vw);
    left: clamp(-220px, -24vw, -70px);
    bottom: clamp(-140px, -16vw, -40px);
    opacity: 0.72;
  }

  .hero__reddit {
    right: clamp(0.6rem, 6vw, 1.1rem);
    top: 54%;
    transform: translateY(-2px);
  }

  .hero__instagram {
    right: clamp(0.6rem, 6vw, 1.1rem);
    top: 66%;
    transform: translateY(-2px);
  }

  .hero__youtube {
    right: clamp(0.6rem, 6vw, 1.1rem);
    top: 43%;
    transform: translateY(-2px);
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__text {
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stats {
    justify-items: center;
  }

  .hero__media {
    max-width: 460px;
    margin: 0 auto;
  }

  .download {
    grid-template-columns: minmax(0, 1fr);
  }

  .gameplay__container {
    grid-template-columns: minmax(0, 1fr);
  }

  .gameplay__copy {
    text-align: center;
  }

  .gameplay__highlights {
    text-align: left;
    justify-items: center;
  }

  .waitlist__container {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .waitlist__social {
    justify-content: center;
  }

  .support__container {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }
}

@media (max-width: 900px) {
  .language-switcher {
    margin-left: auto;
  }

  .language-switcher__menu {
    right: -0.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem clamp(1.5rem, 8vw, 3rem);
    background: rgba(5, 7, 15, 0.98);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(104, 230, 255, 0.16);
    margin-left: 0;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.05rem;
  }

  .nav-download {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: clamp(4rem, 12vw, 6rem);
  }

  .hero__smoke img {
    opacity: 0.5;
    width: min(520px, 110vw);
    left: clamp(-160px, -28vw, -10px);
    bottom: clamp(-120px, -20vw, -30px);
  }

  .hero__reddit {
    top: auto;
    bottom: clamp(1.1rem, 8vw, 2.6rem);
    right: clamp(0.75rem, 5vw, 1.4rem);
    transform: none;
  }

  .hero__instagram {
    top: auto;
    bottom: clamp(0.35rem, 6vw, 1.6rem);
    right: clamp(0.75rem, 5vw, 1.4rem);
    transform: none;
  }

  .hero__youtube {
    top: auto;
    bottom: clamp(4.3rem, 12vw, 6.8rem);
    right: clamp(0.75rem, 5vw, 1.4rem);
    transform: none;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gameplay__gallery {
    padding: 1.5rem;
  }

  .mode-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .waitlist__form {
    grid-template-columns: minmax(0, 1fr);
  }

  .waitlist__form button {
    width: 100%;
  }

  .store__search {
    grid-template-columns: minmax(0, 1fr);
  }

  .store__search button {
    width: 100%;
  }

  .support__form .btn {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .nav-container {
    padding-right: clamp(1.5rem, 6vw, 2.5rem);
  }

  .holo-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__chips {
    justify-content: center;
  }

  .download__actions {
    justify-content: center;
  }

  .download__hash {
    text-align: center;
  }

  .gameplay__highlights li {
    padding-left: 0;
  }

  .gameplay__highlights li::before {
    display: none;
  }
}
