html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Dancing Script', cursive;
  background: #0a0a0a;
  color: #fff;
}

#particlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.center-content h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  margin: 0;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

.socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  transform: scale(1.2);
  background: #1da1f2;
  color: #fff;
  box-shadow: 0 0 10px #1da1f2;
}

footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #aaa;
  z-index: 1;
}
