@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");
@import url("https://fonts.cdnfonts.com/css/thegoodmonolith");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&display=swap");
:root {
  --grid-columns: 12;
  --grid-padding: 2rem;
  --grid-gutter: 1rem;
  --font-primary: "PP Neue Montreal", sans-serif;
  --font-mono: "TheGoodMonolith", sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 800;
  --letter-spacing-tight: -0.02em;
}

.ascii-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 100vw;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .ascii-block {
    flex-direction: row;
  }
}

.ascii-text {
  flex: 1;
}

.canvas-container {
  flex: 1;
  height: auto;
  aspect-ratio: 1/1;
  align-self: flex-start;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: sticky;
  top: 80px;
}

.canvas-container.visible {
  opacity: 1;
}

canvas {
  width: 100%;
  height: 100%;
  background: black;
  touch-action: none;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coordinates {
  grid-column: 1/span 4;
  text-align: left;
}

.mysterious-message {
  grid-column: 7/span 6;
  text-align: right;
}

@media (max-width: 1024px) {
  .main-title {
    grid-column: 1/span 4;
  }
  .canvas-container {
    grid-column: 5/span 8;
  }
  .header-word-center {
    grid-column: 5/span 3;
  }
  .header-word-right {
    grid-column: 8/span 5;
  }
  .mysterious-message {
    grid-column: 5/span 8;
  }
}
@media (max-width: 768px) {
  .grid-container,
  .header,
  .footer {
    grid-template-columns: 1fr;
  }
  .header-word-left,
  .header-word-center,
  .header-word-right {
    grid-column: 1;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .main-title {
    grid-column: 1;
    margin-bottom: 2rem;
  }
  .canvas-container {
    grid-column: 1;
    max-width: 100%;
  }
  .coordinates,
  .mysterious-message {
    grid-column: 1;
    text-align: left;
    margin-bottom: 1rem;
  }
}
.ascii-text {
  font-size: var(--fs-cat);
}

ul {
  list-style: none;
}

.main {
  max-width: 75rem;
  margin-top: 20px;
}

.main__heading {
  font-weight: 600;
  font-size: 2.25em;
  margin-bottom: 0.75em;
  text-align: center;
  color: #eceff1;
}

.cards {
  position: relative;
}
.cards a {
  color: var(--white);
  font-weight: 600;
}

.cards__inner {
  gap: 2.5em;
}

.card {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  padding: 1.5em 2em;
  margin-bottom: 18px;
  align-items: start;
  gap: 1.25em;
  color: #eceff1;
  background-color: #2b2b2b;
  border: 1px solid rgba(236, 239, 241, 0.2);
  border-radius: 15px;
}

.card:nth-child(1) {
  --hue: 165;
  --saturation: 82.26%;
  --lightness: 51.37%;
}

.card:nth-child(2) {
  --hue: 291.34;
  --saturation: 95.9%;
  --lightness: 61.76%;
}

.card:nth-child(3) {
  --hue: 338.69;
  --saturation: 100%;
  --lightness: 48.04%;
}

.card__bullets {
  line-height: 1.4;
  padding: 0;
  margin: 0;
}

.card__bullets li::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' width='16' fill='%23dddddd'%3E%3Cpath d='M414.8 94.1c4.3-12.4-2.4-25.9-14.8-30.2s-25.9 2.4-30.2 14.8l-128 368c-4.3 12.4 2.4 25.9 14.8 30.2s25.9-2.4 30.2-14.8l128-368zm-278.1 45L4.7 236.7c-6.3 6.4-6.3 16.6 0 22.9l132 132c6.3 6.3 16.4 6.3 22.6 0l22.6-22.6c6.3-6.3 6.3-16.4 0-22.6L91.3 248l90.6-90.6c6.3-6.3 6.3-16.4 0-22.6L159.3 112c-6.3-6.3-16.4-6.3-22.6 0zm366.6 0L617.3 236.7c6.3 6.4 6.3 16.6 0 22.9l-132 132c-6.3 6.3-16.4 6.3-22.6 0l-22.6-22.6c-6.3-6.3-6.3-16.4 0-22.6l90.6-90.6-90.6-90.6c-6.3-6.3-6.3-16.4 0-22.6l22.6-22.6c6.3-6.3 16.4-6.3 22.6 0z'/%3E%3C/svg%3E");
  transform: translateY(0.25ch);
  margin-right: 1ch;
}

.card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid white;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.card__heading img {
  width: 60px;
  height: auto;
}

.card__heading h2 {
  font-size: var(--fs-fox);
  font-weight: 600;
  margin: 0;
}

.card__heading p {
  margin: 0;
}

.card__date {
  font-size: var(--fs-cat);
  font-weight: 700;
}

.flow > * + * {
  margin-top: var(--flow-space, 1.25em);
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(25rem 25rem at var(--x) var(--y), #000 1%, transparent 50%);
  mask: radial-gradient(25rem 25rem at var(--x) var(--y), #000 1%, transparent 50%);
  transition: 400ms -webkit-mask ease;
  transition: 400ms mask ease;
  transition: 400ms mask ease, 400ms -webkit-mask ease;
  will-change: mask;
}

.overlay .card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

/* Removed .cta-related styles entirely */
:not(.overlay) > .card {
  transition: 400ms background ease;
  will-change: background;
}

:not(.overlay) > .card:hover {
  --lightness: 95%;
  background: hsla(var(--hsl), 0.1);
}
/*# sourceMappingURL=asciiBlock.1750454272046.css.map */