body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 400px;
}

.pfp {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: 20px;
}

.handle {
  margin-top: 5px;
  font-size: 13px;
  opacity: 0.7;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.icons img {
  width: 25px;
  height: 25px;
  filter: grayscale(0%) brightness(1.5) sepia(0%) saturate(0%) contrast(1);
  transition: 0.3s;
  cursor: pointer;
}

/* Make icons silver */
.icons img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.9);
}

.icons img:hover {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1.3);
}

.discord-wrapper {
  position: relative;
}

.tooltip {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.discord-wrapper:hover .tooltip {
  opacity: 1;
}

.view-count {
  margin-top: 30px;
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.view-count img {
  width: 14px;
  filter: brightness(0.7);
}
