/* [project]/styles/Home.module.css [client] (css) */
.Home-module__g21JLG__container {
  margin: 4rem 1.5rem 2rem;
}

@media (min-width: 1024px) {
  .Home-module__g21JLG__container {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

@media (min-width: 1280px) {
  .Home-module__g21JLG__container {
    margin-left: 6rem;
    margin-right: 6rem;
  }
}

@media (min-width: 1536px) {
  .Home-module__g21JLG__container {
    margin-left: 12rem;
    margin-right: 12rem;
  }
}

.Home-module__g21JLG__container {
  max-width: 1200px;
  margin: 0 auto;
}

.Home-module__g21JLG__title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: bold;
}

.Home-module__g21JLG__description {
  text-align: center;
  color: #4a5568;
  max-width: 800px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.Home-module__g21JLG__link {
  color: #6b46c1;
  font-weight: 500;
  text-decoration: none;
}

.Home-module__g21JLG__link:hover {
  text-decoration: underline;
}

.Home-module__g21JLG__sectionHeader {
  align-items: center;
  margin-bottom: 3rem;
  padding-right: 120px;
  display: flex;
  position: relative;
}

.Home-module__g21JLG__sectionTitle {
  color: #1a1a1a;
  white-space: nowrap;
  z-index: 2;
  background: #fff;
  margin-right: 1rem;
  padding-right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}

.Home-module__g21JLG__sectionLine {
  flex-grow: 1;
  height: 2px;
  position: relative;
}

.Home-module__g21JLG__sectionLine:before {
  content: "";
  background: linear-gradient(to right, #6b46c1 0%, #805ad5 80%, #0000 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 120px;
}

.Home-module__g21JLG__gameList {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
  display: grid;
}

.Home-module__g21JLG__gameCard {
  background: #fff;
  border-radius: .75rem;
  flex-direction: column;
  height: 100%;
  transition: all .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 6px #0000001a;
}

.Home-module__g21JLG__gameCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px #6b46c133;
}

.Home-module__g21JLG__imageWrapper {
  background: #f3f4f6;
  width: 100%;
  padding-top: 133.33%;
  position: relative;
  overflow: hidden;
}

.Home-module__g21JLG__gameImage {
  object-fit: cover;
  transition: transform .3s;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
}

.Home-module__g21JLG__placeholderImage {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #6b46c1 0%, #805ad5 100%);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.Home-module__g21JLG__placeholderContent {
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.Home-module__g21JLG__gameTitle {
  color: #1a1a1a;
  text-align: center;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  padding: 1.25rem 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
}

.Home-module__g21JLG__gameDetails {
  text-align: center;
  background: linear-gradient(#0000, #6b46c10d);
  border-top: 1px solid #6b46c11a;
  padding: .75rem 1rem 1.25rem;
}

.Home-module__g21JLG__startingAt {
  color: #718096;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
  font-size: .875rem;
  display: block;
}

.Home-module__g21JLG__price {
  color: #6b46c1;
  font-size: 1.375rem;
  font-weight: 700;
  display: block;
}

@media (max-width: 1024px) {
  .Home-module__g21JLG__gameList {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
  }

  .Home-module__g21JLG__sectionHeader {
    padding-right: 80px;
  }

  .Home-module__g21JLG__sectionLine:before {
    right: 80px;
  }

  .Home-module__g21JLG__sectionLine:after {
    width: 80px;
  }
}

@media (max-width: 640px) {
  .Home-module__g21JLG__container {
    padding: 1rem;
  }

  .Home-module__g21JLG__gameList {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .Home-module__g21JLG__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }

  .Home-module__g21JLG__gameTitle {
    min-height: 60px;
    padding: 1rem;
    font-size: 1rem;
  }

  .Home-module__g21JLG__price {
    font-size: 1.25rem;
  }

  .Home-module__g21JLG__description {
    margin-bottom: 2rem;
  }

  .Home-module__g21JLG__sectionHeader {
    margin-bottom: 2rem;
    padding-right: 60px;
  }

  .Home-module__g21JLG__sectionLine:before {
    right: 60px;
  }

  .Home-module__g21JLG__sectionLine:after {
    width: 60px;
  }
}

/* [project]/styles/SubHero.module.css [client] (css) */
.SubHero-module__uNxGeW__grid_item_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.SubHero-module__uNxGeW__grid_item_title {
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(98 33 204 / var(--tw-text-opacity, 1));
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .SubHero-module__uNxGeW__grid_item_title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/*# sourceMappingURL=styles_2562a5b7._.css.map*/