body,
html {
  background-image: url("https://media1.tenor.com/m/3bTxZ4HdrysAAAAC/pixels-neon.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

h1,
p {
  font-family: "Poetsen One";
}

.copy-message {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.copy-message.show {
  opacity: 1;
  visibility: visible;
}

.profile-container {
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("cyberpunk-background.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  overflow: hidden;
}

.profile-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      transparent 0px,
      rgba(120, 0, 255, 0.1) 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(255, 0, 255, 0.1) 1px,
      transparent 2px
    );
  pointer-events: none;
}

.profile-content {
  padding: 20px;
  z-index: 1;
  width: 100%;
  max-width: 500px;
}

.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  background-color: white;
}

.username {
  font-size: 36px;
  margin-top: 15px;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

.tagline {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.social-steam {
  font-size: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-steam:hover {
  color: #00a6ff;
  text-shadow: 0 0 10px rgba(0, 166, 255, 0.7);
  transform: scale(1.3);
}

.social-tiktok {
  font-size: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-tiktok:hover {
  color: #807ea6;
  text-shadow: 0 0 10px rgba(128, 126, 166, 0.7);
  transform: scale(1.3);
}

.social-insta {
  font-size: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-insta:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
  transform: scale(1.3);
}

.social-discord {
  font-size: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.social-discord:hover {
  content: string(Nandiixx);
  font-size: 36px;
  color: #5662f6;
  text-shadow: 0 0 10px rgba(86, 98, 246, 0.7);
  transform: scale(1.3);
  cursor: pointer;
}

.social-discord::after {
  content: attr(data-text);
  position: absolute;
  top: 9px;
  left: 30px;
  z-index: -1;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.social-discord:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(10px);
}

.social-github {
  font-size: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-github:hover {
  color: #792f9e;
  text-shadow: 0 0 10px rgba(121, 47, 158, 0.7);
  transform: scale(1.3);
}

.social-pinterest {
  font-size: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-pinterest:hover {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .profile-pic {
    width: 120px;
    height: 120px;
  }

  .username {
    font-size: 28px;
  }

  .social-links {
    gap: 10px;
  }
}
