.page_main__ibFHK {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 6rem;
  min-height: 100vh;
  font-family: monospace;
}

.page_timer__QaYFA {
  white-space: nowrap;
}

.page_button__unFcb {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid black;
  cursor: pointer;
  font-family: monospace;
  transition: transform 0.1s;
}

.page_button__unFcb:hover {
  transform: translateY(-1px);
}

.page_button__unFcb:active {
  transform: translateY(1px);
}

.page_button__unFcb:disabled {
  cursor: progress;
  transform: initial;
  border: 2px solid #cacaca;
}

.page_footer__lVP8S {
  display: flex;
  flex-direction: row;
  width: 100%;
  font-size: 14px;
}

.page_actions__a3rDv {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.page_description__s_Lqk {
  display: inherit;
  justify-content: inherit;
  align-items: inherit;
  font-size: 0.85rem;
  max-width: var(--max-width);
  width: 100%;
  z-index: 2;
  font-family: var(--font-mono);
}

.page_description__s_Lqk a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.page_description__s_Lqk p {
  position: relative;
  margin: 0;
  padding: 1rem;
  background-color: rgba(var(--callout-rgb), 0.5);
  border: 1px solid rgba(var(--callout-border-rgb), 0.3);
  border-radius: var(--border-radius);
}

.page_recursionWrapper__QYDRr {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page_toptext__ROBDQ {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: self-end;
  text-align: center;
  justify-content: center;
}

.page_code__Cdcue {
  font-weight: 700;
  font-family: var(--font-mono);
}

.page_grid__2WZXq {
  display: grid;
  grid-template-columns: repeat(4, minmax(25%, auto));
  width: 100%;
  white-space: nowrap;
  max-width: 100%;
}

.page_card__ftWzl {
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius);
  background: rgba(var(--card-rgb), 0);
  border: 1px solid rgba(var(--card-border-rgb), 0);
  transition: background 200ms, border 200ms;
}

.page_card__ftWzl span {
  display: inline-block;
  transition: transform 200ms;
}

.page_card__ftWzl h2 {
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.page_card__ftWzl p {
  margin: 0;
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 30ch;
}

.page_center__GvJ9Y {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4rem 0;
  flex-direction: column;
  text-align: center;
}

.page_center__GvJ9Y::before {
  background: var(--secondary-glow);
  border-radius: 50%;
  width: 480px;
  height: 360px;
  margin-left: -400px;
}

.page_center__GvJ9Y::after {
  background: var(--primary-glow);
  width: 240px;
  height: 180px;
  z-index: -1;
}

.page_logo__M5piD {
  position: relative;
}
/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .page_card__ftWzl:hover {
    background: rgba(var(--card-rgb), 0.1);
    border: 1px solid rgba(var(--card-border-rgb), 0.15);
  }

  .page_card__ftWzl:hover span {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion) {
  .page_card__ftWzl:hover span {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .page_footer__lVP8S {
    flex-direction: column;
  }

  .page_content__rFejU {
    padding: 4rem;
  }

  .page_grid__2WZXq {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .page_card__ftWzl {
    padding: 1rem 2.5rem;
  }

  .page_card__ftWzl h2 {
    margin-bottom: 0.5rem;
  }

  .page_center__GvJ9Y {
    padding: 8rem 0 6rem;
  }

  .page_center__GvJ9Y::before {
    transform: none;
    height: 300px;
  }

  .page_description__s_Lqk {
    font-size: 0.8rem;
  }

  .page_description__s_Lqk a {
    padding: 1rem;
  }

  .page_description__s_Lqk p,
  .page_description__s_Lqk div {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
  }

  .page_description__s_Lqk p {
    align-items: center;
    inset: 0 0 auto;
    padding: 2rem 1rem 1.4rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25);
    background: linear-gradient(
      to bottom,
      rgba(var(--background-start-rgb), 1),
      rgba(var(--callout-rgb), 0.5)
    );
    background-clip: padding-box;
    -webkit-backdrop-filter: blur(24px);
            backdrop-filter: blur(24px);
  }

  .page_description__s_Lqk div {
    align-items: flex-end;
    pointer-events: none;
    inset: auto 0 0;
    padding: 2rem;
    height: 200px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgb(var(--background-end-rgb)) 40%
    );
    z-index: 1;
  }
}

@media (prefers-color-scheme: dark) {
  .page_vercelLogo__1QD2W {
    filter: invert(1);
  }

  .page_logo__M5piD {
    filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70);
  }
}

@keyframes page_rotate__P15uU {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

