:root {
  --root: "/gbgame";
  --bg: #0a0014;
  --bg-alt: #140026;
  --text: #fdf4ff;
  --muted: #caa8ff;
  --accent: #ff2df5;
  --accent2: #4df3ff;
  --accent3: #ffb32d;
  --border: rgba(255,255,255,0.15);
  --max-width: 1100px;

  --steam-dark: #171a21;
  --steam-blue: #1b2838;
  --steam-cyan: #66c0f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: radial-gradient(circle at top, #1b0033 0, #05000a 55%, #000 100%);
  color: var(--text);
  font-family: system-ui, sans-serif;
  overflow-x: hidden;
}

/* NAV */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(5,0,20,0.85);
  z-index: 50;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

nav > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* WRP LOGO + MASK */
.wearyroad-logo {
  height: 40px;
  width: auto;
  filter: none !important;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.wearyroad-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
}

/* GHOSTBATTALION LOGO */
.gb-logo {
  height: 40px;
  filter: drop-shadow(0 0 12px var(--accent2));
}

nav .gb-logo img {
  height: 40px;
  filter: drop-shadow(0 0 4px rgba(77, 243, 255, 0.35));
  transition: 0.25s ease;
  pointer-events: none;
}

.gb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}



nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--accent2);
}

/* SECTIONS */

.section {
  max-width: var(--max-width);
  margin: 100px auto;
  padding: 0 20px;
}

.section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}

/* HERO */

.hero-section {
  margin-top: 140px;
}

.presskit-hero {
  display: block;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.presskit-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* FACT SHEET */

.fact-sheet-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 30px;
  background: radial-gradient(circle at top, #1b0033, #05000a);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.fact-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fact-left h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.fact-left p {
  text-align: left;
  margin-bottom: 6px;
}

/* BUTTONS */

.social-btn,
.steam-btn,
.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
  text-transform: uppercase;
}

.social-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0014;
}

.steam-btn {
  background: linear-gradient(135deg, var(--steam-dark), var(--steam-blue));
  color: var(--steam-cyan);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0014;
}

.social-btn:hover,
.steam-btn:hover,
.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
}

.zip-under-social {
  margin-top: 12px;
  text-align: center;
}

/* FACT ART GRID */

.fact-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.fact-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fact-art-item {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 18px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fact-art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.fact-art-item:hover {
  box-shadow: 0 0 28px rgba(77,243,255,0.7);
  transform: scale(1.03);
}

.fact-art-item:hover img {
  transform: scale(1.05);
}

.fact-art-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fact-art-item:hover .fact-art-overlay {
  opacity: 1;
}

/* DESCRIPTION + FEATURES */

.desc-left {
  text-align: left;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.45;
}

.feature-block {
  background: radial-gradient(circle at top, #1b0033, #05000a);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  margin-bottom: 24px;
}

.feature-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.multiplayer-header {
  text-align: left;
  font-size: 20px;
  margin: 20px 0 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 0 18px rgba(0,0,0,0.8);
  object-fit: cover;
  display: block;
}

/* STACKED SCREENSHOTS */

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.gallery-item {
  width: 260px;
  aspect-ratio: 1232/706;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 18px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(77,243,255,0.7);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox-content {
  position: relative;
  background: #111;
  border-radius: 12px;
  padding: 12px;
}

#lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
}

.popup-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--accent);
  font-size: 48px;
  cursor: pointer;
  z-index: 10;
}

.popup-btn.left { left: 10px; }
.popup-btn.right { right: 10px; }

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #111;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
}

#popup-download {
  display: block;
  margin: 12px auto 0 auto;
  text-align: center;
  width: fit-content;
}

/* ABOUT EMAIL */

.about-email-highlight {
  display: block;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0014;
  box-shadow: 0 0 25px rgba(77,243,255,0.7);
}

/* TRAILER */

.trailer {
  width: 100%;
  aspect-ratio: 16/9;
  background: radial-gradient(circle at top, #2b0050, #05000a);
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.trailer-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.trailer-iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.trailer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 80px;
  font-size: 13px;
}

/* --------------------------------------------------
   WRP — HOVER GLOW
-------------------------------------------------- */
.wearyroad-nav:hover {
  transform: scale(1.04);
  filter:
    drop-shadow(0 0 10px rgba(200, 60, 255, 0.35))   /* subtle magenta */
    drop-shadow(0 0 18px rgba(77, 243, 255, 0.95));  /* strong cyan/greenish */
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* --------------------------------------------------
   GB — HOVER GLOW
-------------------------------------------------- */
.gb-nav:hover .gb-logo img {
  transform: scale(1.06);
  filter:
    drop-shadow(0 0 16px rgba(200,60,255,0.95))
    drop-shadow(0 0 12px rgba(77,243,255,0.65));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.steam-widget-align {
  max-width: var(--max-width);
  margin: 6px auto 0;     /* 6px below the Fact Sheet border */
  padding-left: 20px;     /* EXACT same left boundary as Fact Sheet */
  display: block;         /* keeps it aligned left inside the section */
}