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

/*  BODY  */
body {
  background: linear-gradient(135deg, #0a0a0a, #141414);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Poppins", sans-serif;
}

/*  PROFILE CARD  */
.profile-card {
  background-color: hsl(0, 0%, 12%);
  border-radius: 12px;
  width: 320px;
  max-width: 90%;
  text-align: center;
  padding: 25px 0 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover lift effect */
.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(117, 255, 160, 0.15);
}

/*  IMAGE  */
.image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid hsl(75, 94%, 57%);
  padding: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/*  HEADING  */
.heading {
  margin-top: 15px;
  padding: 0 20px;
}

.heading h1 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.heading h2 {
  color: hsl(75, 94%, 57%);
  font-size: 1rem;
  margin-bottom: 10px;
}

.heading p {
  color: #cfcfcf;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0 10px;
}

/*  BUTTONS  */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

button {
  width: 80%;
  background: hsl(0, 0%, 18%);
  border: none;
  border-radius: 6px;
  color: white;
  padding: 10px 0;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

button:hover {
  background: hsl(75, 94%, 57%);
  color: #0a0a0a;
  transform: scale(1.03);
}

/*  RESPONSIVENESS  */
@media (max-width: 700px) {
  .profile-card {
    width: 80%;
    padding: 20px 0 25px;
  }

  button {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .profile-card {
    width: 95%;
    border-radius: 10px;
  }

  .heading h1 {
    font-size: 1.2rem;
  }

  .heading h2 {
    font-size: 0.9rem;
  }

  .heading p {
    font-size: 0.85rem;
  }

  button {
    width: 100%;
    font-size: 0.9rem;
  }
}
/*  END OF STYLES  */