* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

/* Body */
body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #000408, #ff0000);
  color: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bagian Profil: gambar, nama, bidang, deskripsi */
.profile {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img {
  width: 110px;
  height: 110px;
  border-radius: 0%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
}

.field {
  font-size: 1rem;
  color: #ffffff;
}

.desc {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}

/* Daftar Tautan atau Link */
.link-list {
  flex: 1;
  width: 100%;
  overflow-y: auto;
  padding-right: 4px;
  margin-top: 1.5rem;
}

.link-list::-webkit-scrollbar {
  width: 6px;
}

.link-list::-webkit-scrollbar-thumb {
  background: #3b82f6;
  border-radius: 10px;
}

.link-item {
    background-color: #edb3b3;
    padding: 1rem 4rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    display: flex
;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #1e293b;
    font-weight: 1000;
    transition: all 0.3s ease;
}

.link-item i {
  font-size: 1.2rem;
}

.link-item:hover {
  background-color: #3b82f6;
  color: #f8fafc;
  transform: translateY(-2px);
}

/* Animasi */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsif untuk Perangkat Mobile */
@media (max-width: 480px) {
  .container {
    width: 95%;
    height: auto;
    max-height: 90vh;
    padding: 2rem 2rem;
  }

  .profile-img {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 1.4rem;
  }

  .field {
    font-size: 0.9rem;
  }

  .desc {
    font-size: 0.85rem;
  }

  .link-list {
    margin-top: 1rem;
    max-height: 50vh;
  }
}
