html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #000c17;
  perspective: 1000px;
}

#canvas-container {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.shape {
  position: absolute;
  animation: float 8s linear infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes float {
  0% {
    transform: translateZ(-1000px) translateX(-100%) translateY(-100%) rotate(0deg);
  }
  100% {
    transform: translateZ(500px) translateX(100%) translateY(100%) rotate(360deg);
  }
}

.glow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 12, 23, 0.2);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  width: 240px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00ffff;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h1 {
  margin: 0.5rem 0;
  color: #00ffff;
}

.card p {
  margin: 1rem 0;
  opacity: 0.8;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  color: #00ffff;
  text-decoration: none;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #00ffff;
  border-radius: 20px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #00ffff;
  color: #000c17;
}