body {
  margin: 0;
  padding: 0;
  font-family: 'RetroCraze', sans-serif;
  background-color: #486dd7;
  overflow: hidden;
  cursor: none;
}

/* TV static noise overlay */
.fuzzy-overlay {
  position: fixed;
  inset: -200%;
  background-image: url('img/noise.png');
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.25;
  z-index: -2;
  animation: shift 0.2s linear infinite both;
  pointer-events: none;
}

@keyframes shift {
  0% {
    transform: translateX(10%) translateY(10%);
  }
  100% {
    transform: translateX(-10%) translateY(-10%);
  }
}

.cursor-glow {
  position: fixed;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 109, 215, 0.4) 0%, rgba(100, 150, 255, 0.3) 50%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  animation: cursorGlowPulse 2s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

@keyframes cursorGlowPulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(72, 109, 215, 0.4), 0 0 50px rgba(100, 150, 255, 0.3), 0 0 75px rgba(72, 109, 215, 0.2);
    filter: brightness(1.1) blur(1px);
  }
  50% {
    box-shadow: 0 0 50px rgba(72, 109, 215, 0.5), 0 0 100px rgba(150, 200, 255, 0.4), 0 0 150px rgba(72, 109, 215, 0.3);
    filter: brightness(1.25) blur(2.5px);
  }
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 2rem;
  z-index: 1;
  position: relative;
}

.snail-container {
  position: relative;
  width: 300px;
  height: 200px;
}

.snail-img {
  width: 200px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  transition: transform 2s linear;
}

.snail-img.move {
  transform: translateX(300px);
}

.social-box {
  position: relative;
  width: 373px;
  height: 55px;
}

.social-rectangle {
  width: 373px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 0;
}

.socials {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  width: 105%;
  height: 105%;
}

.socials img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.socials img:hover {
  transform: scale(1.2);
}