* {
  box-sizing: border-box;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}



@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

html,
body {
  background-color: #000 !important;
}

a {
  color: #fff;
  -webkit-text-decoration: underline #fff;
  text-decoration: underline #fff;
}

.body-home {
  color: #fff;
  background-color: #000;
  background-image: url('../images/bg.webp');
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-attachment: fixed;
  font-family: IBM Plex Mono, sans-serif;
  height: 100vh;
  overflow: hidden;
  /* Disable body scroll */
}

.page-content-wrap {
  position: absolute;
  bottom: 0;
  /* Extends all the way to the bottom so footer overlaps it and blurs it */
  left: 0;
  right: 0;
  overflow-y: auto;
  /* Enable contained scroll */
  overflow-x: hidden;
  padding: 0px 40px 100px 40px;
  /* Top padding removed, gap handled by window margin */
  width: 100%;
  display: block;
}



.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.command-menu-wrap {
  z-index: 999;
  aspect-ratio: auto;
  background-color: #0000;
  border-bottom: 1px #fff;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 28px;
  margin: 0 0 0 auto;
  display: flex;
  position: sticky;
  top: 12px;
}

.command-menu-inner {
  text-align: left;
  text-shadow: 0 1px 2px #000000f2;
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 4px auto 0;
  padding: 0;
  font-weight: 500;
  line-height: 18px;
  display: block;
}

.home-info-window {
  border: 1px solid #fff;
  border-radius: 0;
  width: 100%;
  max-width: 720px;
  height: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 10px var(--terminal-glow);
}



.window-body {
  background-color: #0000;
  background-image: linear-gradient(#0003, #0003);
  width: 100%;
  height: 100%;
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.text-window-body {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 13px;
}

.home-divider {
  margin-bottom: 16px;
  font-size: 13px;
}

.underdog-logo {
  width: 100px;
  position: absolute;
  inset: 0 0 auto auto;
}

/* Main Header Styles */
.main-header,
.main-footer {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
  position: fixed;
  left: 0;
}

.main-header {
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer {
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  flex: 1;
}

.footer-links {
  font-size: 11px;
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.footer-link:hover {
  color: var(--color-amber) !important;
  border-bottom-color: var(--color-amber) !important;
}

.footer-social {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.footer-social img {
  image-rendering: pixelated;
  transition: all 0.2s ease;
}

.header-nav {
  display: flex;
  gap: 60px;
}

.nav-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.nav-link span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.header-logo {
  display: block;
  border: none;
  text-decoration: none;
}



@media screen and (max-width: 767px) {
  .main-header {
    padding: 15px 20px;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .header-nav {
    gap: 20px;
  }

  .header-logo img {
    width: 50px;
    height: auto;
  }

  .nav-link img {
    width: 36px !important;
    height: auto !important;
  }
}



.home-windows-wrap {
  width: 100%;
  max-width: 1200px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-window {
  border: 1px solid #fff;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-top: 20px;
  /* margin for header to window */
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 10px var(--terminal-glow);
  position: relative;
  overflow: hidden;
}

.home-window.studio-team-window {
  width: 100%;
  max-width: 720px;
}

.window-title-bar {
  background-color: #fff;
  width: 100%;
  height: 22px;
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
}

.home-sys-window {
  border: 1px solid #fff;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-top: 60px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 10px var(--terminal-glow);
}

@keyframes flicker {
  0% {
    opacity: 0.99;
  }

  10% {
    opacity: 0.98;
  }

  100% {
    opacity: 0.99;
  }
}

.home-window-body {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  width: 100%;
  height: auto;
  padding: 14px;
  overflow: visible;
  animation: flicker 0.2s infinite;
  position: relative;
}

.home-window-body::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

/* Bring images and video above the scanline overlay */
.home-window-body img,
.home-window-body video,
.video-iframe-container {
  position: relative;
  z-index: 3;
}

.bg-overlay-wrap {
  background-color: #000;
  background-image: url('../images/bg.webp');
  background-position: 0%;
  background-size: auto;
  width: 100%;
}

.home-section {
  clear: none;
  object-fit: fill;
  width: 100%;
  margin-top: 0;
  position: relative;
}

/* Removed duplicate page-content-wrap definition that was causing centered scrollbars */

.command_menu_text {
  background-image: linear-gradient(#00000094, #00000094);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.command-menu-links {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-window-title {
  font-size: 30px;
}

.text-command-link {
  text-decoration: underline;
}

.window-divider-line {
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
}

.window-controls {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  display: flex;
  position: absolute;
  top: 3px;
  right: 0;
  padding-right: 4px;
}

.win-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 18px !important;
  height: 14px !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 18px !important;
  line-height: 1;
  transition: all 0.2s ease;
}

.win-btn:hover {
  background-color: #000;
  color: var(--color-amber);
  border-color: #000;
}

.win-btn-close:hover {
  background-color: #000;
  color: var(--color-amber);
  border-color: #000;
}

.window-maximized {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  z-index: 9999 !important;
  margin: 0 !important;
  border: none !important;
}

.window-maximized .home-window-body {
  height: calc(100vh - 26px) !important;
  max-height: none !important;
  overflow-y: auto;
}

/* Video window maximize: fill screen with letterboxed 16:9 video */
.window-maximized.video-window .video-window-body {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.window-maximized.video-window .video-iframe-container {
  width: min(100vw, calc((100vh - 26px) * 16 / 9)) !important;
  height: min(calc(100vw * 9 / 16), calc(100vh - 26px)) !important;
  aspect-ratio: auto !important;
  position: relative !important;
}

.sys-dialog {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 640px !important;
  width: 90% !important;
  z-index: 2000 !important;
  border-width: 1px;
}

.sys-dialog .home-window-body {
  background: #fff !important;
  color: #000 !important;
  padding: 15px 30px 10px 30px !important;
  text-align: center;
  border: none !important;
}

/* Retro Opening Animation */

/* Retro Opening Animation */
.window-opening-outline {
  position: absolute;
  border: 1px solid #fff;
  background: transparent;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px var(--terminal-glow);
  display: none;
}

@keyframes win95-open {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }

  80% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.05);
    opacity: 0;
  }
}

.window-hidden {
  opacity: 0;
  pointer-events: none;
}

.window-visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.1s ease-out;
}

/* Desktop & Taskbar */
.desktop-icons-wrap {
  position: absolute;
  top: 40px;
  /* ofsets the icon positions from the header */
  left: 20px;
  width: 600px;
  height: 600px;
  z-index: 5;
}

.desktop-icon {
  position: absolute;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.nfo-icon {
  top: 20px;
  left: -10px;
}

.roster-icon {
  top: 130px;
  left: -10px;
}

.contact-icon {
  top: 240px;
  left: -10px;
}

.games-icon {
  top: 70px;
  left: 240px;
}

.video-icon {
  top: 180px;
  left: 190px;
}

.press-icon {
  top: 290px;
  left: 280px;
}

.dungeon-icon {
  top: 430px;
  left: -10px;
}

.desktop-icon.is-dragging {
  transition: none !important;
}

.desktop-icon:hover {
  /* Removed scale to preserve pixel art */
}

.desktop-icon:hover img {
  filter: sepia(1) saturate(15) hue-rotate(-35deg) brightness(1);
}

.desktop-icon:hover span {
  color: var(--color-amber) !important;
}

.desktop-icon span {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 2px #000;
  letter-spacing: 0.05em;
}


.taskbar {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  display: flex;
  gap: 10px;
  pointer-events: none;
  z-index: 10000;
}

.taskbar-item {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #fff;
  color: #fff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

.taskbar-item:hover {
  border-color: var(--color-amber);
  color: var(--color-amber);
}

.taskbar-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-amber);
  display: block;
}

.home-gallery-controls {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.game-counter {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  display: block;
}

.zs2-image-1 {
  width: 100%;
  display: inline-block;
  overflow: visible;
}

.div-block-17 {
  background-color: #000;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.home-anchor-offset {
  width: 100%;
  height: 60px;
}

.home-anchor-offset.bottom-offset {
  margin-bottom: 0;
  padding-top: 200px;
}

.studio-team-grid {
  grid-column-gap: 12px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 767px) {
  .studio-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-image-frame .team-image {
  object-fit: contain;
  width: auto;
  height: auto;
  max-height: 100%;
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  position: absolute;
  top: 0;
  left: 0;
}

.team-image-frame .team-image-hover {
  opacity: 0;
}

.team-image-frame:hover .team-image-hover {
  opacity: 1;
}

.team-name {
  margin-top: 8px;
}

.team-role {
  margin-bottom: 8px;
}

.team-meta {
  margin-bottom: 2px;
  font-size: 13px;
}

.slide-nav {
  display: none;
}

.left-arrow {
  object-fit: fill;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -32px;
  left: 0;
}

.text-window-link {
  color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 700;
}

.team-image-frame {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 128px;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
}

/* Remove CRT effects from Team Roster */
.studio-team-window .home-window-body {
  animation: none !important;
}

.studio-team-window .home-window-body::before {
  display: none !important;
}

.footer-window {
  border: 1px solid #fff;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 10px var(--terminal-glow);
}

.footer-window.footer {
  margin-top: 60px;
  margin-bottom: 30px;
}

.window-control-icon {
  width: auto;
  height: 100%;
}

.press-bg-overlay-wrap {
  background-color: #000;
  background-image: url('../images/bg.webp');
  background-position: 0%;
  background-size: auto;
  width: 100%;
}

.press-factsheet-wrap {
  width: 100%;
  max-width: 1200px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.press-project-links {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.press-fact-sheet-gridbox {
  color: #fff;
  text-align: left;
  font-family: IBM Plex Mono, sans-serif;
}

.press-screenshot-box {
  background-color: gray;
  width: 100%;
  height: 120px;
}

.press-project-link {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 6px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  display: flex;
}

.press-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.press-section-line {
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: linear-gradient(#00000080, #00000080);
  background-clip: border-box;
  width: 100%;
  height: 1px;
  margin-bottom: 12px;
}

.press-project-wrap {
  width: 100%;
  max-width: 1200px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.press-factsheet-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
}

.press-section-title {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 42px;
  line-height: 1.1em;
}

.press-intro-copy {
  flex: none;
  width: auto;
  max-width: 760px;
}

.press-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.press-keyart-box {
  background-color: gray;
  width: 100%;
  height: 500px;
  margin-top: 32px;
  margin-bottom: 20px;
}

.press-overview-section {
  clear: none;
  object-fit: fill;
  width: 100%;
  margin-top: 50px;
  position: relative;
}

.press-factsheet-left {
  display: block;
}

.press-overview-wrap {
  width: 100%;
  max-width: 1200px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  position: relative;
}

.press-quote {
  color: #fff;
  letter-spacing: .3em;
  margin-top: 36px;
  margin-bottom: 36px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5em;
}

.press-factsheet-divider {
  background-color: #fff;
  background-image: linear-gradient(#00000080, #00000080);
  width: 1px;
  height: 100%;
  min-height: 220px;
}

.press-anchor-offsets {
  width: 100%;
  height: 60px;
}

.press-anchor-offsets.bottom-offset {
  margin-bottom: 0;
  padding-top: 200px;
}

.press-command-menu-inner {
  text-align: left;
  text-shadow: 0 1px 2px #000000f2;
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  width: auto;
  max-width: 640px;
  height: auto;
  margin: 4px auto 0;
  padding: 0;
  font-weight: 500;
  line-height: 18px;
  display: block;
}

.press-body-text {
  color: #fff;
  margin-bottom: 16px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 18px;
  line-height: 1.6em;
}

.press-intro-window {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 0 solid #fff;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 50px;
  margin-left: 0;
  display: block;
}

.press-headings {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.press-keyart-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
}

.press-factsheet-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 14px;
  display: grid;
}

.press-command-menu-links {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.press-command-menu-wrap {
  z-index: 999;
  aspect-ratio: auto;
  background-color: #0000;
  border-bottom: 1px #fff;
  flex-flow: row;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: auto;
  min-height: 28px;
  margin: 0 auto;
  display: flex;
  position: sticky;
  top: 12px;
}

.press-logo-box {
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 180px;
  height: auto;
  margin-left: 0;
  display: inline-flex;
}

.press-command_menu_text {
  background-image: linear-gradient(#00000094, #00000094);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.body {
  background-color: #000;
}

.paragraph {
  color: #fff;
  font-family: IBM Plex Mono, sans-serif;
}

.press-intro-top-row {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 24px;
  margin-bottom: 32px;
  padding-right: 100px;
  display: flex;
}

.press-headings-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  font-size: 12px;
  display: flex;
}

.press-section-title-2 {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 48px;
  margin-bottom: 20px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 36px;
  line-height: 1.1em;
}

.paragraph-2 {
  color: #fff;
  font-family: IBM Plex Mono, sans-serif;
}

.list {
  color: #fff;
  font-family: IBM Plex Mono, sans-serif;
  line-height: 25px;
  list-style-type: square;
}

.press-description-body {
  color: #fff;
  margin-top: 24px;
  font-family: IBM Plex Mono, sans-serif;
}

.press-description-text {
  color: #fff;
  margin-top: 12px;
  font-family: IBM Plex Mono, sans-serif;
}

.fact-label {
  color: #fff;
  font-family: IBM Plex Mono, sans-serif;
}

.fact-value {
  color: #fff;
  margin-bottom: 12px;
  font-family: IBM Plex Mono, sans-serif;
}

.press-project-row {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.press-project-title {
  color: #fff;
  margin-bottom: 6px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 18px;
}

.press_project_text_wrap {
  display: block;
}

.press-project-status {
  color: #fff;
  font-family: IBM Plex Mono, sans-serif;
}

.press-project-link-copy {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 6px;
  font-family: IBM Plex Mono, sans-serif;
  font-size: 16px;
  display: flex;
}

.div-block-18 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.team-text {
  margin-bottom: 28px;
}

.div-block-19 {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  min-height: 300px;
  margin-top: 32px;
  padding: 20px 80px;
  display: flex;
}

.div-block-20 {
  width: 440px;
  height: auto;
  display: flex;
}

.image {
  width: auto;
  height: auto;
}

.div-block-21 {
  width: 260px;
  height: auto;
}

.image-2 {
  width: auto;
  height: auto;
  max-height: 240px;
}

.text-video-link {
  color: #fff;
  margin-top: 12px;
  margin-bottom: 12px;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 700;
}

.youtube {
  display: block;
}

.press-logos-box {
  background-color: gray;
  width: 220px;
  height: 120px;
}

.press-logos-box-copy {
  background-color: gray;
  width: 280px;
  height: 120px;
}

.text-block {
  color: red;
  font-family: Droid Sans, sans-serif;
}

.div-block-22 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.zs2-image-2,
.zs2-image-3 {
  width: 100%;
  display: none;
  overflow: visible;
}

.game1-image-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .command-menu-wrap {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
    display: flex;
    min-height: 56px;
    padding-top: 8px;
  }

  .command-menu-inner {
    text-shadow: none;
    margin-top: 8px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .home-info-window {
    width: 100%;
    margin-top: 50px;
  }

  .underdog-logo {
    opacity: 1;
    width: 56px;
    margin-top: 8px;
    top: 24px;
    right: 16px;
    display: none;
  }

  .home-windows-wrap {
    width: 92vw;
  }

  .home-window,
  .home-sys-window {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }

  .home-window-body {
    height: auto;
    padding-bottom: 8px;
  }

  .command_menu_text {
    display: inline-flex;
  }

  .footer-window {
    width: 100%;
    margin-top: 50px;
  }

  .press-overview-wrap {
    width: 92vw;
    padding: 0;
  }

  .press-command-menu-inner {
    text-shadow: none;
    margin-top: 8px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .press-intro-window {
    width: 100%;
    margin-top: 50px;
  }

  .press-command-menu-wrap {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
    display: flex;
    min-height: 56px;
    padding-top: 8px;
  }

  .press-command_menu_text {
    display: inline-flex;
  }

  .window-body {
    height: auto;
  }

  .text-window-body {
    line-height: 18px;
  }

  .home-section {
    margin-top: 32px;
  }

  .command-menu-links {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: wrap;
    width: 100%;
    font-size: 11px;
    display: flex;
  }

  .text-window-title {
    line-height: 30px;
  }

  .press-project-links {
    flex-flow: wrap;
    overflow: visible;
  }

  .press-factsheet-content {
    flex-flow: column;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .press-section-title {
    letter-spacing: .02em;
    font-size: 24px;
    line-height: 1.2em;
  }

  .press-overview-section {
    margin-top: 32px;
  }

  .press-quote {
    width: 100%;
    font-size: 16px;
  }

  .press-factsheet-divider {
    display: none;
  }

  .press-body-text {
    width: 100%;
    font-size: 16px;
  }

  .press-headings {
    width: 100%;
  }

  .press-factsheet-row {
    grid-template-columns: 150px 1fr;
  }

  .press-command-menu-links {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-flow: wrap;
    width: 100%;
    font-size: 11px;
    display: flex;
  }

  .press-intro-top-row {
    flex-flow: column;
    padding-right: 0;
  }

  .press-section-title-2 {
    font-size: 22px;
  }

  .div-block-19 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    align-items: flex-start;
    min-height: auto;
  }

  .div-block-20,
  .div-block-21 {
    width: 100%;
  }

  .div-block-23 {
    text-align: left;
    flex: 0 auto;
    order: 9999;
    align-self: auto;
    display: block;
  }
}


/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  color: var(--color-amber);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input,
.form-textarea {
  background: rgba(255, 176, 0, 0.05);
  border: 1px solid rgba(255, 176, 0, 0.3);
  color: #fff;
  padding: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-amber);
  background: rgba(255, 176, 0, 0.1);
  box-shadow: 0 0 10px rgba(255, 176, 0, 0.2);
}

.submit-button {
  background: var(--color-amber);
  color: #000;
  border: none;
  padding: 15px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-button:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--terminal-glow);
}

.terminal-status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.status-line {
  margin-bottom: 4px;
}

.status-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--color-amber);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

/* Dungeon Game Styles */
.dungeon-text {
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--color-amber);
  text-shadow: 0 0 8px rgba(255, 176, 0, 0.4);
  text-transform: uppercase;
}

.dungeon-quote {
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
  border-left: 2px solid var(--color-amber);
  padding-left: 20px;
}

.terminal-output {
  margin-bottom: 40px;
}

.terminal-input-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

#command-input {
  background: transparent;
  border: none;
  color: var(--color-amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  outline: none;
  width: 100%;
  text-transform: uppercase;
}

.cursor {
  width: 10px;
  height: 18px;
  background: var(--color-amber);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.history-entry {
  margin-bottom: 15px;
}

.history-command {
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}

.ascii-art {
  font-family: monospace;
  line-height: 1.1;
  color: var(--color-amber);
  font-size: 8px;
  overflow-x: auto;
  white-space: pre;
  text-shadow: 0 0 10px rgba(255, 176, 0, 0.3);
  margin: 20px 0;
}