* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1b1f3b, #0c0c0c 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.container {
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;

  /* 👇 THIS IS THE FIX */
  object-position: center top;

  border: 3px solid #7c7cff;
  margin-bottom: 20px;
}


h1 {
  font-size: 2rem;
  font-weight: 600;
}

h1 span {
  color: #7c7cff;
}

.subtitle {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin: 10px 0 28px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links a {
  text-decoration: none;
  padding: 13px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.links a:hover {
  background: #7c7cff;
  color: #000;
  transform: translateY(-2px);
}

.links a.primary {
  background: #7c7cff;
  color: #000;
  font-weight: 500;
}

.links a.primary:hover {
  background: #9a9aff;
}

.footer-text {
  margin-top: 28px;
  font-size: 0.8rem;
  color: #9b9b9b;
}
