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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.profile-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 26px;
  margin-bottom: 5px;
}

p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 25px;
}

.links a {
  display: block;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  padding: 14px 20px;
  margin: 12px 0;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

.links a:hover {
  background-color: #222;
  color: #fff;
}

footer {
  margin-top: 40px;
  font-size: 13px;
  color: #888;
}

footer strong {
  color: #fff;
}