@font-face {
  font-family: "OrangeSovereign Ink";
  src: url("../fonts/OrangeSovereignInk-Bold-v4.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #080a0f;
  --ink-soft: #0f121a;
  --panel: #131722;
  --paper: #f4f2ed;
  --muted: #9ca2b5;
  --steel: #4b5269;
  --orange: #ff5a1f;
  --orange-hot: #ff6a2b;
  --line: rgba(255, 255, 255, 0.12);
  --font-ink: "OrangeSovereign Ink", "Segoe Print", cursive;
  --max: 1440px;
  --heading-scale: 1;
  --body-scale: 1;
  --corner-radius: 0px;
  --noise-opacity: 0.06;
  --font-geist-sans: Inter, "Segoe UI", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
  font-size: calc(16px * var(--body-scale));
}

.admin-bar .site-header {
  margin-top: 32px;
}

.brand-logo,
.brand-logo .custom-logo-link {
  display: block;
  line-height: 0;
}

.brand-logo img {
  width: 54px;
  height: 56px;
  object-fit: contain;
}

.primary-nav-links,
.primary-nav-links.menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.primary-nav-links li {
  margin: 0;
}

.primary-nav-links a {
  color: #b8bdc9;
  transition: color 180ms ease, transform 180ms ease;
}

.primary-nav-links a:hover,
.primary-nav-links a:focus-visible,
.primary-nav-links .current-menu-item > a,
.primary-nav-links .current_page_item > a {
  color: #fff;
}

.primary-nav-links .current-menu-item > a::after,
.primary-nav-links .current_page_item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--orange);
  transform: rotate(-1deg);
}

.os-block-content > *:first-child {
  margin-top: 0;
}

.os-block-content h2,
.os-block-content h3,
.os-standard-card h2 {
  color: var(--paper);
  font-family: var(--font-ink);
  text-transform: uppercase;
}

.os-block-content blockquote {
  margin: 38px 0;
  padding: 9px 0 9px 25px;
  color: var(--paper);
  border-left: 4px solid var(--orange);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.6;
}

.os-standard-card {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.os-standard-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 58px);
}

.os-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.os-form-notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.os-form-notice.success {
  border-color: var(--orange);
}

.os-form-notice.error {
  border-color: #d34d4d;
}

.navigation.pagination {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto 100px;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a,
.nav-links .current {
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.nav-links .current {
  color: var(--ink);
  background: var(--orange);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

.custom-page-body {
  padding-block: 80px 120px;
  max-width: 900px;
}

.custom-page-body p {
  color: #c5cad5;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.75;
  white-space: pre-wrap;
}

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

.site-shell {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 74% 12%, rgba(76, 84, 108, 0.18), transparent 30%),
    var(--ink);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: var(--noise-opacity);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

h1, h2, h3, .brand-copy strong, .stage-monogram, .game-preview strong {
  font-size: calc(1em * var(--heading-scale));
}

.button, .stage-card, .game-preview, .vod-card, .timeline-post details,
.schedule-board, .contact-main, .contact-sidebar {
  border-radius: var(--corner-radius);
}

.site-header {
  width: min(calc(100% - 64px), var(--max));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 40;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 54px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: var(--font-ink);
  font-size: 30px;
  letter-spacing: -4px;
  transform: skew(-8deg) rotate(-2deg);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 4px;
  height: 58px;
  top: -1px;
  background: var(--orange);
  opacity: 0.5;
  transform: rotate(8deg);
}

.brand-mark::before {
  left: 6px;
}

.brand-mark::after {
  right: 3px;
}

.brand-copy {
  display: grid;
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  font-family: var(--font-ink);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.brand-copy span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.32em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav > a,
.gaming-menu > button {
  color: #b8bdc9;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.gaming-menu > button:hover,
.gaming-menu > button:focus-visible,
.primary-nav .active {
  color: #fff;
}

.primary-nav > a:not(.contact-link).active::after,
.gaming-menu > button.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--orange);
  transform: rotate(-1deg);
}

.gaming-menu {
  position: relative;
}

.gaming-menu > button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 14px 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gaming-menu > button span {
  color: var(--orange);
  font-size: 16px;
  margin-left: 2px;
}

.gaming-dropdown {
  position: absolute;
  width: 248px;
  top: calc(100% + 22px);
  left: 50%;
  padding: 20px;
  transform: translate(-50%, 10px);
  background: #10131b;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.gaming-menu:hover .gaming-dropdown,
.gaming-menu:focus-within .gaming-dropdown,
.gaming-menu.is-open .gaming-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.gaming-dropdown::before {
  content: "";
  position: absolute;
  inset: 8px -7px -7px 8px;
  border: 1px solid rgba(255, 90, 31, 0.22);
  z-index: -1;
}

.gaming-dropdown p {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.gaming-dropdown a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--font-ink);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.gaming-dropdown a span {
  color: var(--steel);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.gaming-dropdown a:hover {
  color: var(--orange);
}

.contact-link {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  border: 1px solid var(--orange);
  border-radius: 999px;
}

.contact-link:hover {
  background: var(--orange);
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--paper);
}

.menu-toggle span:nth-child(2) {
  width: 70%;
  background: var(--orange);
}

.page-wrap {
  min-height: calc(100vh - 200px);
}

.hero {
  width: min(calc(100% - 64px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 48px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 6% -10% 0 56%;
  z-index: -2;
  background:
    linear-gradient(125deg, transparent 8%, rgba(255, 90, 31, 0.07) 8% 10%, transparent 10%),
    repeating-linear-gradient(
      166deg,
      transparent 0 24px,
      rgba(79, 88, 114, 0.08) 25px 27px
    );
  transform: skewX(-8deg);
}

.hero::after {
  content: "SOVEREIGN";
  position: absolute;
  z-index: -3;
  right: -6%;
  bottom: 4%;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--font-ink);
  font-size: clamp(110px, 15vw, 240px);
  letter-spacing: -0.06em;
}

.hero-rules {
  position: absolute;
  left: -16px;
  top: 16%;
  display: flex;
  gap: 6px;
}

.hero-rules span {
  width: 3px;
  height: 28px;
  background: var(--orange);
  transform: rotate(-8deg);
}

.hero-rules span:nth-child(2) {
  height: 44px;
  opacity: 0.55;
}

.hero-rules span:nth-child(3) {
  height: 19px;
  opacity: 0.25;
}

.hero-copy {
  padding: 60px 0 92px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #bcc1cc;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.11);
  animation: pulse 1.7s infinite;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-ink);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-small {
  margin-bottom: 16px;
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.36em;
  line-height: 1;
}

.hero-orange,
.hero-white {
  font-size: clamp(88px, 11vw, 165px);
  text-shadow: 10px 10px 0 rgba(0, 0, 0, 0.28);
}

.hero-orange {
  width: max-content;
  position: relative;
  color: var(--orange);
  transform: skew(-3deg) rotate(-1.2deg);
}

.hero-orange::after {
  content: "";
  position: absolute;
  left: 3%;
  right: -4%;
  bottom: 3%;
  z-index: -1;
  height: 18%;
  background: var(--orange);
  opacity: 0.22;
  transform: rotate(2deg) skew(-20deg);
}

.hero-white {
  color: var(--paper);
  margin-left: clamp(30px, 5vw, 82px);
}

.hero-intro {
  max-width: 580px;
  margin: 34px 0 0;
  color: #abb1c0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 7px 7px 0 rgba(255, 90, 31, 0.17);
}

.button-primary:hover {
  background: var(--orange-hot);
}

.button-ghost:hover {
  border-color: var(--orange);
}

.hero-stage {
  min-height: 480px;
  display: grid;
  place-items: center;
  position: relative;
  transform: rotate(1deg);
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  z-index: -1;
  background: var(--orange);
  opacity: 0.08;
  clip-path: polygon(14% 0, 100% 10%, 90% 93%, 0 100%);
  filter: blur(1px);
}

.stage-card {
  width: min(100%, 490px);
  min-height: 350px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 44%),
    #0f1219;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 18px 20px 0 rgba(0, 0, 0, 0.36);
}

.stage-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -70px 10%;
  height: 150px;
  background: var(--orange);
  opacity: 0.9;
  transform: rotate(-6deg) skew(-22deg);
  clip-path: polygon(0 42%, 76% 12%, 100% 27%, 92% 64%, 12% 100%);
}

.stage-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.stage-topline {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.24em;
}

.stage-topline strong {
  color: var(--orange);
}

.stage-monogram {
  color: var(--orange);
  font-family: var(--font-ink);
  font-size: clamp(100px, 13vw, 182px);
  line-height: 0.82;
  letter-spacing: -0.09em;
  transform: skew(-7deg);
  text-shadow:
    3px 0 var(--ink),
    7px 0 rgba(255, 90, 31, 0.25);
}

.stage-card > p {
  margin: 18px 0 0;
  color: var(--paper);
  font-family: var(--font-ink);
  font-size: 16px;
  letter-spacing: 0.16em;
}

.stage-card > p:nth-of-type(2) {
  margin-top: 7px;
}

.stage-slash {
  display: none;
}

.stage-meter {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 4px;
}

.stage-meter span {
  width: 30px;
  height: 4px;
  background: var(--ink);
}

.stage-meter span:nth-child(-n + 3) {
  background: var(--paper);
}

.stage-crosses {
  position: absolute;
  inset: 3% 0 auto;
  display: flex;
  justify-content: space-between;
  color: var(--orange);
  font-family: var(--font-ink);
  font-size: 25px;
  letter-spacing: -5px;
}

.stage-crosses span:last-child {
  align-self: flex-end;
  transform: translateY(400px);
}

.scribble {
  position: absolute;
  right: -16px;
  bottom: 22px;
  z-index: 4;
  margin: 0;
  color: var(--paper);
  font-family: cursive;
  font-size: 20px;
  font-style: italic;
  transform: rotate(-6deg);
}

.scribble::after {
  content: "↗";
  margin-left: 9px;
  color: var(--orange);
  font-size: 32px;
}

.hero-scroll {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--steel);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-scroll i {
  display: block;
  width: 60px;
  height: 1px;
  position: relative;
  background: var(--steel);
}

.hero-scroll i::after {
  content: "";
  width: 18px;
  height: 1px;
  position: absolute;
  right: -1px;
  background: var(--orange);
}

.ticker {
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(-0.6deg) scale(1.01);
}

.ticker > div {
  min-width: 1100px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: var(--font-ink);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.ticker i {
  font-style: normal;
}

.section-shell {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.home-intro {
  padding: 150px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.section-label span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.section-label p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 70px;
  height: 1px;
  background: var(--steel);
}

.intro-heading {
  max-width: 840px;
  margin-bottom: 54px;
}

.intro-heading .eyebrow {
  color: var(--orange);
  margin-bottom: 14px;
}

.intro-heading h2,
.home-cta h2 {
  margin: 0;
  font-family: var(--font-ink);
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.game-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.game-preview {
  min-height: 330px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  isolation: isolate;
  transition:
    flex 240ms ease,
    background 240ms ease;
}

.game-preview:last-child {
  border-right: 0;
}

.game-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  filter: saturate(0.65);
  transition:
    opacity 240ms ease,
    transform 500ms ease;
}

.game-preview.redm::before {
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 90, 31, 0.7)),
    repeating-linear-gradient(40deg, #222836 0 3px, #10131b 3px 13px);
}

.game-preview.fivem::before {
  background:
    radial-gradient(circle at 74% 20%, var(--orange), transparent 7%),
    linear-gradient(120deg, #121722, #3d465e);
}

.game-preview.sims::before {
  background:
    linear-gradient(130deg, transparent 0 50%, rgba(255, 90, 31, 0.75) 51% 55%, transparent 56%),
    linear-gradient(55deg, #2b3141, #0e1118);
}

.game-preview.other::before {
  background:
    repeating-radial-gradient(circle at 90% 10%, #3a4258 0 5px, #12151d 7px 17px);
}

.game-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 20%, rgba(8, 10, 15, 0.96));
}

.game-preview:hover::before {
  opacity: 0.75;
  transform: scale(1.06);
}

.game-index {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.game-preview strong {
  font-family: var(--font-ink);
  font-size: clamp(32px, 3vw, 52px);
  letter-spacing: 0.02em;
}

.game-preview p {
  min-height: 62px;
  margin: 9px 38px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.game-preview i {
  position: absolute;
  right: 23px;
  bottom: 26px;
  color: var(--orange);
  font-size: 24px;
  font-style: normal;
  transition: transform 180ms ease;
}

.game-preview:hover i {
  transform: translate(4px, -4px);
}

.home-cta {
  margin-bottom: 120px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.home-cta::before {
  content: "06:00";
  position: absolute;
  right: -20px;
  bottom: -50px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-ink);
  font-size: clamp(130px, 18vw, 280px);
}

.home-cta .eyebrow {
  color: var(--orange);
}

.home-cta > p:not(.eyebrow) {
  position: relative;
  margin: 18px 0 32px;
  color: var(--muted);
}

.site-footer {
  width: min(calc(100% - 64px), var(--max));
  min-height: 160px;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark.small {
  width: 38px;
  height: 42px;
  font-size: 22px;
}

.brand-mark.small::before,
.brand-mark.small::after {
  height: 42px;
}

.footer-brand div {
  display: grid;
  gap: 2px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-brand span {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-footer > p {
  margin: 0;
  color: var(--steel);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  text-align: right;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.75);
    opacity: 0.52;
  }
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .section-shell,
  .site-footer {
    width: min(calc(100% - 40px), var(--max));
  }

  .primary-nav {
    gap: 16px;
    font-size: 10px;
  }

  .hero {
    grid-template-columns: 1fr 0.78fr;
  }

  .game-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-preview:nth-child(2) {
    border-right: 0;
  }

  .game-preview:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    padding: 26px;
    display: none;
    align-items: stretch;
    background: #0d1017;
    border: 1px solid var(--line);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  }

  .primary-nav-links,
  .primary-nav-links.menu {
    display: grid;
    gap: 0;
  }

  .primary-nav-links a {
    display: block;
    padding: 13px 0;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a,
  .gaming-menu > button {
    padding: 13px 0;
  }

  .primary-nav > a:not(.contact-link).active::after,
  .gaming-menu > button.active::after {
    width: 28px;
  }

  .gaming-menu > button {
    width: 100%;
    text-align: left;
  }

  .gaming-dropdown {
    width: 100%;
    position: static;
    display: none;
    margin: 6px 0 10px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .gaming-menu:hover .gaming-dropdown,
  .gaming-menu:focus-within .gaming-dropdown {
    display: none;
  }

  .gaming-menu.is-open .gaming-dropdown,
  .gaming-menu.is-open:hover .gaming-dropdown,
  .gaming-menu.is-open:focus-within .gaming-dropdown {
    display: block;
    transform: none;
  }

  .contact-link {
    width: max-content;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 100px 0 40px;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-scroll {
    display: none;
  }

  .home-intro {
    padding: 100px 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 580px) {
  .site-header,
  .hero,
  .section-shell,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy {
    display: none;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-small {
    font-size: 14px;
    letter-spacing: 0.23em;
  }

  .hero-orange,
  .hero-white {
    font-size: clamp(74px, 25vw, 112px);
  }

  .hero-white {
    margin-left: 16px;
  }

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

  .stage-card {
    min-height: 300px;
    padding: 22px;
  }

  .stage-crosses {
    display: none;
  }

  .scribble {
    right: 4px;
  }

  .ticker > div {
    min-width: 900px;
  }

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

  .game-preview {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .game-preview:last-child {
    border-bottom: 0;
  }

  .home-cta {
    padding: 48px 24px;
  }

  .home-cta h2 {
    font-size: 52px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .site-footer > p {
    grid-column: auto;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    margin-top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Interior pages */

.inner-hero {
  min-height: 520px;
  padding: 86px 0 92px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 190px;
  align-items: end;
  gap: 44px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.inner-hero::before {
  content: "";
  position: absolute;
  width: 38%;
  height: 68%;
  right: 7%;
  top: 14%;
  z-index: -1;
  background:
    repeating-linear-gradient(
      165deg,
      transparent 0 27px,
      rgba(78, 86, 110, 0.09) 28px 30px
    );
  transform: skew(-12deg);
}

.inner-index {
  align-self: start;
  margin-top: 20px;
  color: var(--steel);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.inner-hero-copy {
  max-width: 960px;
}

.inner-hero-copy .eyebrow {
  color: var(--orange);
}

.inner-hero-copy h1 {
  margin: 0;
  font-family: var(--font-ink);
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.inner-hero-copy h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
  transform: skew(-3deg);
  transform-origin: left;
}

.inner-hero-copy > p:last-child {
  max-width: 760px;
  margin: 32px 0 0;
  color: #afb5c2;
  font-size: 18px;
  line-height: 1.72;
}

.inner-stamp {
  width: 150px;
  height: 150px;
  align-self: center;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 90, 31, 0.44);
  border-radius: 50%;
  color: var(--orange);
  transform: rotate(8deg);
}

.inner-stamp::before {
  content: "× × ×";
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.inner-stamp span,
.inner-stamp i {
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.2em;
}

.inner-stamp strong {
  font-family: var(--font-ink);
  font-size: 18px;
  letter-spacing: 0.09em;
}

.about-story {
  padding: 140px 0;
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.about-monogram {
  aspect-ratio: 0.85;
  min-height: 540px;
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      145deg,
      transparent 0 16px,
      rgba(255, 255, 255, 0.035) 17px 18px
    ),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 18px 18px 0 rgba(255, 90, 31, 0.09);
}

.about-monogram::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-monogram::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 30%;
  left: -20%;
  bottom: -6%;
  background: var(--orange);
  transform: rotate(-7deg);
}

.about-monogram span {
  color: var(--orange);
  font-family: var(--font-ink);
  font-size: clamp(140px, 18vw, 250px);
  letter-spacing: -0.1em;
  line-height: 0.7;
  transform: skew(-7deg);
}

.about-monogram p {
  position: absolute;
  left: 27px;
  top: 25px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.prose-block .eyebrow {
  color: var(--orange);
  margin-bottom: 18px;
}

.prose-block h2,
.game-manifesto h2,
.contact-sidebar h2 {
  margin: 0 0 30px;
  font-family: var(--font-ink);
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1;
  text-transform: uppercase;
}

.prose-block > p:not(.eyebrow),
.game-manifesto > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.prose-block blockquote,
.game-manifesto blockquote {
  margin: 38px 0 0;
  padding: 9px 0 9px 25px;
  color: var(--paper);
  border-left: 4px solid var(--orange);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.6;
}

.principles {
  padding: 30px 0 140px;
}

.principle-grid,
.game-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article,
.game-details article {
  min-height: 300px;
  padding: 40px 38px;
  border-right: 1px solid var(--line);
}

.principle-grid article:last-child,
.game-details article:last-child {
  border-right: 0;
}

.principle-grid article > span,
.game-details article > span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.principle-grid h3,
.game-details h3 {
  margin: 70px 0 16px;
  font-family: var(--font-ink);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.principle-grid p,
.game-details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.split-cta {
  margin-bottom: 130px;
  padding: 62px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.split-cta::after {
  content: "↗";
  position: absolute;
  right: 34%;
  color: rgba(255, 90, 31, 0.08);
  font-size: 170px;
  font-weight: 900;
}

.split-cta .eyebrow {
  color: var(--orange);
  margin-bottom: 14px;
}

.split-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-ink);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.98;
  text-transform: uppercase;
}

/* Schedule */

.schedule-board {
  padding: 120px 0 70px;
}

.schedule-topline {
  padding: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 3px solid var(--orange);
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.schedule-topline p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--paper);
}

.schedule-grid article {
  min-height: 170px;
  padding: 28px;
  display: grid;
  grid-template-columns: 160px 210px 1fr 30px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    padding 180ms ease;
}

.schedule-grid article:hover {
  padding-left: 38px;
  background: rgba(255, 255, 255, 0.025);
}

.day-block,
.time-block {
  display: grid;
}

.day-block > span {
  color: var(--orange);
  font-family: var(--font-ink);
  font-size: 56px;
  line-height: 0.9;
}

.day-block small {
  margin-top: 8px;
  color: var(--steel);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.time-block {
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: start;
  gap: 8px;
}

.time-block strong {
  font-family: var(--font-ink);
  font-size: 33px;
  letter-spacing: 0.03em;
}

.time-block span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.stream-details p {
  margin: 0 0 8px;
  font-family: var(--font-ink);
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stream-details span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.schedule-grid article > i {
  color: var(--orange);
  font-size: 9px;
  font-style: normal;
  animation: pulse 1.7s infinite;
}

.schedule-note {
  margin-bottom: 130px;
  padding: 42px 50px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 45px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.schedule-note > div {
  display: grid;
  gap: 8px;
}

.schedule-note > div span {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.schedule-note > div strong {
  font-family: var(--font-ink);
  font-size: 26px;
}

.schedule-note > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Blog timeline */

.timeline {
  max-width: 1200px;
  padding: 140px 0 180px;
  position: relative;
}

.timeline-line {
  width: 1px;
  position: absolute;
  left: 50%;
  top: 110px;
  bottom: 130px;
  background: linear-gradient(var(--orange), var(--steel), transparent);
}

.timeline-post {
  width: 50%;
  min-height: 380px;
  position: relative;
}

.timeline-left {
  padding: 0 85px 0 20px;
  text-align: right;
}

.timeline-right {
  margin-left: 50%;
  padding: 0 20px 0 85px;
}

.timeline-dot {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 1px solid var(--orange);
  transform: rotate(45deg);
}

.timeline-left .timeline-dot {
  right: -13px;
}

.timeline-right .timeline-dot {
  left: -12px;
}

.timeline-dot span {
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.timeline-date {
  position: absolute;
  top: 27px;
  display: grid;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.timeline-left .timeline-date {
  right: -84px;
  text-align: left;
  transform: translateX(100%);
}

.timeline-right .timeline-date {
  left: -83px;
  text-align: right;
  transform: translateX(-100%);
}

.timeline-date strong {
  color: var(--paper);
  font-size: 11px;
}

.timeline-post details {
  border-top: 1px solid var(--line);
}

.timeline-post summary {
  padding: 30px 0;
  list-style: none;
  cursor: pointer;
}

.timeline-post summary::-webkit-details-marker {
  display: none;
}

.post-category {
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.timeline-post h2 {
  margin: 13px 0 15px;
  font-family: var(--font-ink);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.timeline-post summary p,
.post-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.read-more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.read-more i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  font-size: 15px;
  font-style: normal;
  transition: transform 180ms ease;
}

.timeline-post details[open] .read-more i {
  transform: rotate(45deg);
}

.post-body {
  padding: 0 0 32px;
}

.timeline-post details[open] {
  border-color: var(--orange);
}

.timeline-end {
  position: absolute;
  left: 50%;
  bottom: 95px;
  transform: translateX(-50%);
}

.timeline-end span {
  display: inline-block;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

/* Video archive */

.featured-vod {
  padding: 130px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 65px;
  align-items: center;
}

.featured-screen {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(125deg, transparent 0 54%, rgba(255, 90, 31, 0.82) 55% 71%, transparent 72%),
    repeating-linear-gradient(160deg, #202533 0 3px, #0d1017 4px 24px);
  border: 1px solid var(--line);
  box-shadow: 16px 16px 0 rgba(255, 90, 31, 0.1);
}

.featured-screen::after {
  content: "OS";
  position: absolute;
  right: 5%;
  bottom: -18%;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--font-ink);
  font-size: 260px;
  letter-spacing: -0.1em;
}

.screen-code {
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.screen-title {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: var(--paper);
  font-family: var(--font-ink);
  font-size: 20px;
  letter-spacing: 0.15em;
}

.play-mark,
.vod-thumb i {
  width: 76px;
  height: 76px;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 23px;
  font-style: normal;
  box-shadow: 0 0 0 12px rgba(255, 90, 31, 0.11);
  transition: transform 200ms ease;
}

.featured-screen:hover .play-mark,
.vod-card:hover .vod-thumb i {
  transform: scale(1.08);
}

.featured-copy .eyebrow {
  color: var(--orange);
}

.featured-copy h2,
.library-heading h2 {
  margin: 0;
  font-family: var(--font-ink);
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
}

.featured-copy > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.vod-library {
  padding: 70px 0 140px;
}

.library-heading {
  margin-bottom: 44px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.library-heading .eyebrow {
  color: var(--orange);
  margin-bottom: 10px;
}

.library-heading > span {
  color: var(--steel);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.vod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 22px;
}

.vod-thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.vod-thumb.ember {
  background:
    linear-gradient(145deg, transparent 0 45%, rgba(255, 90, 31, 0.8) 46% 49%, transparent 50%),
    repeating-linear-gradient(40deg, #222836 0 4px, #0e1118 5px 17px);
}

.vod-thumb.steel {
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 90, 31, 0.75) 0 3%, transparent 4%),
    linear-gradient(125deg, #3c4459, #0d1017 68%);
}

.vod-thumb.neon {
  background:
    linear-gradient(60deg, transparent 38%, rgba(255, 90, 31, 0.82) 39% 45%, transparent 46%),
    linear-gradient(130deg, #171b25, #3e465c);
}

.vod-thumb.void {
  background:
    repeating-radial-gradient(circle at 90% 10%, #343b4e 0 4px, #0c0f15 6px 20px);
}

.vod-thumb > span {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--paper);
  font-family: var(--font-ink);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.vod-thumb > small {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
}

.vod-thumb i {
  width: 48px;
  height: 48px;
  font-size: 15px;
  box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.1);
}

.vod-meta > span {
  margin-top: 14px;
  display: block;
  color: var(--orange);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.vod-meta h3 {
  margin: 9px 0 0;
  font-size: 17px;
  line-height: 1.4;
}

.vod-card:hover .vod-meta h3 {
  color: var(--orange);
}

.library-note {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.library-note a {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

/* Gaming pages */

.game-feature {
  padding: 130px 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.game-poster {
  min-height: 580px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  background:
    repeating-linear-gradient(
      150deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.035) 23px 25px
    ),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 20px 20px 0 rgba(255, 90, 31, 0.09);
}

.game-poster::before {
  content: "";
  width: 120%;
  height: 32%;
  position: absolute;
  left: -10%;
  bottom: -8%;
  background: var(--orange);
  transform: rotate(-8deg);
}

.game-poster::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-label {
  position: absolute;
  left: 28px;
  top: 28px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.game-poster strong {
  max-width: 100%;
  color: var(--orange);
  font-family: var(--font-ink);
  font-size: clamp(74px, 10vw, 142px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  transform: skew(-5deg);
}

.game-poster > i {
  margin-top: 24px;
  color: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-align: center;
}

.poster-bars {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 5px;
}

.poster-bars span {
  width: 37px;
  height: 5px;
  background: var(--ink);
}

.poster-bars span:nth-child(-n + 2) {
  background: var(--paper);
}

.game-manifesto .eyebrow {
  color: var(--orange);
}

.game-details {
  margin-bottom: 130px;
}

.game-redm .game-poster {
  background:
    linear-gradient(138deg, transparent 48%, rgba(255, 90, 31, 0.2) 49%),
    repeating-linear-gradient(44deg, #232938 0 4px, #0d1017 5px 18px);
}

.game-fivem .game-poster {
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 90, 31, 0.8), transparent 6%),
    linear-gradient(125deg, #343b50, #0c0f16 70%);
}

.game-sims .game-poster {
  background:
    linear-gradient(50deg, transparent 0 42%, rgba(255, 90, 31, 0.35) 43% 48%, transparent 49%),
    linear-gradient(125deg, #121620, #444c62);
}

.game-other .game-poster {
  background:
    repeating-radial-gradient(circle at 72% 33%, #353d51 0 5px, #0c0f16 7px 21px);
}

/* Contact */

.contact-layout {
  padding: 130px 0 150px;
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 140px);
}

.contact-sidebar .eyebrow {
  color: var(--orange);
}

.contact-sidebar > a,
.contact-community {
  min-height: 115px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  position: relative;
  border-top: 1px solid var(--line);
}

.contact-sidebar > a:hover strong {
  color: var(--orange);
}

.contact-sidebar > a > span,
.contact-community > span {
  grid-column: 1;
  color: var(--steel);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.contact-sidebar > a strong,
.contact-community strong {
  grid-column: 1;
  margin-top: 8px;
  font-family: var(--font-ink);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-sidebar > a i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--orange);
  font-size: 28px;
  font-style: normal;
}

.contact-community {
  border-bottom: 1px solid var(--line);
}

.contact-community p {
  grid-column: 1 / -1;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.contact-main {
  padding: 46px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 15px 15px 0 rgba(255, 90, 31, 0.08);
}

.contact-heading {
  margin-bottom: 36px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 3px solid var(--orange);
}

.contact-heading > span {
  color: var(--paper);
  font-family: var(--font-ink);
  font-size: 20px;
  letter-spacing: 0.1em;
}

.contact-heading p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px;
  color: var(--paper);
  background: #0e1118;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.09);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #62697c;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .inner-hero {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .inner-stamp {
    display: none;
  }

  .about-story,
  .game-feature,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-monogram,
  .game-poster {
    width: min(100%, 620px);
    min-height: 490px;
  }

  .schedule-grid article {
    grid-template-columns: 120px 170px 1fr 20px;
    gap: 20px;
  }

  .schedule-note {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-note .button {
    width: max-content;
  }

  .featured-vod {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    max-width: 680px;
  }

  .vod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .inner-hero {
    min-height: 470px;
    padding: 74px 0;
    grid-template-columns: 1fr;
  }

  .inner-index {
    display: none;
  }

  .inner-hero-copy h1 {
    font-size: clamp(64px, 20vw, 100px);
  }

  .inner-hero-copy > p:last-child {
    font-size: 16px;
  }

  .about-story,
  .game-feature,
  .contact-layout {
    padding: 90px 0;
  }

  .about-monogram,
  .game-poster {
    min-height: 430px;
  }

  .principle-grid,
  .game-details {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .game-details article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-grid article:last-child,
  .game-details article:last-child {
    border-bottom: 0;
  }

  .principle-grid h3,
  .game-details h3 {
    margin-top: 42px;
  }

  .split-cta {
    padding: 44px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-grid article {
    padding: 28px 8px;
    grid-template-columns: 1fr auto;
  }

  .day-block {
    grid-column: 1;
  }

  .time-block {
    grid-column: 2;
  }

  .stream-details {
    grid-column: 1 / -1;
  }

  .schedule-grid article > i {
    display: none;
  }

  .schedule-note {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline {
    padding-top: 100px;
  }

  .timeline-line {
    left: 19px;
  }

  .timeline-post,
  .timeline-right {
    width: 100%;
    margin-left: 0;
    padding: 0 0 70px 67px;
    text-align: left;
  }

  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: 7px;
    right: auto;
  }

  .timeline-left .timeline-date,
  .timeline-right .timeline-date {
    left: 0;
    right: auto;
    top: -31px;
    display: flex;
    gap: 7px;
    text-align: left;
    transform: translateX(67px);
  }

  .timeline-end {
    left: 19px;
    transform: translateX(-10%);
  }

  .featured-vod {
    padding-top: 90px;
  }

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

  .library-heading,
  .library-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-main {
    padding: 32px 22px;
  }

  .contact-heading,
  .field-row,
  .form-submit {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }
}
