
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.card-container {
  width: 90%;
  max-width: 400px;
  margin: auto;
  margin-top: 50px;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 20px;
  text-align: center;
}

.profile-image {
  width: 100%;
  border-radius: 10px;
}

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

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  background: #555;
}

.rotating-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  animation: fadeInOut 18s infinite;
  opacity: 0;
}

.rotating-text:nth-child(1) { animation-delay: 0s; }
.rotating-text:nth-child(2) { animation-delay: 3s; }
.rotating-text:nth-child(3) { animation-delay: 6s; }
.rotating-text:nth-child(4) { animation-delay: 9s; }
.rotating-text:nth-child(5) { animation-delay: 12s; }
.rotating-text:nth-child(6) { animation-delay: 15s; }

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  20% { opacity: 1; transform: translateY(0); }
  30% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; transform: translateY(-10px); }
}
