* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #eaeaea;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 20px;
}

.logos {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}

.logos a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logos a:hover {
  opacity: 1;
}

.logos img {
  max-height: 120px;
  width: auto;
}

.cta {
  font-family: 'IBM Plex Mono', monospace;
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #c30000;      /* deep red */
  color: #c30000;
  text-decoration: none;
  margin-bottom: 24px;
  letter-spacing: 0.25em;
  font-size: 13px;
  transition: background 0.25s ease, color 0.25s ease;
}

.cta:hover {
  background: #c30000;
  color: #000;
}


.cta {
  position: relative;
  overflow: hidden; /* required for shine */
}

/* Shine layer */
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(0deg);
  animation: shine 3.5s ease-in-out infinite;
}

/* Keep text above shine */
.cta span {
  position: relative;
  z-index: 1;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.cta-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: #c30000;
  margin-top: 4px;      /* controls spacing from button */
  margin-bottom: 32px;  /* controls spacing before description */
  opacity: 0.85;
}

.cta-lineup {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin-top: 4px;
  margin-bottom: 32px;
  opacity: 0.85;
}

.cta-label {
  font-size: 9px;
  font-weight: 200;
}

.cta-name {
  font-size: 17px;
  font-weight: 700;
}


.description {
 width: 75vw;
  max-width: 780px;
  min-width: 320px;
  line-height: 1.4;
  margin: 0 auto 24px auto; /* keeps block centered */
  font-size: 15px;
  opacity: 0.85;
  text-align: left;

}


.socials {
  display: flex;
  gap: 28px;
}

.socials a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.socials a:hover {
  opacity: 1;
}

.socials svg {
  fill: #eaeaea;
  width: 100%;
  height: 100%;
}

/* Mobile */
@media (max-width: 600px) {
  .logos {
    flex-direction: row;
    gap: 12px;
  }

  .logos img {
    max-height: 96px;
  }

  .cta {
    letter-spacing: 0.18em;
  }
}

.highlight {
  color: #c30000;     /* deep techno red */
  font-weight: 500;
  font-size: large;
}

