* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'JetBrains Mono', monospace;
  background: #0d0d0d;
  color: #fff;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

.hacker-name {
  font-size: 6rem;
  font-weight: bolder;
  margin-bottom: 0.5rem;
}

.name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  font-weight: bold;
}

.socials a {
  margin: 0 10px;
  color: #2b7cff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: #fff;
}

@keyframes fadeIn {
  0% {opacity: 0; transform: translate(-50%, -60%);}
  100% {opacity: 1; transform: translate(-50%, -50%);}
}
