body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom right, #111, #222);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

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

.container a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #666;
  transition: color 0.3s, border-bottom 0.3s;
}

.container a:hover {
  border-bottom: 1px solid #fff;
}

.profile-picture {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #444;
}

h1 {
  margin-bottom: 0.2em;
  font-size: 2.5rem;
}

p {
  margin-bottom: 2em;
  color: #ccc;
}

.links {
  max-height: 55vh;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-color: #666 #222;
}

.links.ready {
  scrollbar-width: thin;
}

.links a {
  display: block;
  margin: 10px 0;
  padding: 14px;
  background-color: #444;
  color: white;
  border-bottom: none;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.links a.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.links a:hover {
  background-color: #666;
  border-bottom: none;
}

.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
  filter: invert(1) brightness(2);
}

.footer {
  position: fixed;
  left: 0;
  bottom: 10px;
  width: 100%;
  color: #aaa;
  font-size: 0.7em;
  text-align: center;
  padding: 0.7em 0 0.5em 0;
  z-index: 100;
}

.footer a {
  color: #aaa;
  text-decoration: none;
  border-bottom: 1px solid #666;
  transition: color 0.3s, border-bottom 0.3s;
}

.footer a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
