/* ============ OUTPOST BOYZ v10 — BRUTALIST STREETWEAR DROP ============ */
:root {
  --paper: #ffffff;
  --ink: #000000;
  --grey: #555555;
  --red: #ff0000;
  --bw: 3px;
  --disp: 'Archivo Black', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.nav-logo {
  font-family: var(--disp);
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-family: var(--body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav-links a:hover { color: var(--red); }
.nav-social { display: inline-flex; align-items: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: var(--bw) solid var(--ink);
}
.hero-content { position: relative; z-index: 2; padding: 100px 20px 60px; max-width: 1000px; }
.hero-kicker {
  font-family: var(--body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ink);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-logo {
  font-family: var(--disp);
  font-size: clamp(56px, 14vw, 150px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -4px;
  text-transform: uppercase;
}
.hero-tag {
  font-family: var(--body);
  font-weight: 900;
  font-size: clamp(14px, 2.6vw, 20px);
  letter-spacing: 6px;
  color: var(--ink);
  margin-top: 20px;
  text-transform: uppercase;
}
.hero-sub {
  color: var(--grey);
  max-width: 460px;
  margin: 18px auto 0;
  font-size: 16px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-social { display: flex; gap: 28px; justify-content: center; margin-top: 34px; }
.hero-social a {
  font-family: var(--body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}
.hero-social a:hover { color: var(--red); }

/* ---------- marquee strip ---------- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: var(--bw) solid var(--ink);
  border-bottom: var(--bw) solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
}
.hero + .marquee { border-top: none; }
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--disp);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 15px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  text-transform: uppercase;
  border: var(--bw) solid var(--ink);
  border-radius: 0;
}
.btn-solid {
  background: var(--ink);
  color: var(--paper);
}
.btn-solid:hover { background: var(--paper); color: var(--ink); }
.btn-line {
  background: var(--paper);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-red {
  background: var(--red);
  border-color: var(--ink);
  color: var(--paper);
}
.btn-red:hover { background: var(--ink); color: var(--paper); }
.btn-sm { font-size: 12px; padding: 12px 20px; }

/* ---------- sections ---------- */
.section {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px;
}
.sec-head { margin-bottom: 40px; }
.sec-num {
  font-family: var(--body);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}
.sec-head h2 {
  font-family: var(--disp);
  font-size: clamp(34px, 7vw, 64px);
  letter-spacing: -2px;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: var(--bw) solid var(--ink);
  padding-bottom: 14px;
}
.sec-sub {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--grey);
  margin-top: 10px;
  text-transform: uppercase;
}

/* ---------- chips ---------- */
.chip {
  display: inline-block;
  font-family: var(--body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  color: var(--ink);
  text-transform: uppercase;
  background: var(--paper);
}
.chip-hot { background: var(--ink); color: var(--paper); }

/* ---------- arcade ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border: var(--bw) solid var(--ink);
}
.loading {
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: 2px;
  padding: 24px;
  text-transform: uppercase;
}
.game-card {
  position: relative;
  background: var(--paper);
  border: 0;
  outline: calc(var(--bw) / 2 + 0.5px) solid var(--ink);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.1s;
}
.game-card:hover { background: #f2f2f2; }
.game-badge { position: absolute; top: 16px; right: 16px; background: var(--red); border-color: var(--red); color: var(--paper); }
.game-icon { font-size: 42px; line-height: 1; filter: grayscale(1); }
.game-card:hover .game-icon { filter: none; }
.game-card h3 {
  font-family: var(--disp);
  font-size: 21px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.game-card p { color: var(--grey); font-size: 14px; flex: 1; }
.game-play {
  display: block;
  text-align: center;
  font-family: var(--body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 13px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  border: var(--bw) solid var(--ink);
  transition: background 0.1s, color 0.1s;
}
.game-play:hover { background: var(--paper); color: var(--ink); }
.game-play.dim {
  background: var(--paper);
  border-style: dashed;
  color: var(--grey);
  border-color: var(--grey);
}
.game-card.coming { color: var(--grey); }
.game-card.coming:hover { background: var(--paper); }

/* ---------- steam ---------- */
.steam-hero {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.2fr);
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  margin-bottom: 24px;
}
@media (max-width: 760px) { .steam-hero { grid-template-columns: 1fr; } }
.steam-hero-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.steam-hero-info h3 {
  font-family: var(--disp);
  font-size: clamp(30px, 5.5vw, 52px);
  letter-spacing: -2px;
  line-height: 0.95;
  text-transform: uppercase;
}
.steam-hero-info p { color: var(--grey); font-size: 15px; }
.steam-hero-media {
  background: #ededed;
  border-left: var(--bw) solid var(--ink);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 760px) {
  .steam-hero-media { border-left: none; border-top: var(--bw) solid var(--ink); }
}
.steam-hero-media span {
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--ink);
  border: 2px dashed var(--ink);
  padding: 14px 20px;
  text-transform: uppercase;
}
.steam-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.steam-mini {
  background: var(--paper);
  border: var(--bw) solid var(--ink);
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.steam-mini h4 {
  font-family: var(--disp);
  font-size: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.steam-mini p { color: var(--grey); font-size: 14px; }

/* ---------- clips ---------- */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.clip-slot {
  aspect-ratio: 9 / 15;
  background: #ededed;
  border: var(--bw) solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-slot span {
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--ink);
  border: 2px dashed var(--ink);
  padding: 12px 16px;
  text-transform: uppercase;
}
.clips-cta { text-align: center; margin-top: 30px; }

/* ---------- crew ---------- */
#crew { padding-bottom: 0; }
.crew-photo {
  width: 100%;
  border-top: var(--bw) solid var(--ink);
  border-bottom: var(--bw) solid var(--ink);
  margin: 0;
}
.crew-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.35s ease;
}
.crew-photo:hover img { filter: grayscale(0) contrast(1); }
.crew-below { padding-top: 44px; }
.crew-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.5fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 760px) { .crew-wrap { grid-template-columns: 1fr; } }
.crew-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.crew-list li {
  font-family: var(--disp);
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: -1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.crew-list li:first-child { border-top: 2px solid var(--ink); }
.crew-idx {
  font-family: var(--body);
  font-weight: 900;
  font-size: 14px;
  color: var(--red);
}
.crew-copy { color: var(--grey); font-size: 17px; max-width: 520px; padding-top: 12px; }

/* ---------- signup ---------- */
.signup {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 80px 24px;
  border-top: var(--bw) solid var(--ink);
}
.signup h2 {
  font-family: var(--disp);
  font-size: clamp(30px, 6vw, 54px);
  letter-spacing: -2px;
  text-transform: uppercase;
}
.signup p {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #bbbbbb;
  margin: 12px 0 28px;
  text-transform: uppercase;
}
.signup-form { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.signup-form input {
  background: var(--paper);
  border: var(--bw) solid var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 15px 16px;
  width: min(320px, 100%);
  border-radius: 0;
  text-transform: uppercase;
}
.signup-form input::placeholder { color: var(--grey); }
.signup-form input:focus { outline: none; border-color: var(--red); }
.signup .btn-red { border-color: var(--red); }
.signup .btn-red:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- footer ---------- */
.footer {
  text-align: center;
  padding: 46px 24px;
  color: var(--grey);
  border-top: var(--bw) solid var(--ink);
}
.footer-logo {
  font-family: var(--disp);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.footer-social {
  margin: 14px 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  font-family: var(--body);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}
.footer-social a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-social a:hover { color: var(--red); }
.footer-fine { font-size: 11px; margin-top: 6px; letter-spacing: 1px; }

@media (max-width: 560px) {
  .nav-links { gap: 14px; }
  .hero { min-height: 78vh; }
  .hero-logo { letter-spacing: -2px; }
}

/* ===== loadup splash ===== */
#loadup {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a0a0a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loadup::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(57,255,20,0.03) 0 2px, transparent 2px 4px);
}
#loadup.lu-out { opacity: 0; visibility: hidden; }
.lu-inner { text-align: center; position: relative; z-index: 1; padding: 20px; }
.lu-kicker {
  font-family: var(--body); font-weight: 900; font-size: 11px; letter-spacing: 6px;
  color: #39ff14; opacity: 0; animation: luFade 0.4s ease 0.1s forwards; margin-bottom: 20px;
}
.lu-logo {
  font-family: var(--disp); font-size: clamp(40px, 12vw, 80px); line-height: 0.9;
  letter-spacing: -2px; text-transform: uppercase;
}
.lu-logo { opacity: 0; animation: luRise 0.5s ease 0.4s forwards; }
.lu-logo span { color: #39ff14; text-shadow: 0 0 26px rgba(57,255,20,0.5); }
.lu-bar {
  width: 200px; max-width: 60vw; height: 5px; background: #1a1a1a; border-radius: 3px;
  margin: 26px auto 0; overflow: hidden; opacity: 0; animation: luFade 0.3s ease 0.7s forwards;
}
.lu-bar span {
  display: block; height: 100%; width: 0; background: #39ff14;
  box-shadow: 0 0 12px #39ff14; animation: luFill 1.1s ease-out 0.9s forwards;
}
.lu-tag {
  font-family: var(--body); font-weight: 900; font-size: 12px; letter-spacing: 5px;
  color: #888; margin-top: 20px; opacity: 0; animation: luFade 0.5s ease 1.7s forwards;
}
@keyframes luFade { to { opacity: 1; } }
@keyframes luRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes luFill { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .lu-kicker, .lu-logo, .lu-bar, .lu-tag { animation: none; opacity: 1; }
  .lu-bar span { animation: none; width: 100%; }
}

@media (max-width: 620px) {
  .prize-row { grid-template-columns: 1fr !important; }
}

/* mobile: stack the nav — logo on its own row, menu drops below, no collisions */
@media (max-width: 860px) {
  .nav { flex-wrap: wrap; row-gap: 10px; padding: 12px 16px; }
  .nav-logo { width: 100%; }
  .nav-links { width: 100%; flex-wrap: wrap; gap: 10px 16px; }
}

/* root: neutral chrome, color comes from the games */
.game-card { border-top: 6px solid var(--gc, var(--ink)); }
.game-icon { filter: none; }
.game-card:hover { background: #fafafa; }

/* v9 lab buttons on the neutral chrome: beaker shape + slime green */
.btn { border-radius: 4px 4px 18px 18px; }
.btn-solid { background: #39ff14; color: #000; border-color: #000; }
.btn-solid:hover { background: #000; color: #39ff14; }
.btn-red { background: #39ff14; color: #000; border-color: #000; }
.btn-red:hover { background: #000; color: #39ff14; }
.game-play { border-radius: 4px 4px 14px 14px; }
/* whited-out crew photo behind the hero title */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('crew.jpg') center 22% / cover no-repeat;
  filter: grayscale(1) contrast(1.15);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent 45%, var(--paper) 98%);
}
/* Ruff Transit trailer: circle badge poster, loadup video on play */
.steam-hero-media { padding: 0; }
.steam-hero-media video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: #000;
  display: block;
}
/* live TikTok embeds in the footage slots */
.clip-slot { aspect-ratio: 9 / 16; overflow: hidden; }
.clip-slot iframe { width: 100%; height: 100%; border: 0; display: block; background: #000; }