:root {
  --font-display: "RockBro", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --text: #f2f2f2;
  --muted: #a9a9a9;
  --red: #c51d1a;
  --red-bright: #ff2b25;
  --green: #9db331;
  --green-dark: #566415;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);

  background:
    radial-gradient(circle at 18% 12%, rgba(197, 29, 26, 0.10), transparent 30%),
    radial-gradient(circle at 82% 58%, rgba(157, 179, 49, 0.045), transparent 30%),
    linear-gradient(to bottom, #050505, #030303 45%, #050505);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image: url("../assets/img/grunge-texture.png");
  background-repeat: repeat;
  background-size: 620px 620px;

  opacity: 0.90;
}
@font-face {
  font-family: "RockBro";
  src: url("../assets/fonts/RockBro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.96),
      rgba(0, 0, 0, 0.78)
    );

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.header-inner {
  width: min(1440px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 14px;

  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.86;

  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 400;
}

/* NAV */

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-link,
.nav-dropdown-button {
  position: relative;

  color: var(--text);
  background: none;
  border: 0;
  padding: 32px 0 27px;

  font: inherit;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  text-decoration: none;
  cursor: pointer;

  transition:
    color 140ms ease,
    text-shadow 140ms ease;
}

.nav-link:hover,
.nav-dropdown-button:hover {
  color: var(--red-bright);
  text-shadow: 0 0 12px rgba(255, 43, 37, 0.45);
}

.nav-link.active {
  color: var(--red-bright);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;

  width: 100%;
  height: 3px;

  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 43, 37, 0.5);
}

.dropdown-arrow {
  margin-left: 4px;
  color: var(--muted);
}

/* DROPDOWN */

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 78px;
  right: 0;

  min-width: 210px;
  padding: 10px;

  background: rgba(6, 6, 6, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);

  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);

  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;

  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;

  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--green);
  border-left-color: var(--green);
  background: rgba(157, 179, 49, 0.08);
}

/* DISCORD BUTTON */

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 46px;
  padding: 0 22px;

  color: var(--green);
  border: 2px solid var(--green-dark);
  background: rgba(157, 179, 49, 0.06);

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;

  box-shadow:
    inset 0 0 18px rgba(157, 179, 49, 0.08),
    0 0 18px rgba(157, 179, 49, 0.1);

  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.discord-button:hover {
  color: #d5ef55;
  border-color: var(--green);
  background: rgba(157, 179, 49, 0.14);
  transform: translateY(-1px);
}

.discord-icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.discord-icon-med {
  width: 60px;
  height: 60px;
  display: block;
  left: 100px;
  object-fit: contain;  
  margin-left: -10px;
}

/* MOBILE */

.mobile-menu-button {
  display: none;

  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);

  width: 44px;
  height: 44px;

  font-size: 24px;
  cursor: pointer;
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 720px;
  padding-top: 86px;

  display: flex;
  align-items: center;

  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 86px 0 0 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  object-fit: cover;
  object-position: 75% center;
  display: block;

  filter: contrast(1.08) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 86px 0 0 0;
  z-index: 1;

  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(197, 29, 26, 0.08),
      transparent 28%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 28%,
      rgba(0, 0, 0, 0.46) 55%,
      rgba(0, 0, 0, 0.16) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.52)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 86px 0 78px;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 {
  margin: 0 0 20px;

  font-family: var(--font-display);
  color: var(--text);
  font-size: clamp(78px, 10vw, 6rem);
  line-height: 0.82;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 26px rgba(255, 255, 255, 0.12);
}

.hero-kicker {
  margin: 0 0 28px;

  font-family: var(--font-display);
  color: var(--red-bright);
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-description {
  max-width: 560px;
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 34px;
}

.cta-button {
  min-width: 220px;
  height: 70px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.8px;
  font-size: 18px;
  line-height: 1;

  transition:
    transform 140ms ease,
    filter 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
}

.cta-button small {
  display: block;
  margin-top: 4px;

  font-size: 13px;
  opacity: 0.92;
  letter-spacing: 0.7px;
}

.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.cta-steam {
  color: white;
  background: linear-gradient(180deg, #d62b2a, #9f1717);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 28px rgba(197, 29, 26, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.cta-steam-icon {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

.cta-discord {
  color: var(--green);
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid var(--green-dark);
  box-shadow:
    0 0 22px rgba(157, 179, 49, 0.10),
    inset 0 0 18px rgba(157, 179, 49, 0.08);
}

.cta-discord:hover {
  color: #d5ef55;
  border-color: var(--green);
  background: rgba(157, 179, 49, 0.12);
}

.cta-icon {
  font-size: 28px;
  line-height: 1;
}

.hero-status {
  display: grid;
  gap: 12px;

  margin-top: 34px;

  font-family: var(--font-display);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.7px;
  font-size: 17px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-icon {
  width: 28px;
  color: var(--red);
  font-size: 22px;
  text-align: center;
}

/* HERO RESPONSIVE */

/* NEXT PROJECT */

.next-project-section {
  padding: 34px 0 42px;
  background: transparent;
}

.next-project-card {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: stretch;

  border: 1px solid rgba(157, 179, 49, 0.62);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(0, 0, 0, 0.55)
    );

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 34px rgba(255, 255, 255, 0.022);

  overflow: hidden;
}

.next-project-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.next-project-media::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.22)
    ),
    radial-gradient(
      circle at 65% 45%,
      transparent 0%,
      rgba(0, 0, 0, 0.20) 100%
    );

  pointer-events: none;
}

.next-project-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;

  filter:
    contrast(1.08)
    saturate(1.04);
}

.next-project-copy {
  position: relative;
  padding: 64px 58px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    linear-gradient(
      to right,
      rgba(5, 5, 5, 0.74),
      rgba(4, 4, 4, 0.98)
    );
}

.next-project-copy::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 34px 34px;

  opacity: 0.22;
  pointer-events: none;
}

.next-project-copy > * {
  position: relative;
  z-index: 1;
}

.next-project-eyebrow,
.next-project-status {
  margin: 0;

  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.next-project-eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 21px;
}

.next-project-copy h2 {
  margin: 0 0 16px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.88;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 22px rgba(255, 255, 255, 0.10);
}

.next-project-status {
  margin-bottom: 22px;
  color: var(--red-bright);
  font-size: 28px;
}

.next-project-description {
  max-width: 540px;
  margin: 0 0 38px;

  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.next-project-button {
  width: fit-content;
  min-width: 250px;
  height: 64px;
  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: var(--green);
  border: 2px solid var(--green-dark);
  background: rgba(157, 179, 49, 0.055);

  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 19px;

  box-shadow:
    inset 0 0 18px rgba(157, 179, 49, 0.08),
    0 0 18px rgba(157, 179, 49, 0.08);

  transition:
    transform 140ms ease,
    color 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.next-project-button:hover {
  transform: translateY(-2px);
  color: #d5ef55;
  border-color: var(--green);
  background: rgba(157, 179, 49, 0.14);
}

/* NEXT PROJECT RESPONSIVE */

@media (max-width: 980px) {
  .next-project-card {
    grid-template-columns: 1fr;
  }

  .next-project-media,
  .next-project-media img {
    min-height: 360px;
  }

  .next-project-copy {
    padding: 46px 38px;
  }
}

@media (max-width: 760px) {
  .next-project-section {
    padding: 28px 0 34px;
  }

  .next-project-card {
    width: min(100% - 36px, 760px);
  }

  .next-project-media,
  .next-project-media img {
    min-height: 280px;
  }

  .next-project-copy {
    padding: 34px 24px;
  }

  .next-project-copy h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .next-project-status {
    font-size: 23px;
  }

  .next-project-description {
    font-size: 16px;
  }

  .next-project-button {
    width: 100%;
  }
}

/* COMMUNITY CTA */

.community-cta-section {
  padding: 42px 0 54px;
  background: transparent;
}

.community-cta-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 42px;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(0, 0, 0, 0.68);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 34px rgba(255, 255, 255, 0.025);
}

.community-main {
  display: flex;
  align-items: center;
  gap: 42px;
}

.community-icon {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;

  filter:
    drop-shadow(0 0 18px rgba(157, 179, 49, 0.16))
    contrast(1.08);
}

.community-copy h2,
.founding-card h3 {
  margin: 0;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.community-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
}

.community-copy p {
  max-width: 500px;
  margin: 0;

  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.founding-card {
  min-height: 170px;
  padding: 28px 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.46),
      rgba(255, 255, 255, 0.025)
    );
}

.card-eyebrow {
  margin: 0 0 10px;

  font-family: var(--font-display);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.founding-card h3 {
  margin-bottom: 10px;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
}

.founding-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.founding-button {
  height: 62px;
  min-width: 210px;
  padding: 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: var(--green);
  border: 2px solid var(--green-dark);
  background: rgba(157, 179, 49, 0.06);

  font-family: var(--font-display);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;

  box-shadow:
    inset 0 0 18px rgba(157, 179, 49, 0.08),
    0 0 18px rgba(157, 179, 49, 0.08);

  transition:
    transform 140ms ease,
    color 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.founding-button:hover {
  transform: translateY(-2px);
  color: #d5ef55;
  border-color: var(--green);
  background: rgba(157, 179, 49, 0.14);
}

.button-icon {
  font-size: 22px;
  line-height: 1;
}

/* COMMUNITY CTA RESPONSIVE */

@media (max-width: 1100px) {
  .community-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founding-card {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .community-cta-section {
    padding: 30px 0;
  }

  .community-cta-inner {
    width: min(100% - 36px, 760px);
    padding: 28px 24px;
  }

  .community-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .community-icon {
    width: 128px;
    height: 128px;
  }

  .community-copy p {
    font-size: 16px;
  }

  .founding-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .founding-button {
    width: 100%;
  }
}


@media (max-width: 980px) {
  .hero-section {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-bg,
  .hero-overlay {
    inset: 76px 0 0 0;
  }

  .hero-bg img {
    object-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.68) 42%,
        rgba(0, 0, 0, 0.92) 100%
      ),
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.86),
        rgba(0, 0, 0, 0.36)
      );
  }

  .hero-content {
    width: min(100% - 36px, 760px);
    padding: 80px 0 70px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-description {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 64px 0 56px;
  }

  .hero-copy h1 {
    font-size: clamp(64px, 18vw, 92px);
  }

  .hero-kicker {
    font-size: 26px;
  }

  .hero-description {
    font-size: 16px;
    font-weight: 600;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  .hero-status {
    font-size: 14px;
  }
}

/* PIPELINE BANNER */

.pipeline-section {
  position: relative;
  z-index: 3;
  padding: 36px 0 34px;
  margin-top: 0;
  background: transparent;
}

.pipeline-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.55fr 1fr auto 1fr;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(0, 0, 0, 0.56);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.42),
    inset 0 0 36px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.pipeline-studio,
.pipeline-game {
  min-height: 160px;
  padding: 30px 38px;

  display: flex;
  align-items: center;
  gap: 28px;
}

.pipeline-studio,
.pipeline-game.current {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.pipeline-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}

.pipeline-copy h2,
.pipeline-game h3 {
  margin: 0;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.pipeline-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1;
}

.pipeline-copy p,
.pipeline-game p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.pipeline-label {
  margin-bottom: 10px !important;

  font-family: var(--font-display) !important;
  color: var(--red-bright) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px !important;
  line-height: 1 !important;
}

.pipeline-game.next .pipeline-label {
  color: var(--green) !important;
}

.pipeline-game h3 {
  margin-bottom: 10px;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 0.95;
}

.pipeline-symbol {
  width: 78px;
  height: 78px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--red-bright);
  font-size: 58px;
  line-height: 1;

  text-shadow: 0 0 18px rgba(255, 43, 37, 0.38);
  flex-shrink: 0;
}

.pipeline-game-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  flex-shrink: 0;

  filter: drop-shadow(0 0 16px rgba(157, 179, 49, 0.22));
}

.pipeline-arrow {
  padding: 0 18px;

  color: rgba(255, 255, 255, 0.16);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}

/* PIPELINE RESPONSIVE */

@media (max-width: 1180px) {
  .pipeline-inner {
    grid-template-columns: 1fr 1fr;
  }

  .pipeline-studio,
  .pipeline-game {
    min-height: 150px;
  }

  .pipeline-studio {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .pipeline-game.current {
    border-right: 0;
  }

  .pipeline-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .pipeline-section {
    padding: 24px 0 30px;
    margin-top: 0;
  }

  .pipeline-inner {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
  }

  .pipeline-studio,
  .pipeline-game {
    min-height: 0;
    padding: 26px 24px;
    align-items: flex-start;
  }

  .pipeline-studio,
  .pipeline-game.current {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .pipeline-logo {
    width: 76px;
    height: 76px;
  }

  .pipeline-symbol {
    width: 58px;
    height: 58px;
    font-size: 42px;
  }

  .pipeline-game-icon {
    width: 64px;
    height: 64px;
  }

  .pipeline-copy p,
  .pipeline-game p {
    font-size: 15px;
  }
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 28px, 1440px);
    height: 76px;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand-text {
    font-size: 18px;
  }

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: rgba(4, 4, 4, 0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link,
  .nav-dropdown-button {
    display: block;
    width: 100%;
    padding: 18px 28px;
    text-align: left;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;

    display: block;
    min-width: 0;
    box-shadow: none;

    border-left: 0;
    border-right: 0;
    border-bottom: 0;

    background: rgba(255, 255, 255, 0.03);
  }

  .discord-button {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 16px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }
}


/* INTERNAL PAGE HERO */

.page-hero {
  position: relative;
  padding: 178px 0 88px;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.34)
    );
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 86px 0 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 18% 45%,
      rgba(197, 29, 26, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(157, 179, 49, 0.06),
      transparent 26%
    );
}

.page-hero-inner {
  position: relative;
  z-index: 1;

  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.page-eyebrow {
  margin: 0 0 18px;

  font-family: var(--font-display);
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
  line-height: 1;
}

.page-hero h1 {
  margin: 0 0 20px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 6rem;
  line-height: 0.82;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 24px rgba(255, 255, 255, 0.10);
}

.page-hero p:last-child {
  max-width: 780px;
  margin: 0;

  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

/* GAMES PAGE */

.game-feature-section,
.game-teaser-section {
  padding: 42px 0;
}

.game-feature-card,
.game-teaser-card {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;

  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, 0.68);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 34px rgba(255, 255, 255, 0.022);

  overflow: hidden;
}

.game-feature-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.game-feature-media {
  position: relative;
  min-height: 620px;
  background: #000;
  overflow: hidden;
}

.game-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.28)
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.42)
    );
}

.game-feature-media video,
.game-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: contrast(1.08) saturate(1.08);
}

.game-feature-copy {
  padding: 64px 58px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-eyebrow {
  margin: 0 0 18px;

  font-family: var(--font-display);
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 22px;
  line-height: 1;
}

.game-eyebrow.green {
  color: var(--green);
}

.game-feature-copy h2,
.game-teaser-copy h2 {
  margin: 0 0 16px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 0.86;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 22px rgba(255, 255, 255, 0.10);
}

.game-feature-copy h2 {
  font-size: clamp(62px, 6vw, 104px);
}

.game-teaser-copy h2 {
  font-size: clamp(58px, 5vw, 88px);
}

.game-status {
  margin: 0 0 26px;

  font-family: var(--font-display);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 23px;
  line-height: 1.1;
}

.game-feature-copy p,
.game-teaser-copy p {
  max-width: 620px;
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  margin: 34px 0 34px;
}

.game-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 580px;
}

.game-meta-grid div {
  padding: 18px 18px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

.game-meta-grid span {
  display: block;
  margin-bottom: 8px;

  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
}

.game-meta-grid strong {
  display: block;

  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.25;
}

/* NEXT GAME TEASER */

.game-teaser-card {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;

  border-color: rgba(157, 179, 49, 0.46);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(157, 179, 49, 0.045),
    inset 0 0 34px rgba(157, 179, 49, 0.018);
}

.game-teaser-copy {
  padding: 58px 56px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-teaser-media {
  position: relative;
  min-height: 460px;
  background: #000;
  overflow: hidden;
}

.game-teaser-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.34)
    );
}

.game-teaser-media img,
.game-teaser-media video {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: contrast(1.08) saturate(1.04);
}

/* GAMES RESPONSIVE */

@media (max-width: 980px) {
  .page-hero {
    padding: 148px 0 68px;
  }

  .page-hero-inner,
  .game-feature-card,
  .game-teaser-card {
    width: min(100% - 36px, 760px);
  }

  .page-hero p:last-child {
    font-size: 18px;
  }

  .game-feature-card,
  .game-teaser-card {
    grid-template-columns: 1fr;
  }

  .game-feature-media,
  .game-feature-media video,
  .game-feature-media img {
    min-height: 360px;
  }

  .game-teaser-media,
  .game-teaser-media img,
  .game-teaser-media video {
    min-height: 320px;
  }

  .game-feature-copy,
  .game-teaser-copy {
    padding: 42px 34px;
  }

  .game-teaser-copy {
    order: 2;
  }

  .game-teaser-media {
    order: 1;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 128px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .page-eyebrow {
    font-size: 19px;
  }

  .game-feature-section,
  .game-teaser-section {
    padding: 28px 0;
  }

  .game-feature-copy,
  .game-teaser-copy {
    padding: 32px 24px;
  }

  .game-feature-copy h2,
  .game-teaser-copy h2 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .game-status {
    font-size: 19px;
  }

  .game-feature-copy p,
  .game-teaser-copy p {
    font-size: 16px;
  }

  .game-actions {
    flex-direction: column;
  }

  .game-meta-grid {
    grid-template-columns: 1fr;
  }
}


/* ABOUT PAGE */

.about-statement-section,
.about-pillars-section,
.about-process-section,
.about-contact-section {
  padding: 42px 0;
}

.about-statement-card,
.about-process-card,
.about-contact-card,
.about-pillars-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.about-statement-card,
.about-process-card,
.about-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, 0.68);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 34px rgba(255, 255, 255, 0.022);

  overflow: hidden;
}

.about-statement-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.about-mark {
  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle,
      rgba(197, 29, 26, 0.16),
      transparent 46%
    ),
    rgba(0, 0, 0, 0.32);

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-mark img {
  width: min(320px, 70%);
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 0 24px rgba(197, 29, 26, 0.20))
    contrast(1.05);
}

.about-statement-copy {
  padding: 64px 62px;
}

.section-eyebrow {
  margin: 0 0 18px;

  font-family: var(--font-display);
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 22px;
  line-height: 1;
}

.section-eyebrow.green {
  color: var(--green);
}

.about-statement-copy h2,
.about-process-copy h2,
.about-contact-card h2 {
  margin: 0 0 24px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 0.9;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 22px rgba(255, 255, 255, 0.10);
}

.about-statement-copy h2 {
  font-size: clamp(52px, 5vw, 88px);
}

.about-process-copy h2,
.about-contact-card h2 {
  font-size: clamp(42px, 4vw, 72px);
}

.about-statement-copy p,
.about-process-copy p,
.about-contact-card p {
  max-width: 780px;
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

/* ABOUT PILLARS */

.about-pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-pillar {
  min-height: 320px;
  padding: 34px 32px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, 0.58);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.34),
    inset 0 0 28px rgba(255, 255, 255, 0.018);
}

.pillar-number {
  display: block;
  margin-bottom: 24px;

  font-family: var(--font-display);
  color: var(--red-bright);
  font-size: 42px;
  line-height: 1;
  opacity: 0.88;
}

.about-pillar h3 {
  margin: 0 0 18px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 0.95;
  font-weight: 400;
}

.about-pillar p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

/* ABOUT PROCESS */

.about-process-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;

  padding: 58px 62px;

  border-color: rgba(157, 179, 49, 0.38);
}

.about-process-list {
  display: grid;
  gap: 16px;
}

.about-process-list div {
  padding: 24px 26px;

  border: 1px solid rgba(157, 179, 49, 0.22);
  background: rgba(0, 0, 0, 0.36);
}

.about-process-list span {
  display: block;
  margin-bottom: 10px;

  font-family: var(--font-display);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.about-process-list strong {
  display: block;

  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
}

/* CONTACT */

.about-contact-card {
  padding: 52px 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.about-contact-card p {
  max-width: 720px;
}

.contact-button {
  min-width: 270px;
  height: 64px;
  padding: 0 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--green);
  border: 2px solid var(--green-dark);
  background: rgba(157, 179, 49, 0.055);

  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;

  box-shadow:
    inset 0 0 18px rgba(157, 179, 49, 0.08),
    0 0 18px rgba(157, 179, 49, 0.08);

  transition:
    transform 140ms ease,
    color 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  color: #d5ef55;
  border-color: var(--green);
  background: rgba(157, 179, 49, 0.14);
}

/* ABOUT RESPONSIVE */

@media (max-width: 980px) {
  .about-statement-card,
  .about-process-card,
  .about-contact-card,
  .about-pillars-inner {
    width: min(100% - 36px, 760px);
  }

  .about-statement-card,
  .about-process-card {
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-statement-copy,
  .about-process-card,
  .about-contact-card {
    padding: 42px 34px;
  }

  .about-pillars-inner {
    grid-template-columns: 1fr;
  }

  .about-pillar {
    min-height: 0;
  }

  .about-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .about-statement-section,
  .about-pillars-section,
  .about-process-section,
  .about-contact-section {
    padding: 28px 0;
  }

  .about-mark {
    min-height: 240px;
  }

  .about-statement-copy,
  .about-process-card,
  .about-contact-card {
    padding: 32px 24px;
  }

  .about-statement-copy h2,
  .about-process-copy h2,
  .about-contact-card h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .section-eyebrow {
    font-size: 19px;
  }

  .about-statement-copy p,
  .about-process-copy p,
  .about-contact-card p,
  .about-pillar p {
    font-size: 16px;
  }

  .about-process-list strong {
    font-size: 17px;
  }
}


/* NEWS PAGE */

.news-feature-section,
.news-list-section {
  padding: 42px 0;
}

.news-feature-card,
.news-list-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.news-feature-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;

  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, 0.68);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 34px rgba(255, 255, 255, 0.022);

  overflow: hidden;
}

.news-feature-media {
  position: relative;
  min-height: 440px;
  background: #000;
  overflow: hidden;
}

.news-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0.34)
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0.42)
    );
}

.news-feature-media img,
.news-feature-media video {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: contrast(1.08) saturate(1.06);
}

.news-feature-copy {
  padding: 58px 56px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  margin: 0 0 18px;

  font-family: var(--font-display);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 19px;
  line-height: 1;
}

.news-feature-copy h2,
.news-card h2 {
  margin: 0 0 20px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 0.95;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 22px rgba(255, 255, 255, 0.10);
}

.news-feature-copy h2 {
  font-size: clamp(48px, 4.8vw, 82px);
}

.news-feature-copy p,
.news-card p {
  margin: 0 0 26px;

  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}

.news-read-button,
.news-card a {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--green);
  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;

  transition:
    color 140ms ease,
    text-shadow 140ms ease,
    transform 140ms ease;
}

.news-read-button:hover,
.news-card a:hover {
  color: #d5ef55;
  text-shadow: 0 0 12px rgba(157, 179, 49, 0.35);
  transform: translateX(2px);
}

.news-list-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  min-height: 360px;
  padding: 34px 32px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, 0.58);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.34),
    inset 0 0 28px rgba(255, 255, 255, 0.018);
}

.news-card h2 {
  font-size: clamp(30px, 2.6vw, 46px);
}

.news-card p {
  font-size: 17px;
}

/* NEWS RESPONSIVE */

@media (max-width: 980px) {
  .news-feature-card,
  .news-list-inner {
    width: min(100% - 36px, 760px);
  }

  .news-feature-card {
    grid-template-columns: 1fr;
  }

  .news-feature-media,
  .news-feature-media img,
  .news-feature-media video {
    min-height: 340px;
  }

  .news-feature-copy {
    padding: 42px 34px;
  }

  .news-list-inner {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .news-feature-section,
  .news-list-section {
    padding: 28px 0;
  }

  .news-feature-media,
  .news-feature-media img,
  .news-feature-media video {
    min-height: 260px;
  }

  .news-feature-copy,
  .news-card {
    padding: 32px 24px;
  }

  .news-feature-copy h2,
  .news-card h2 {
    font-size: clamp(34px, 12vw, 56px);
  }

  .news-date {
    font-size: 17px;
  }

  .news-feature-copy p,
  .news-card p {
    font-size: 16px;
  }
}


/* COMMUNITY PAGE */

.community-page-section,
.community-games-section,
.community-guidelines-section {
  padding: 42px 0;
}

.community-page-card,
.founding-goblins-card,
.community-games-inner,
.community-guidelines-card {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.community-page-card,
.founding-goblins-card,
.community-game-card,
.community-guidelines-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, 0.68);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.46),
    inset 0 0 34px rgba(255, 255, 255, 0.022);

  overflow: hidden;
}

.community-discord-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
}

.community-page-icon {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-page-icon img {
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(157, 179, 49, 0.22))
    contrast(1.06);
	margin-left: 30px;
}

.community-page-copy {
  padding: 64px 62px;
}

.community-page-copy h2,
.founding-goblins-copy h2,
.community-game-card h2,
.community-guidelines-copy h2 {
  margin: 0 0 24px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 0.9;

  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 0 22px rgba(255, 255, 255, 0.10);
}

.community-page-copy h2 {
  font-size: clamp(52px, 5vw, 88px);
}

.founding-goblins-copy h2,
.community-guidelines-copy h2 {
  font-size: clamp(44px, 4.5vw, 78px);
}

.community-game-card h2 {
  font-size: clamp(42px, 4vw, 74px);
}

.community-page-copy p,
.founding-goblins-copy p,
.community-game-card p,
.community-guidelines-copy p {
  max-width: 780px;
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

/* FOUNDING GOBLINS */

.founding-goblins-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;

  padding: 58px 62px;

  border-color: rgba(157, 179, 49, 0.38);
}

.founding-goblins-details {
  display: grid;
  gap: 16px;
}

.founding-goblins-details div {
  padding: 24px 26px;

  border: 1px solid rgba(157, 179, 49, 0.22);
  background: rgba(0, 0, 0, 0.36);
}

.founding-goblins-details span {
  display: block;
  margin-bottom: 10px;

  font-family: var(--font-display);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}

.founding-goblins-details strong {
  display: block;

  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.3;
}

/* COMMUNITY GAMES */

.community-games-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.community-game-card {
  min-height: 360px;
  padding: 38px 36px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.community-game-card.green {
  border-color: rgba(157, 179, 49, 0.42);
}

.community-game-card a {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--green);
  font-family: var(--font-display);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 18px;

  transition:
    color 140ms ease,
    text-shadow 140ms ease,
    transform 140ms ease;
}

.community-game-card a:hover {
  color: #d5ef55;
  text-shadow: 0 0 12px rgba(157, 179, 49, 0.35);
  transform: translateX(2px);
}

/* GUIDELINES */

.community-guidelines-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;

  padding: 58px 62px;
}

.community-guidelines-list {
  display: grid;
  gap: 16px;
}

.community-guidelines-list div {
  padding: 20px 22px;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

.community-guidelines-list span {
  font-family: var(--font-display);
  color: var(--red-bright);
  font-size: 28px;
  line-height: 1;
}

.community-guidelines-list p {
  margin: 0;

  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

/* COMMUNITY RESPONSIVE */

@media (max-width: 980px) {
  .community-page-card,
  .founding-goblins-card,
  .community-games-inner,
  .community-guidelines-card {
    width: min(100% - 36px, 760px);
  }

  .community-discord-card,
  .founding-goblins-card,
  .community-guidelines-card,
  .community-games-inner {
    grid-template-columns: 1fr;
  }

  .community-page-icon {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .community-page-copy,
  .founding-goblins-card,
  .community-guidelines-card {
    padding: 42px 34px;
  }

  .community-game-card {
    min-height: 0;
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .community-page-section,
  .community-games-section,
  .community-guidelines-section {
    padding: 28px 0;
  }

  .community-page-icon {
    min-height: 240px;
  }

  .community-page-copy,
  .founding-goblins-card,
  .community-guidelines-card,
  .community-game-card {
    padding: 32px 24px;
  }

  .community-page-copy h2,
  .founding-goblins-copy h2,
  .community-guidelines-copy h2,
  .community-game-card h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .community-page-copy p,
  .founding-goblins-copy p,
  .community-game-card p,
  .community-guidelines-copy p {
    font-size: 16px;
  }

  .founding-goblins-details strong {
    font-size: 17px;
  }

  .community-guidelines-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}



/* FOOTER */

.site-footer {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(197, 29, 26, 0.08),
      transparent 32%
    ),
    linear-gradient(
      to bottom,
      #090909,
      #030303
    );

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;

  opacity: 0.25;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 58px 0 52px;

  display: grid;
  grid-template-columns: 2.1fr 1fr 1.1fr 1.4fr 1.7fr;
  gap: 54px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.footer-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
}

.footer-logo-wrap {
  flex-shrink: 0;
}

.footer-brand h2,
.footer-column h3,
.footer-social h3 {
  margin: 0 0 18px;

  font-family: var(--font-display);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.footer-brand h2 {
  font-size: 30px;
  line-height: 1;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column h3,
.footer-social h3 {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-column a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;

  transition:
    color 140ms ease,
    text-shadow 140ms ease;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: var(--red-bright);
  text-shadow: 0 0 12px rgba(255, 43, 37, 0.35);
}

.footer-social {
  padding-left: 54px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.social-links a {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: 0.72;
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    filter 140ms ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.28));
}

.social-links img {
  max-width: 38px;
  max-height: 38px;
  display: block;
}

.footer-bottom {
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 0 0 34px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;

  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal a,
.footer-legal span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.52);
}

/* FOOTER RESPONSIVE */

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 42px;
  }

  .footer-social {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .footer-inner {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 42px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    width: 92px;
    height: 92px;
  }

  .footer-brand h2 {
    font-size: 25px;
  }

  .footer-brand p {
    font-size: 16px;
  }

  .footer-column h3,
  .footer-social h3 {
    margin-bottom: 10px;
  }

  .social-links {
    gap: 24px;
  }

  .footer-bottom {
    width: min(100% - 36px, 760px);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
	
	
  }
  
  
}
