/* ProstoR homepage v4 — proportional hero artwork and pixel-aligned interactive zones. */

body.home-page {
  --home-orange: #e55217;
  --home-orange-bright: #ff681e;
  --home-muted: #a3a5a2;
  background: #070909;
  color: #f3f2ee;
  overflow-x: hidden;
}

.home-page main {
  display: block;
}

.home-page .site-header {
  position: relative;
  top: auto;
  z-index: 100;
  height: 86px;
  padding: 0 clamp(28px, 5.75vw, 96px);
  display: grid;
  grid-template-columns: minmax(220px, 265px) minmax(560px, 1fr) auto;
  align-items: center;
  column-gap: clamp(26px, 3vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(4, 6, 6, .985);
  backdrop-filter: none;
}

.home-page .brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.home-page .brand-word {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 43px;
  line-height: .78;
  letter-spacing: 1.2px;
  color: #e8e8e5;
  text-shadow: 0 2px 0 #000;
}

.home-page .brand-word > span {
  color: var(--home-orange);
}

.home-page .brand small {
  display: block;
  margin: 7px 0 0 2px;
  color: #a0a19f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4.7px;
  line-height: 1;
}

.home-page .main-nav {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 38px);
  height: 86px;
}

.home-page .main-nav a {
  position: relative;
  min-height: 86px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #a9aaa8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .main-nav a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16px;
  height: 2px;
  background: var(--home-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.home-page .main-nav a:hover,
.home-page .main-nav a.active {
  color: var(--home-orange-bright);
  border: 0;
  background: transparent;
}

.home-page .main-nav a:hover::after,
.home-page .main-nav a.active::after {
  transform: scaleX(1);
}

.home-page .header-actions {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.home-page .discord-button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-orange);
  border-radius: 3px;
  background: rgba(0, 0, 0, .22);
  color: var(--home-orange-bright);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.home-page .discord-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.home-page .discord-button:hover {
  background: var(--home-orange);
  color: #fff;
  box-shadow: 0 0 28px rgba(229, 82, 23, .22);
}

.home-page .discord-button:focus-visible,
.home-page .header-steam:focus-visible,
.home-page .header-profile:focus-visible,
.home-page .header-logout button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.home-page .header-steam {
  width: 180px;
  height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #55758e;
  border-radius: 3px;
  background: rgba(18, 28, 37, .82);
  color: #eef3f6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .55px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .header-steam svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
}

.home-page .header-steam:hover {
  border-color: #80a8c7;
  background: #1b3549;
  color: #fff;
  box-shadow: 0 0 24px rgba(73, 126, 167, .24);
}

.header-steam-label-short {
  display: none;
}

.home-page .header-profile {
  width: 180px;
  min-width: 160px;
  max-width: 190px;
  height: 44px;
  padding: 4px 9px 4px 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .025);
  color: #dededb;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
}

.home-page .header-profile img {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  object-fit: cover;
}

.home-page .header-profile span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-page .header-logout button {
  width: 38px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .02);
}

.home-page .nav-toggle {
  display: none;
}

.home-hero-v3 {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100svh - 86px);
  overflow: clip;
  border: 0;
  background-color: #0b0c0c;
  background-image: url('/assets/home/hero-background-clean-4k.webp');
  background-repeat: no-repeat;
  background-position: center 48%;
  background-size: cover;
}

.home-hero-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 43%, rgba(0, 0, 0, .24) 0, rgba(0, 0, 0, .42) 37%, rgba(0, 0, 0, .16) 68%),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .72));
  pointer-events: none;
}

.hero-layout-v4 {
  width: 100%;
  min-height: calc(100svh - 86px);
  padding: clamp(70px, 9vh, 112px) clamp(24px, 5.8vw, 112px) 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy-v4 {
  width: min(100%, 900px);
  margin: 0 auto clamp(20px, 3vh, 34px);
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .95);
}

.hero-kicker-v4 {
  margin: 0 0 5px;
  color: var(--home-orange-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(21px, 1.75vw, 32px);
  line-height: 1;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.hero-logo-link-v4 {
  width: min(100%, 760px);
  margin: 0 auto;
  display: block;
  border-radius: 3px;
}

.hero-logo-link-v4 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .78));
}

.hero-logo-link-v4:focus-visible {
  outline: 2px solid #ff8244;
  outline-offset: 5px;
}

.hero-copy-v4 h1 {
  margin: clamp(10px, 1.3vh, 17px) 0 5px;
  color: #f0efeb;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-description-v4 {
  margin: 0;
  color: #d7d5d1;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.52;
}

.hero-play-button {
  width: min(100%, 500px);
  margin: clamp(10px, 1.5vh, 18px) auto 0;
  display: block;
  line-height: 0;
  transition: filter .18s ease;
}

.hero-play-button img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-play-button:hover {
  filter: brightness(1.08) drop-shadow(0 0 13px rgba(230, 83, 22, .32));
}

.hero-play-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.hero-more-link {
  width: fit-content;
  margin: 2px auto 0;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d2d1ce;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hero-more-link svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.hero-more-link:hover {
  color: #fff;
}

.hero-more-link:hover svg {
  transform: translateY(2px);
}

.hero-more-link:focus-visible {
  outline: 2px solid #ff8244;
  outline-offset: 2px;
}

.hero-features-v4 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 24px);
}

.hero-feature-v4 {
  min-width: 0;
  min-height: 140px;
  padding: 19px clamp(15px, 1.25vw, 24px);
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.2vw, 22px);
  border: 1px solid rgba(221, 224, 220, .42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(5, 7, 7, .88), rgba(7, 8, 8, .7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 12px 28px rgba(0, 0, 0, .3);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-feature-v4:hover {
  border-color: var(--home-orange-bright);
  background: rgba(8, 9, 9, .94);
  box-shadow: inset 0 0 22px rgba(255, 96, 22, .08), 0 0 28px rgba(229, 82, 23, .18);
}

.hero-feature-v4:focus-visible {
  outline: 3px solid #ff8244;
  outline-offset: 3px;
}

.hero-feature-v4 img {
  flex: 0 0 clamp(58px, 5vw, 86px);
  width: clamp(58px, 5vw, 86px);
  height: clamp(58px, 5vw, 86px);
  object-fit: contain;
}

.hero-feature-v4 > span {
  min-width: 0;
  display: block;
}

.hero-feature-v4 strong,
.hero-feature-v4 small {
  display: block;
}

.hero-feature-v4 strong {
  color: #e3e2de;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-feature-v4 small {
  margin-top: 10px;
  color: #b5b5b1;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(12px, .9vw, 16px);
  line-height: 1.45;
}

.hero-login-notice {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 36px));
  margin: 0;
  text-align: center;
  background: rgba(6, 8, 8, .92);
  border: 1px solid var(--home-orange);
  border-left-width: 3px;
  color: #f2f1ed;
}

.server-operations-v3 {
  width: 100%;
  height: 82px;
  padding: 0 clamp(28px, 6.5vw, 110px);
  display: grid;
  grid-template-columns: 1.06fr 1fr 1.34fr;
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: #090b0b;
}

.operation-v3 {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #949895;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .45px;
  text-transform: uppercase;
  white-space: nowrap;
}

.operation-v3 > svg,
.copy-value-v3 > svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #a4a8a5;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-value-v3 {
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.direct-connect-address-v3 {
  min-width: 0;
  overflow: hidden;
  color: var(--home-orange-bright);
  font-size: 13px;
  text-overflow: ellipsis;
  text-transform: none;
}

.direct-copy-v3 {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 9px;
  gap: 6px;
  border: 1px solid rgba(229, 82, 23, .58);
  border-radius: 2px;
  color: #d8d8d4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.direct-copy-v3:hover {
  border-color: var(--home-orange-bright);
  background: rgba(229, 82, 23, .12);
  color: #fff;
}

.direct-copy-v3:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.direct-copy-v3 > svg {
  width: 14px;
  height: 14px;
}

.copy-value-v3 b,
.discord-operation-v3 b {
  min-width: 0;
  overflow: hidden;
  color: var(--home-orange-bright);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: none;
}

.copy-value-v3 > svg {
  width: 16px;
  height: 16px;
  stroke: #777c79;
}

.copy-value-v3:hover b,
.discord-operation-v3:hover b {
  color: #ff8244;
}

.discord-mark-v3 {
  width: 25px !important;
  height: 25px !important;
  fill: #9fa3a0 !important;
  stroke: none !important;
}

.fair-play-v3 {
  justify-content: flex-end;
  text-align: right;
}

.fair-play-v3 > svg {
  width: 24px;
  height: 24px;
}

/* The existing lower homepage blocks stay intact, but start only below the first viewport. */
.home-page .territory-section {
  margin-top: 0;
}

@media (max-width: 1320px) {
  .home-page .site-header {
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: 210px minmax(500px, 1fr) auto;
    column-gap: 22px;
  }

  .home-page .brand-word {
    font-size: 37px;
  }

  .home-page .main-nav {
    gap: 19px;
  }

  .home-page .main-nav a {
    font-size: 12px;
  }

  .home-page .discord-button {
    width: 44px;
    min-width: 44px;
  }

  .server-operations-v3 {
    padding-left: 34px;
    padding-right: 34px;
    gap: 25px;
  }
}

@media (max-width: 1080px) {
  .home-page .site-header {
    height: 76px;
    grid-template-columns: auto 1fr auto;
    padding: 0 20px;
  }

  .home-page .brand-word {
    font-size: 34px;
  }

  .home-page .brand small {
    font-size: 8px;
    letter-spacing: 3.7px;
  }

  .home-page .nav-toggle {
    grid-column: 2;
    justify-self: end;
    display: flex;
    width: 43px;
    height: 43px;
    margin: 0;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .025);
  }

  .home-page .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ddd;
  }

  .home-page .main-nav {
    position: absolute;
    z-index: 30;
    top: 76px;
    left: 0;
    right: 0;
    height: auto;
    display: none;
    padding: 10px 20px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(4, 6, 6, .985);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .home-page .main-nav.open {
    display: flex;
  }

  .home-page .main-nav a {
    min-height: 44px;
    height: 44px;
    justify-content: flex-start;
    font-size: 13px;
  }

  .home-page .main-nav a::after {
    left: 0;
    right: auto;
    bottom: 4px;
    width: 34px;
  }

  .home-page .header-actions {
    grid-column: 3;
  }

  .home-page .discord-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }

  .home-page .header-steam {
    width: 172px;
    height: 44px;
  }

  .home-page .header-profile {
    width: 172px;
    min-width: 150px;
    max-width: 172px;
  }


  .server-operations-v3 {
    height: 72px;
    padding: 0 22px;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .fair-play-v3 {
    display: none;
  }

  .home-hero-v3,
  .hero-layout-v4 {
    min-height: calc(100svh - 76px);
  }
}

/* Minigame selector in the primary navigation. */
.home-page .main-nav__game-switcher { position: relative; display: flex; align-items: stretch; }
.home-page .main-nav__game-trigger { position: relative; min-height: 86px; padding: 0; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 0; background: transparent; color: #a9aaa8; cursor: pointer; font: inherit; font-size: 14px; font-weight: 800; letter-spacing: .4px; line-height: 1; list-style: none; text-transform: uppercase; white-space: nowrap; }
.home-page .main-nav__game-trigger::-webkit-details-marker { display: none; }
.home-page .main-nav__game-trigger::marker { content: ""; }
.home-page .main-nav__game-trigger svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .16s ease; }
.home-page .main-nav__game-switcher[open] .main-nav__game-trigger svg { transform: rotate(180deg); }
.home-page .main-nav__game-trigger::after { content: ""; position: absolute; right: 18%; bottom: 16px; left: 18%; height: 2px; background: var(--home-orange); transform: scaleX(0); transform-origin: center; transition: transform .18s ease; }
.home-page .main-nav__game-trigger:hover,.home-page .main-nav__game-trigger.active { color: var(--home-orange-bright); }
.home-page .main-nav__game-trigger:hover::after,.home-page .main-nav__game-trigger.active::after { transform: scaleX(1); }
.home-page .main-nav__game-menu { position: absolute; z-index: 140; top: calc(100% - 12px); left: 50%; display: grid; width: max-content; min-width: 202px; margin: 0; padding: 6px; list-style: none; border: 1px solid rgba(229, 82, 23, .48); background: rgba(5, 7, 7, .985); box-shadow: 0 18px 35px rgba(0, 0, 0, .58); opacity: 0; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .16s ease, transform .16s ease; }
.home-page .main-nav__game-switcher[open] .main-nav__game-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.home-page .main-nav__game-menu a { min-height: 42px; height: 42px; padding: 0 12px; justify-content: flex-start; font-size: 12px; }
.home-page .main-nav__game-menu a::after { right: auto; bottom: 5px; left: 12px; width: 34px; }
.home-page .main-nav__game-trigger:focus-visible,.home-page .main-nav__game-menu a:focus-visible { outline: 2px solid #ff842f; outline-offset: -3px; }

@media (max-width: 1320px) {
  .home-page .main-nav__game-trigger { font-size: 12px; }
}

@media (max-width: 1080px) {
  .home-page .main-nav__game-switcher { width: 100%; display: block; }
  .home-page .main-nav__game-trigger { width: 100%; min-height: 44px; height: 44px; justify-content: flex-start; font-size: 13px; }
  .home-page .main-nav__game-trigger::after { right: auto; bottom: 4px; left: 0; width: 34px; }
  .home-page .main-nav__game-menu { position: static; width: auto; min-width: 0; margin: 0 0 4px 13px; padding: 3px 0 4px 9px; border-width: 0 0 0 1px; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .home-page .main-nav__game-switcher:not([open]) .main-nav__game-menu { display: none; }
  .home-page .main-nav__game-menu a { min-height: 42px; height: 42px; font-size: 12px; }
}

@media (max-aspect-ratio: 4 / 3) and (min-width: 769px) {
  .home-hero-v3 {
    background-position: center 46%;
  }

  .hero-layout-v4 {
    padding-left: clamp(28px, 6vw, 72px);
    padding-right: clamp(28px, 6vw, 72px);
  }

  .hero-copy-v4 {
    margin-bottom: 28px;
  }

  .hero-features-v4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 1050px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-hero-v3 {
    background-position: 51% center;
  }

  .hero-layout-v4 {
    padding: 70px 18px 20px;
  }

  .hero-copy-v4 {
    margin-bottom: 24px;
  }

  .hero-logo-link-v4 {
    width: min(94%, 620px);
  }

  .hero-features-v4 {
    grid-template-columns: 1fr;
    width: min(100%, 580px);
    margin: 0 auto;
  }

  .hero-feature-v4 {
    min-height: 112px;
  }

  .hero-feature-v4 img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .hero-feature-v4 strong {
    font-size: 18px;
  }

  .hero-feature-v4 small {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .home-page .site-header {
    height: 70px;
    padding: 0 13px;
    column-gap: 8px;
  }

  .home-page .brand-word {
    font-size: 29px;
  }

  .home-page .brand small {
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 2.8px;
  }

  .home-page .nav-toggle {
    top: 70px;
  }

  .home-page .main-nav {
    top: 70px;
  }

  .home-page .header-steam {
    width: 112px;
    height: 42px;
    padding: 0 10px;
    font-size: 10px;
  }

  .home-page .header-profile {
    width: 120px;
    min-width: 100px;
    height: 42px;
  }

  .home-page .header-profile span {
    display: block;
  }

  .home-page .discord-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .home-page .discord-button svg {
    width: 22px;
    height: 22px;
  }

  .home-hero-v3,
  .hero-layout-v4 {
    min-height: calc(100svh - 70px);
  }

  .home-page .header-logout button {
    width: 34px;
    height: 42px;
  }

  .hero-layout-v4 {
    padding-top: 58px;
  }

  .hero-kicker-v4 {
    font-size: 17px;
    letter-spacing: 1.2px;
  }

  .hero-copy-v4 h1 {
    margin-top: 13px;
    font-size: clamp(23px, 7vw, 30px);
  }

  .hero-description-v4 {
    font-size: 14px;
  }

  .hero-play-button {
    width: min(100%, 440px);
  }

  .hero-more-link {
    font-size: 11px;
  }

  .server-operations-v3 {
    height: auto;
    padding: 10px 17px 12px;
    display: block;
  }

  .operation-v3 {
    min-height: 45px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 10px;
    white-space: normal;
  }

  .operation-v3:last-child {
    border-bottom: 0;
  }

  .copy-value-v3 b,
  .discord-operation-v3 b {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 11px;
  }

  .fair-play-v3 {
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }

  .direct-connect-address-v3 {
    font-size: 11px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .home-page .site-header {
    padding-left: 8px;
    padding-right: 8px;
    column-gap: 4px;
  }

  .home-page .brand-logo-image {
    width: 112px;
  }

  .home-page .nav-toggle {
    width: 38px;
    height: 40px;
    padding: 8px;
  }

  .home-page .header-actions {
    gap: 4px;
  }

  .home-page .header-steam {
    width: 72px;
    height: 40px;
    padding: 0 7px;
    gap: 6px;
  }

  .home-page .header-steam svg {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .header-steam-label-full {
    display: none;
  }

  .header-steam-label-short {
    display: inline;
  }

  .home-page .header-profile {
    width: 78px;
    min-width: 78px;
    height: 40px;
    padding: 3px;
    gap: 4px;
  }

  .home-page .header-profile img {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .home-page .header-profile span {
    font-size: 9px;
  }

  .home-page .header-logout button {
    width: 30px;
    height: 40px;
  }

  .home-page .discord-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}

@media (min-aspect-ratio: 2 / 1) {
  .home-hero-v3 {
    background-position: center 49%;
  }
}

@media (min-width: 1081px) {
  .home-page .site-header {
    display: flex;
  }

  .home-page .brand {
    margin-right: auto;
  }

  .home-page .main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .home-page .header-actions {
    margin-left: auto;
  }
}

.home-page .brand-logo-image {
  display: block;
  width: 205px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1320px) {
  .home-page .brand-logo-image { width: 184px; }
}

@media (max-width: 720px) {
  .home-page .brand-logo-image { width: 145px; }
}

@media (max-width: 480px) {
  .home-page .brand-logo-image { width: 112px; }
}
