/* Umum */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow-x: hidden;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  width: 400px;
  max-width: 90%;
}

.avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00a8ff;
}

.verified {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #00a8ff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.name {
  margin: 15px 0;
  font-size: 24px;
  font-weight: 600;
}

/* Ikon Sosial */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: inline-block;
}

.social-icons img {
  width: 100%;
  height: 100%;
  filter: invert(40%);
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: invert(0%) sepia(100%) saturate(10000%) hue-rotate(300deg);
}

/* Tombol */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: #00a8ff;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #007acc;
  transform: scale(1.05);
}

/* 🔹 Responsif */
@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 30px;
  }

  .avatar {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 20px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px;
  }

  .container {
    width: 100%;
    padding: 20px;
  }

  .avatar {
    width: 90px;
    height: 90px;
  }

  .social-icons {
    gap: 15px;
  }

  .btn {
    font-size: 13px;
  }
}
