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

body {
  font-family: "Montserrat", sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a;
}

.hero__title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
  padding: 0.2em 0.4em;
  position: relative;
  z-index: 400;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(2rem, 10vw, 5rem);
    letter-spacing: 0.03em;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.6rem, 12vw, 3rem);
    letter-spacing: 0.01em;
    padding: 0.3em 0.2em;
  }
}

.hero__layer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__layer--glow {
  position: absolute;
  inset: 0;
  justify-content: center;
  color: transparent;
  animation: blacklight-pulse 5.4s ease-in-out infinite;
  z-index: 1;
}

.hero__layer--text {
  position: relative;
  color: #111111;
  z-index: 2;
}

.larger {
  display: block;
  font-size: 255%;
}
@media (max-width: 768px) {
  .larger {
    font-size: 200%;
  }
}
@media (max-width: 480px) {
  .larger {
    font-size: 160%;
  }
}

.lights-matter {
  display: block;
}

@keyframes blacklight-pulse {
  0%, 100% {
    text-shadow: 0 0 0.01em rgba(255, 255, 255, 0.7), 0 0 0.04em rgba(255, 170, 255, 0.5), 0 0 0.1em rgba(180, 0, 255, 0.3), 0 0 0.3em rgba(119, 0, 204, 0.18), 0 0 0.6em rgba(61, 0, 128, 0.1);
  }
  50% {
    text-shadow: 0 0 0.02em #ffffff, 0 0 0.06em #ffffff, 0 0 0.15em #ffccff, 0 0 0.3em #dd66ff, 0 0 0.65em #7700cc, 0 0 1.1em #3d0080;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(180, 0, 255, 0.8) 60px), repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(180, 0, 255, 0.8) 60px), repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(220, 120, 255, 0.25) 6px), repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(220, 120, 255, 0.25) 6px);
  opacity: 0;
  animation: texture-pulse 5.4s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, transparent 0%, transparent 35%, rgba(10, 10, 10, 0.6) 60%, #0a0a0a 100%);
}
@media (max-width: 768px) {
  .hero::after {
    background: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 0%, transparent 30%, rgba(10, 10, 10, 0.65) 60%, #0a0a0a 100%);
  }
}
@media (max-width: 480px) {
  .hero::after {
    background: radial-gradient(ellipse 90% 45% at 50% 50%, transparent 0%, transparent 25%, rgba(10, 10, 10, 0.7) 55%, #0a0a0a 100%);
  }
}

@keyframes texture-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
