/* This page's rem values are calibrated on library.css's html { font-size: 10px }.
   Re-assert it explicitly: navigation is AJAX (manajax) and page CSS is never unloaded,
   so welcome.css's html { font-size: 16px } lingers when arriving from the homepage and
   would render every rem ~1.6x too large ("zoomed"). Declaring the base here (the injected
   <link> lands later in the DOM than the head <link>s) keeps play sized correctly regardless
   of which page it was reached from. */
html {
  font-size: 10px;
}

#play_page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   HERO
   ============================================================ */
.play-hero {
  position: relative;
  flex: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.play-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/homepage/hero_bg.png") center top/cover no-repeat;
  transform: scale(1.03);
}
.play-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.55) 0%, rgba(10, 14, 20, 0.72) 60%, #1e2934 100%);
}
.play-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  width: 100%;
  padding: 80px 2rem 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.play-hero__title {
  font-family: ElanITCStdBold, serif;
  font-size: clamp(3rem, 7.5vw, 4.8rem);
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
}
.play-hero__lead {
  font-family: UbuntuLight, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 1.725rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 600px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.play-hero__desc {
  margin-bottom: 2rem;
}
.play-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: UbuntuLight, sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  text-align: center;
}
.play-hero__features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(10, 14, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 1.5rem 3.75rem;
  margin-bottom: 2.25rem;
}
.play-hero__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-family: UbuntuLight, sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  text-align: center;
  padding: 0.45rem 1.5rem;
}
.play-hero__feature-icon {
  font-size: 2.1rem;
  color: #09829c;
}
.play-hero__sep {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.play-hero__download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: ElanITCStdBold, serif;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: #09829c;
  padding: 1.65rem 5.25rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
.play-hero__download:hover {
  background: #0ba8c6;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}
.play-hero__retry {
  font-family: UbuntuLight, sans-serif;
  font-size: 1.275rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.play-hero__retry a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}
.play-hero__retry a:hover {
  color: #ffffff;
}
@media (max-width: 640px) {
  .play-hero__features {
    border-radius: 12px;
    padding: 0.75rem 1rem;
  }
  .play-hero__feature {
    padding: 0.25rem 0.5rem;
    font-size: 0.82rem;
  }
  .play-hero__sep {
    display: none;
  }
}

/* ============================================================
   EXPANSION LOGOS
   ============================================================ */
.play-expacs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 2rem 2rem 3rem;
  background: #1e2934;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.play-expacs__img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.play-expacs__img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/*# sourceMappingURL=play.css.map */
