@import "https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #15131f;
  --surface: #242130;
  --accent: #2fc7d4;
  --accent2: #ff6b5a;
  --gold: #f4b740;
  --text: #e8e7ef;
  --muted: #8a87a0;
  --font-display: "Fredoka", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(1100px 600px at 50% -12%, #2c2742 0%, transparent 60%),
    linear-gradient(180deg, #1b1828, var(--bg));
  color: var(--text);
  overflow-x: hidden;
}

.page {
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  position: relative;
}

.glow {
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  position: fixed;
}

.glow-a {
  background: var(--accent);
  opacity: .28;
  width: 420px;
  height: 420px;
  top: -90px;
  right: -70px;
}

.glow-b {
  background: var(--accent2);
  opacity: .2;
  width: 380px;
  height: 380px;
  bottom: 30px;
  left: -90px;
}

.hero {
  text-align: center;
  margin-bottom: 18px;
}

.mascot {
  object-fit: contain;
  filter: drop-shadow(0 12px 30px #2fc7d466);
  width: 130px;
  height: 130px;
  animation: 4s ease-in-out infinite float;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0)rotate(-2deg);
  }

  50% {
    transform: translateY(-9px)rotate(2deg);
  }
}

.kicker {
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 10px;
  font-size: .74rem;
  font-weight: 600;
}

.wordmark {
  font-family: var(--font-display);
  letter-spacing: .5px;
  color: var(--text);
  margin-top: 8px;
  font-size: clamp(2.4rem, 9vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
}

.wordmark .grad {
  background: linear-gradient(110deg, var(--accent), #7fe0e8 38%, var(--gold));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.tagline {
  color: #cfcde0;
  max-width: 600px;
  margin: 16px auto 0;
  font-size: clamp(1rem, 3.4vw, 1.25rem);
}

.tagline b {
  color: var(--accent2);
}

.hero-cta {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.btn {
  font-family: var(--font-display);
  border-radius: 14px;
  padding: 13px 26px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s, filter .12s;
}

.btn-primary {
  color: #1a1020;
  background: var(--accent2);
  box-shadow: 0 6px #c43e30, 0 10px 24px #ff6b5a59;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 2px #c43e30;
}

.btn-primary.big {
  padding: 16px 34px;
  font-size: 1.15rem;
  animation: 2.4s ease-in-out infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px #c43e30, 0 10px 24px #ff6b5a59;
  }

  50% {
    box-shadow: 0 6px #c43e30, 0 10px 36px #ff6b5a99;
  }
}

.btn-ghost {
  color: var(--text);
  background: none;
  border: 1.5px solid #ffffff38;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.stats {
  background: #ffffff08;
  border: 1px solid #ffffff12;
  border-radius: 18px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 640px;
  margin: 34px auto 0;
  padding: 16px;
  display: flex;
}

.stat {
  flex-direction: column;
  align-items: center;
  padding: 4px 18px;
  display: flex;
}

.stat + .stat {
  border-inline-start: 1px solid #ffffff14;
}

.stat-v {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-l {
  color: var(--muted);
  margin-top: 2px;
  font-size: .8rem;
}

.pitch {
  text-align: center;
  max-width: 760px;
  margin: 56px auto 0;
}

.pitch h2, .games-h, .contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 700;
}

.pitch > p {
  color: #c4c2d6;
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.why {
  text-align: start;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
  display: grid;
}

@media (max-width: 720px) {
  .why {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--surface);
  border: 1px solid #ffffff12;
  border-radius: 18px;
  padding: 22px;
}

.why-emoji {
  font-size: 1.9rem;
}

.why-card h3 {
  font-family: var(--font-display);
  color: var(--accent);
  margin: 8px 0 6px;
  font-size: 1.15rem;
  font-weight: 600;
}

.why-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.games {
  margin-top: 60px;
}

.games-h {
  text-align: center;
  margin-bottom: 22px;
}

.games-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

@media (max-width: 620px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  color: inherit;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  flex-direction: column;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000059;
}

.card:hover {
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  box-shadow: 0 18px 44px #00000080, 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent);
  transform: translateY(-6px);
}

.soon-card {
  cursor: default;
}

.soon-card:hover {
  transform: translateY(-3px);
}

.cover-wrap {
  aspect-ratio: 4 / 3;
  background: #0e0d16;
  position: relative;
  overflow: hidden;
}

.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
  display: block;
}

.card:hover .cover {
  transform: scale(1.06);
}

.soon-card .cover {
  filter: grayscale(.35) brightness(.82);
}

.badge {
  top: 12px;
  font-family: var(--font-display);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 600;
  position: absolute;
  inset-inline-start: 12px;
}

.badge.live {
  color: #06262a;
  background: #2fc7d4eb;
}

.badge.soon {
  color: var(--muted);
  background: #14121ecc;
  border: 1px solid #ffffff26;
}

.card-body {
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 16px 18px 20px;
  display: flex;
}

.card-body h3 {
  font-family: var(--font-display);
  letter-spacing: .4px;
  font-size: 1.5rem;
  font-weight: 700;
}

.card-body p {
  color: var(--muted);
  flex: 1;
  font-size: .92rem;
  line-height: 1.55;
}

.cta {
  font-family: var(--font-display);
  color: #16131f;
  border-radius: 12px;
  align-self: flex-start;
  margin-top: 6px;
  padding: 9px 20px;
  font-size: .95rem;
  font-weight: 600;
  box-shadow: 0 4px #00000059;
}

.cta.ghost {
  color: var(--muted);
  box-shadow: none;
  background: none;
  border: 1px dashed #fff3;
}

.contact {
  text-align: center;
  max-width: 620px;
  margin: 70px auto 0;
}

.contact > p {
  color: var(--muted);
  margin: 10px 0 24px;
  font-size: 1.05rem;
}

.foot {
  text-align: center;
  color: var(--muted);
  margin-top: 56px;
  font-size: .9rem;
}

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