.main-container {
  position: relative;
  z-index: 10; /* Ensures content is above the background */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 3.5rem;
  text-align: center;
  pointer-events: none; /* Allows mouse to pass through to the canvas */
}

/* Allow interaction with header and links specifically */
header,
.soon-graphic,
.social-links {
  pointer-events: auto;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Typography */
.headline {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.sub-headline {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.8;
}

/* SOON Graphic */
.soon-graphic {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.letter-block {
  background-color: var(--accent-color);
  aspect-ratio: 1 / 1;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.letter-block img {
  width: 100%;
  height: 100%;
}

/* S and N Geometry */
.s-line-top,
.s-line-bottom,
.n-line {
  position: absolute;
  background-color: var(--bg-color);
}
.s-line-top {
  width: 50%;
  height: 6px;
  top: 33%;
  right: 0;
}
.s-line-bottom {
  width: 50%;
  height: 6px;
  bottom: 33%;
  left: 0;
}
.n-line {
  width: 6px;
  height: 100%;
  transform: rotate(-45deg);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .headline {
    font-size: 1.75rem;
  }
  .sub-headline {
    font-size: 1rem;
  }
  .soon-graphic {
    gap: 2px;
  }
}
