body,
html {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, rgb(49, 44, 24) 0%, rgba(0, 0, 0, 0.73) 100%);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgb(49, 44, 24);
}

.container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px 0 30px 0;
  background: inherit;
  position: relative;
  z-index: 1;
}

#content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  background: inherit;
  position: relative;
  z-index: 1;
}

.neon {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: inherit;
  position: relative;
  z-index: 1;
}

.neon svg {
  width: 622px;
  height: auto;
  display: block;
  margin-bottom: 70px;
  max-width: 100%;
  animation: flicker 0.5s infinite alternate;
}

.off.hideonoff{
  opacity: 0;
}
.chicken_f2_static.off{
  stroke: #222;
}
.chicken_f2_glow.off{
  stroke: none;
}
.chicken_f1_static.off{
  stroke: #222;
}
.chicken_f1_glow.off{
  stroke: none;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    filter: brightness(100%) drop-shadow(0 0 5px rgba(241, 101, 35, 0.3));
  }
  20%, 24%, 55% {
    filter: brightness(90%) drop-shadow(0 0 3px rgba(241, 101, 35, 0.2));
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 0;
  transform: translateX(-10px);
  animation: none;
}

.social-icon {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.social-icon img[src="sm/youtube.svg"] {
  width: 50px;
  height: 36px;
}

.social-icon img[src="sm/soundcloud.svg"] {
  width: 58px;
  height: 36px;
}

.copyright {
  color: #5b5b5b;
  font-family: Arial, sans-serif;
  font-size: 9px;
  margin-top: 60px;
  text-align: center;
  opacity: 0.8;
  letter-spacing: 1px;
  animation: none;
}

@media screen and (max-width: 768px) {
  .neon svg {
    width: 100%;
    max-width: 500px;
    margin-bottom: 50px;
  }

  .social-icons {
    gap: 30px;
  }

  .social-icon img {
    width: 32px;
    height: 32px;
  }

  .social-icon img[src="sm/youtube.svg"] {
    width: 44px;
    height: 32px;
  }

  .social-icon img[src="sm/soundcloud.svg"] {
    width: 52px;
    height: 32px;
  }

  .copyright {
    font-size: 8px;
    margin-top: 40px;
  }

  .container {
    padding: 20px 0 20px 0;
  }
}