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

body {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background: #111;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid white;
}

.profile h1 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: white;
}

.profile p {
  font-size: 0.95rem;
  color: #ccc;
}

.links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.links a:hover {
  transform: scale(1.03);
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.links img {
  width: 20px;
  height: 20px;
}

footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #777;
}

@media (max-width: 500px) {
  .container {
    padding: 30px 20px;
  }

  .links a {
    font-size: 0.9rem;
  }
}
