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

body {
  background-color: #000;
  color: #fff;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
  text-align: center;
}

header#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 7rem;
  letter-spacing: 12px;
  margin-bottom: 1rem;
  position: relative;
  animation:
    colorPulse 3s ease-in-out infinite,
    glitch 1.2s infinite;
  word-break: break-word;
}

#subtitle {
  font-size: 2.5rem;
}

p {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto 1rem;
  color: #ffffff;
}

main {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

main section {
  margin-bottom: 6rem;
}

h2 {
  margin-top: 100px;
  font-size: 6rem;
  margin-bottom: 1.5rem;
  color: #f6cb02;
  -webkit-text-stroke: 6px #275393;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.5rem 0;
}

a {
  color: #f6cb02;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@keyframes colorPulse {
  0% {
    color: #f6cb02;
    opacity: 0.3;
  }
  25% {
    color: #275393;
    opacity: 1;
  }
  50% {
    color: #000000;
    opacity: 1;
  }
  75% {
    color: #f6cb02;
    opacity: 1;
  }
  100% {
    color: #275393;
    opacity: 0.3;
  }
}

@keyframes glitch {
  0% {
    text-shadow:
      2px 0 #f6cb02,
      -2px 0 #275393;
    transform: translate(0);
  }
  20% {
    text-shadow:
      -2px 0 #f6cb02,
      2px 0 #275393;
    transform: translate(1px, -1px);
  }
  40% {
    text-shadow:
      2px 0 #ffffff,
      -2px 0 #f6cb02;
    transform: translate(-1px, 1px);
  }
  60% {
    text-shadow:
      -2px 0 #275393,
      2px 0 #ffffff;
    transform: translate(0.5px, -0.5px);
  }
  80% {
    text-shadow: 0 0 #ffffff;
    transform: translate(0);
  }
  100% {
    text-shadow:
      2px 0 #f6cb02,
      -2px 0 #275393;
    transform: translate(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 4rem;
    letter-spacing: 4px;
  }

  #subtitle {
    font-size: 1.2rem;
  }

  p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  main {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 3rem;
    -webkit-text-stroke: 3px #275393;
  }

  header#hero {
    padding: 1.5rem;
  }
}

#links {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: -31vh auto 0 auto;
}

#links .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  justify-items: center;
}

#links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  opacity: 0;
  animation: popIn 0.5s ease-out forwards;
}

#links a:hover {
  transform: scale(1.1);
}

#links img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

#links a.white img {
  filter: brightness(100%) invert(1);
}

.patreon {
  background-color: #ffffff;
}
.youtube {
  background-color: #ff0000;
}
.spotify {
  background-color: #1ed760;
}
.reddit {
  background-color: #ff4500;
}
.discord {
  background-color: #5865f2;
}
.snapchat {
  background-color: #fffc00;
}
.tiktok {
  background-color: #ffffff;
}
.instagram {
  background-color: #ff0069;
}
.facebook {
  background-color: #0866ff;
}
.x {
  background-color: #ffffff;
}
.bluesky {
  background-color: #0285ff;
}
.threads {
  background-color: #ffffff;
}
.youtubemusic {
  background-color: #ff0000;
}
.applemusic {
  background-color: #fa243c;
}
.amazonmusic {
  background-color: #46c3d0;
}
.tidal {
  background-color: #ffffff;
}
.twitch {
  background-color: #9146ff;
}
.kick {
  background-color: #53fc19;
}
.roblox {
  background-color: #ffffff;
}
.onlyfans {
  background-color: #00aff0;
}

@media (max-width: 1024px) {
  #links .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  #links .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  #links .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

#links a:nth-child(1) {
  animation-delay: 1s;
}
#links a:nth-child(2) {
  animation-delay: 1.1s;
}
#links a:nth-child(3) {
  animation-delay: 1.2s;
}
#links a:nth-child(4) {
  animation-delay: 1.3s;
}
#links a:nth-child(5) {
  animation-delay: 1.4s;
}
#links a:nth-child(6) {
  animation-delay: 1.5s;
}
#links a:nth-child(7) {
  animation-delay: 1.6s;
}
#links a:nth-child(8) {
  animation-delay: 1.7s;
}
#links a:nth-child(9) {
  animation-delay: 1.8s;
}
#links a:nth-child(10) {
  animation-delay: 1.9s;
}
#links a:nth-child(11) {
  animation-delay: 2s;
}
#links a:nth-child(12) {
  animation-delay: 2.1s;
}
#links a:nth-child(13) {
  animation-delay: 2.2s;
}
#links a:nth-child(14) {
  animation-delay: 2.3s;
}
#links a:nth-child(15) {
  animation-delay: 2.4s;
}
#links a:nth-child(16) {
  animation-delay: 2.5s;
}
#links a:nth-child(17) {
  animation-delay: 2.6s;
}
#links a:nth-child(18) {
  animation-delay: 2.7s;
}
#links a:nth-child(19) {
  animation-delay: 2.8s;
}
#links a:nth-child(20) {
  animation-delay: 2.9s;
}
