/* [project]/web/src/components/posts/post-card-layout.module.css [app-client] (css) */
.post-card-layout-module__ZqPNPG__card {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 22px -16px #1a161480;
}

@media (prefers-reduced-motion: no-preference) {
  .post-card-layout-module__ZqPNPG__card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -18px #1a161499;
  }
}

.post-card-layout-module__ZqPNPG__cover {
  aspect-ratio: 3 / 2;
  background-color: var(--bg-subtle);
  display: block;
  overflow: hidden;
}

.post-card-layout-module__ZqPNPG__coverImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .post-card-layout-module__ZqPNPG__card:hover .post-card-layout-module__ZqPNPG__coverImage {
    transform: scale(1.03);
  }
}

.post-card-layout-module__ZqPNPG__coverPlaceholder {
  width: 100%;
  height: 100%;
  color: var(--text-dim);
  justify-content: center;
  align-items: center;
  display: flex;
}

.post-card-layout-module__ZqPNPG__body {
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__chips {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__category {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.post-card-layout-module__ZqPNPG__featured {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.post-card-layout-module__ZqPNPG__title {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
  text-decoration: none;
  transition: color .15s;
}

.post-card-layout-module__ZqPNPG__title:hover {
  color: var(--accent);
}

.post-card-layout-module__ZqPNPG__tagline {
  font-family: var(--font-prose);
  color: var(--text-muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.post-card-layout-module__ZqPNPG__meta {
  color: var(--text-muted);
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 13px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__author {
  color: var(--text);
  font-weight: 600;
}

.post-card-layout-module__ZqPNPG__dot {
  color: var(--text-dim);
}

.post-card-layout-module__ZqPNPG__tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__tag {
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 2px 10px;
  font-size: 12px;
  display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
  .post-card-layout-module__ZqPNPG__card {
    animation: .45s cubic-bezier(.22, 1, .36, 1) both post-card-layout-module__ZqPNPG__card-rise;
  }

  .post-card-layout-module__ZqPNPG__card:first-child {
    animation-delay: 20ms;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(3) {
    animation-delay: .1s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(4) {
    animation-delay: .14s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(5) {
    animation-delay: .18s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(6) {
    animation-delay: .22s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(n+7) {
    animation-delay: .26s;
  }

  @keyframes post-card-layout-module__ZqPNPG__card-rise {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* [project]/web/src/components/posts/post-card-skeleton.module.css [app-client] (css) */
.post-card-skeleton-module__yoa3oG__cover {
  aspect-ratio: 3 / 2;
  border-radius: 0;
}

.post-card-skeleton-module__yoa3oG__title {
  width: 70%;
  height: 20px;
}

.post-card-skeleton-module__yoa3oG__tagline {
  width: 90%;
  height: 15px;
  margin-top: 2px;
}

.post-card-skeleton-module__yoa3oG__meta {
  width: 40%;
  height: 13px;
  margin-top: 4px;
}

/* [project]/web/src/components/posts/paginated-post-grid.module.css [app-client] (css) */
.paginated-post-grid-module__OaHpnq__loadMore {
  justify-content: center;
  padding: 32px 0;
  display: flex;
}

/* [project]/web/src/components/featured-games/featured-games.module.css [app-client] (css) */
.featured-games-module__kaujsq__section {
  padding: 16px 24px 24px;
}

.featured-games-module__kaujsq__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.featured-games-module__kaujsq__headingRow {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 20px;
  display: flex;
}

.featured-games-module__kaujsq__heading {
  font-family: var(--font-display);
  letter-spacing: -.015em;
  font-size: 26px;
  font-weight: 600;
}

.featured-games-module__kaujsq__browseAll {
  color: var(--text-link);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

.featured-games-module__kaujsq__browseAll:hover {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.featured-games-module__kaujsq__grid {
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 22px;
  display: grid;
}

@media (max-width: 768px) {
  .featured-games-module__kaujsq__heading {
    font-size: 22px;
  }
}

/* [project]/web/src/app/home.module.css [app-client] (css) */
.home-module__F6jZ2q__hero {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 56px 24px 36px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-module__F6jZ2q__heroGlow {
  background: radial-gradient(ellipse 90% 100% at 50% -30%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.home-module__F6jZ2q__heroTitle {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  max-width: 680px;
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  position: relative;
}

.home-module__F6jZ2q__heroAmp {
  color: var(--accent);
}

.home-module__F6jZ2q__heroSub {
  font-family: var(--font-prose);
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 16px;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  position: relative;
}

.home-module__F6jZ2q__heroCtas {
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  display: flex;
  position: relative;
}

.home-module__F6jZ2q__ctaPrimary {
  background: var(--accent);
  min-width: 170px;
  color: var(--text-on-accent);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 13px 34px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
}

.home-module__F6jZ2q__ctaPrimary:hover {
  background: var(--accent-hover);
}

.home-module__F6jZ2q__ctaSecondary {
  border: 1px solid var(--border);
  min-width: 170px;
  color: var(--text);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 13px 34px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
}

.home-module__F6jZ2q__ctaSecondary:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
}

.home-module__F6jZ2q__ctaLink {
  color: var(--text-muted);
  text-underline-offset: 3px;
  font-size: 15px;
  font-weight: 500;
}

.home-module__F6jZ2q__ctaLink:hover {
  color: var(--text);
  text-decoration: underline;
}

.home-module__F6jZ2q__pitch {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 72px 24px 64px;
  display: flex;
}

.home-module__F6jZ2q__pitchTitle {
  font-family: var(--font-display);
  letter-spacing: -.015em;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.home-module__F6jZ2q__pitchBody {
  font-family: var(--font-prose);
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
}

.home-module__F6jZ2q__pitchCta {
  margin-top: 26px;
}

.home-module__F6jZ2q__footer {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding: 48px 24px;
}

.home-module__F6jZ2q__footerInner {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}

.home-module__F6jZ2q__footerBrand {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.home-module__F6jZ2q__footerBrandAccent {
  color: var(--accent);
}

.home-module__F6jZ2q__footerLinks {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-size: 14px;
  display: flex;
}

.home-module__F6jZ2q__footerLinks a {
  color: var(--text-muted);
}

.home-module__F6jZ2q__footerLinks a:hover {
  color: var(--text-link);
}

.home-module__F6jZ2q__footerNotice, .home-module__F6jZ2q__footerCopy {
  color: var(--text-dim);
  font-size: 13px;
}

@media (max-width: 768px) {
  .home-module__F6jZ2q__hero {
    padding: 40px 20px 28px;
  }

  .home-module__F6jZ2q__heroSub {
    font-size: 17px;
  }

  .home-module__F6jZ2q__heroCtas {
    flex-direction: column;
    gap: 16px;
  }

  .home-module__F6jZ2q__pitch {
    padding: 56px 20px 48px;
  }

  .home-module__F6jZ2q__pitchTitle {
    font-size: 25px;
  }
}

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