/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and background */
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #1e1e1e;
}

/* Video background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for contrast */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Layout container */
.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  z-index: 1;
}

/* Card */
.card {
  background-color: rgba(44, 44, 44, 0.75);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

/* Avatar */
.avatar {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit:scale-down;
  margin-bottom: 15px;
  border: 3px solid #ff6600;
}

/* Typography */
h1 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Buttons */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  text-decoration: none;
  color: #fff;
  background-color: #ff6600;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  transform: translateY(30px);
  opacity: 0;
  animation: riseUp 0.6s ease forwards;
  transition: all 0.3s ease;
}

.btn:nth-child(1) { animation-delay: 0.2s; }
.btn:nth-child(2) { animation-delay: 0.4s; }
.btn:nth-child(3) { animation-delay: 0.6s; }
.btn:nth-child(4) { animation-delay: 0.8s; }
.btn:nth-child(5) { animation-delay: 0.10s; }
.btn:nth-child(6) { animation-delay: 0.12s; }

@keyframes riseUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.btn:hover {
  background-color: #ff8533;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card {
    padding: 25px 20px;
  }

  .avatar {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .footer {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 90%;
  }

  .card {
    padding: 20px 15px;
  }

  .btn {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.3rem;
  }
}
