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

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: rgb(39, 39, 39);
  line-height: 1.6;
  background: radial-gradient(
    circle at 80% 22%,
    rgba(255, 166, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.95) 60%
  );
  min-height: 100vh;
  position: relative;

  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 20px
    );
  pointer-events: none;
  z-index: 1;
}

.glitch-sun {
  position: fixed;
  top: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff6b6b, #ffd93d);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(255, 107, 107, 0.5);
  z-index: 0;
}
.cityscape {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(0, 255, 255, 0.1) 0px,
      rgba(0, 255, 255, 0.1) 2px,
      transparent 2px,
      transparent 20px
    );
  z-index: 0;
}

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

main {
  max-width: 42rem;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 100px rgba(255, 166, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

.icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: #fff;
  animation: glitch 2s ease-in-out infinite;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.future-notice {
  margin-top: 2rem;
  text-align: center;
}

.notice-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 3px rgba(0, 255, 255, 0.2);
}

.player {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(5px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link.spotify:hover {
  color: rgb(30, 215, 96);
}

.social-link.deezer:hover {
  color: #a238ff;
}

.social-link.youtube:hover {
  color: #ff0000;
}

.social-link.apple-music:hover {
  color: #d60016;
}

.social-link.amazon:hover {
  color: #25d1da;
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  .glitch-sun {
    width: 100px;
    height: 100px;
  }
}
