@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #eee;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-behavior: smooth;
  transition: background 0.3s ease;
}

/* Biar container tetap responsif dan tidak terlalu sempit */
.container {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Hapus efek klik biru */
a, button, input, textarea, select {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus, button:focus, input:focus {
  outline: none !important;
  box-shadow: none !important;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00e5ff;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px #00e5ff;
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00e5ff;
  margin-bottom: 0.2rem;
}

.role {
  font-size: 1rem;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 1rem;
}

.desc {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  color: #ccc;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00e5ff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 500px) {
  .glass-card {
    padding: 1.5rem;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 1.5rem;
  }

  .desc {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  body {
    align-items: flex-start;
    padding-top: 5rem;
  }
}