/* Page-specific tweaks (keep minimal; most styling is via utility classes) */
@font-face{
  font-family: "VW Heavy";
  src: url("../fonts/vw-heavy.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.brand-badge{
  display: flex;
  align-items: top;
  justify-content: flex-start;
  gap: 1.5rem;
  width: fit-content;
  max-width: 100%;
}

.brand-badge-row{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.brand-logo{
  height: 125px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text{
  font-family: "VW Heavy", sans-serif;
  font-size: 2.5rem;
  color: #69a710;
  -webkit-text-stroke: 2px #003800;
  paint-order: stroke fill;
  line-height: 1;
}

.store-icon{
  height: 60px;
  width: 200px;
}

.store-icons{
  align-items: flex-start !important;
}

.hero-bg{
  position: relative;
  overflow: hidden;
}

.hero-bg--tall{
  min-height: 30rem;
}

.hero-bg--tall .hero-bg-image{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.hero-bg-image{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: auto !important;
  height: auto !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  max-height: none !important;
  z-index: 0;
}

@media(max-width:1671px){
  .hero-bg-image{
    left: 0;
    transform: none;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media(min-width:1670px){
  .hero-container{
    padding-top: 2.25rem !important;
    padding-bottom: 2.75rem !important;
  }

  .hero-bg-image{
    left: 0;
    transform: none;
    width: 100% !important;
    height: auto !important;
    min-width: 0;
    min-height: 0;
  }
}

.hero-bg > .container{
  position: relative;
  z-index: 1;
}

.hero-banner,
.hero-banner-legal,
.hero-banner-detail {
  position: relative;
  z-index: 1;
  display: inline-block;
  --pad-x: 1.5rem;
  --fade-solid-stop: 84%;
  --fade-end-stop: 100%;
  background: linear-gradient(
    90deg,
    rgba(223,229,234,0.65) 0%,
    rgba(223,229,234,0.65) var(--fade-solid-stop),
    rgba(223,229,234,0) var(--fade-end-stop)
  );
  background-size: 100% 100%;
  background-position: left top;
  background-repeat: no-repeat;
  border: 0;
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-top: 1rem;
  padding-right: 6rem;
  padding-bottom: 1.5rem;
  padding-left: var(--pad-x);
}

.hero-banner-legal{
  width: 70ch;
  padding-bottom: 2.2rem;
}

.hero-banner-detail{
  width: 80ch;
  --fade-solid-stop: 88%;
  padding-bottom: 2.2rem;
}

.hero-banner h1,
.hero-banner .text-lg,
.hero-banner-legal h1,
.hero-banner-legal .text-lg{
  white-space: nowrap;
}

.text-silver{
  color: #2F2F2F;
}

.text-stroke-red{
  color: #ffffff;
  /*-webkit-text-stroke: 1px #D6453B;*/
}

.text-hero-yellow{
  color: #010300;
}

.card-bg {
  background: rgba(255,255,255,.04);
}

.game-card{
  width: fit-content;
  margin-left: 0;
  margin-right: 0;
  justify-self: start;
  display: inline-block;
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.game-grid{
  justify-content: start;
  justify-items: start;
  align-items: start;
}

@media (max-width: 767px){
  .store-icons{
    flex-direction: column;
  }
}

.store-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}

.store-icons-grid .store-icon {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .store-icons-grid {
    display: flex;
    gap: 1rem;
  }

  .store-icons-grid .store-icon {
    width: 200px;
    height: 60px;
  }
}
