/* Stable layout layer for the public game developer website. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  overflow-x: hidden;
}

body {
  background-position: center top;
  color: #fff;
}

img {
  max-width: 100%;
}

.navbar,
.main-div,
.footer {
  width: min(70%, 1100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  align-items: center;
  min-height: 7rem;
}

.brand-link {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 1.2rem;
}

.brand-link h2 {
  margin: 0;
  color: #fff;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

a.nav-item {
  flex: 0 0 auto;
  line-height: 7rem;
  white-space: nowrap;
}

.footer {
  text-align: center;
}

.bottom-logo h1 {
  color: #fff;
  font-size: 2rem;
}

.nav-bottom {
  align-items: center;
  justify-content: center;
  gap: 1.2rem 2.8rem;
}

.nav-bottom a:not(:last-child) {
  margin-right: 0;
}

.btn,
.btn-submit,
a.schedule-demo-button {
  align-items: center;
  justify-content: center;
  display: inline-flex;
  min-height: 4.6rem;
  width: 15rem;
  border: 1px solid transparent;
  border-radius: 2.4rem;
  padding: 1.2rem 1.8rem;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.boost-button,
.contact-us-button,
a.schedule-demo-button,
.btn-submit {
  background: linear-gradient(90deg, #ae00ff, #6540ff);
  color: #fff;
}

.outline-button {
  align-items: center;
  justify-content: center;
  display: inline-flex;
  min-height: 4.6rem;
  width: 15rem;
  margin: 0;
  border: 1px solid #01f8ff;
  border-radius: 2.4rem;
  padding: 1.2rem 1.8rem;
  color: #01f8ff;
  text-align: center;
}

.btn:hover,
.btn:focus-visible,
.btn-submit:hover,
.btn-submit:focus-visible,
a.schedule-demo-button:hover,
a.schedule-demo-button:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
  box-shadow: 0 0.8rem 2rem rgba(16, 8, 50, 0.3);
  outline: none;
  transform: translateY(-0.2rem);
}

.game-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
  gap: 4rem;
  padding-top: 13rem;
  color: #fff;
}

.game-hero-copy h1 {
  margin: 1.4rem 0 2rem;
  font-size: clamp(3.8rem, 5vw, 6.4rem);
  line-height: 1.08;
  font-family: HelveticaNeue-Medium, Helvetica, Arial, sans-serif;
}

.game-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.8rem;
  line-height: 3rem;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.game-hero-art {
  border-radius: 2.4rem;
  padding: 1.4rem;
  background: rgba(82, 69, 165, 0.5);
  box-shadow: 1rem 1rem 1rem rgba(21, 16, 45, 0.15);
}

.game-hero-art img {
  display: block;
  width: 100%;
  border-radius: 1.6rem;
}

#div-products .section-description,
#div-products .product-page-link {
  text-align: center;
}

#div-products .section-content {
  max-width: 70rem;
}

#div-products .products-card {
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
}

#div-products .card-intro,
#div-products .card-left {
  flex: 1 1 0;
  width: auto;
  max-width: 52rem;
  margin: 0;
}

.game-card .card-img img {
  width: 10rem;
  height: 10rem;
  border-radius: 2rem;
}

#contact-us,
.product-page-link {
  text-align: center;
}

#product {
  width: min(90%, 1100px);
  margin-top: 10rem;
  color: #fff;
  text-align: center;
}

#product .product-summary {
  width: 100%;
  max-width: 1100px;
  padding: 2rem 0 0;
}

.game-page-intro {
  max-width: 92rem;
  margin: 0 auto 4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.6rem;
  line-height: 2.6rem;
  text-align: center;
}

.game-product-list {
  width: 100%;
}

#product .game-product-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  margin: 0 0 3rem;
  padding: 0 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

#product .game-product-section > [class*="col-"] {
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}

#product .game-media-card,
#product .game-copy-card {
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: 0.6rem;
  background: rgba(82, 69, 165, 0.5);
  box-shadow: 1rem 1rem 1rem rgba(21, 16, 45, 0.15);
}

#product .game-media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  text-align: center;
}

#product .game-media-card .icon {
  display: block;
  width: 18rem;
  height: 18rem;
  max-width: 100%;
  border-radius: 2rem;
  object-fit: cover;
}

#product .game-copy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  text-align: center;
}

#product .game-copy-card h3 {
  margin: 0 0 1.8rem;
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
}

#product .game-copy-card p {
  max-width: 62rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
}

#product .store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  margin-top: 2rem;
}

#product .store-links a,
#product .store-links > img {
  display: block;
  flex: 0 0 15rem;
  width: 15rem;
  max-width: 100%;
}

#product .store-links a img,
#product .store-links > img {
  display: block;
  width: 100%;
  height: auto !important;
}

#product .schedule-demo {
  margin-top: 4rem;
  text-align: center;
}

#product .schedule-demo-text {
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

#product a.schedule-demo-button {
  margin: 2rem auto;
}

#our-story,
#jobs,
#page-contact {
  width: min(90%, 1100px);
  margin-left: auto;
  margin-right: auto;
}

#history,
#team,
#jobs .job-intro,
#jobs .job-listing {
  width: 100%;
  max-width: 92rem;
  margin-left: auto;
  margin-right: auto;
}

#our-story .paragraph,
#jobs .paragraph,
#page-contact .contact-us-sentence {
  color: rgba(255, 255, 255, 0.88);
}

#team .cards {
  gap: 1.1rem;
}

#jobs .job-listing p.office,
#jobs .job-item,
#jobs .job-item-details {
  text-align: center;
}

#jobs .job-item-details {
  justify-items: center;
}

#page-contact .location-map {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

#page-contact .office-location {
  width: 100%;
  max-width: 64rem;
}

#page-contact .information p#info-address {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

#page-contact .contact-us {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

#page-contact .contact-us .contact-us-layer {
  padding-left: 0;
  padding-right: 0;
}

#page-contact form {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

#page-contact .form-group {
  text-align: center;
}

#page-contact .form-input {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

#page-contact textarea.form-input {
  min-height: 9rem;
}

#page-contact .btn-submit {
  margin-left: auto;
  margin-right: auto;
}

#jobs.legal-page .job-intro {
  max-width: 92rem;
}

#jobs.legal-page .job-intro p.paragraph {
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .navbar,
  .main-div,
  .footer {
    width: 80%;
  }

  #product,
  #our-story,
  #jobs,
  #page-contact {
    width: 90%;
  }

  .game-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .game-hero {
    grid-template-columns: 1fr;
  }

  .game-hero-art {
    max-width: 70rem;
    margin: 0 auto;
  }

  .brand-link {
    min-width: 0;
  }

  #product .game-product-section {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  }
}

@media screen and (max-width: 767px) {
  .navbar,
  .main-div,
  .footer {
    width: 85%;
  }

  .brand-link h2 {
    font-size: 1.8rem;
  }

  .game-hero {
    gap: 2rem;
    padding-top: 10rem;
  }

  .game-hero-copy h1 {
    font-size: 3.4rem;
  }

  .game-hero-copy p,
  .game-page-intro {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }

  .game-actions {
    justify-content: center;
  }

  #div-products .products-card {
    gap: 1.6rem;
  }

  #div-products .card-intro,
  #div-products .card-left {
    flex-basis: 100%;
  }

  #product {
    width: 90%;
  }

  #product .product-summary {
    padding-top: 1rem;
  }

  #product .game-product-section {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
  }

  #product .game-media-card .icon {
    width: 16rem;
    height: 16rem;
  }

  #product .game-copy-card {
    padding: 2rem 1.6rem;
  }

  #product .game-copy-card h3 {
    font-size: 2.4rem;
  }

  #product .game-copy-card p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  #product .store-links a,
  #product .store-links > img {
    flex-basis: 14rem;
    width: 14rem;
  }

  #team .cards {
    grid-template-columns: 1fr;
  }

  #jobs .job-item-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #jobs .job-item-content {
    min-width: 0;
    padding: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  #jobs .job-item-content span.job-item-label,
  #jobs .job-item-content span.job-item-text {
    display: block;
    width: 100%;
    margin: 0;
    white-space: normal;
  }

  #page-contact .location-map,
  #page-contact .contact-us {
    width: 90%;
  }

  #page-contact .location-map {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-bottom {
    gap: 1rem 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  .navbar,
  .main-div,
  .footer {
    width: 85%;
  }

  .brand-link h2 {
    font-size: 1.7rem;
  }

  #product p.product-title {
    font-size: 1.8rem;
  }

  #jobs .job-item-title {
    font-size: 1.5rem;
  }

  #page-contact .location-map,
  #page-contact .contact-us {
    width: 100%;
  }
}
