/* --- Grundlayout --- */
body {
  margin: 0;
  background: radial-gradient(circle at top, #0a0a0f 0%, #000 100%);
  font-family: 'Roboto', sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
  overflow-x: hidden;
}

/* --- Profilbild --- */
.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff4f8b;
  box-shadow: 0 0 25px rgba(255, 80, 150, 0.9);
  margin-top: 20px;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 15px rgba(255, 80, 150, 0.7); }
  to   { box-shadow: 0 0 35px rgba(255, 120, 180, 1); }
}

/* --- Überschrift --- */
h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8em;
  margin: 20px 0 30px;
  text-shadow: 0 0 10px #9f00ff;
}

/* --- Link-Container --- */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 320px;
}

/* --- Buttons / Social Links --- */
.links a {
  text-decoration: none;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  font-size: 1em;
  background: linear-gradient(135deg, #ff00a8, #ff2e63, #ff8ccf);
  box-shadow: 0 0 26px rgba(255, 85, 150, 0.6);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.links a:hover {
  box-shadow: 0 0 40px rgba(255, 100, 170, 0.95);
  transform: translateY(-8px) scale(1.03);
}

/* --- Icons --- */
.social-icon {
  margin-right: 8px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

/* --- Footer --- */
footer {
  margin-top: auto;
  font-size: 0.8em;
  color: #888;
  text-align: center;
  padding-top: 30px;
}

footer a {
  color: #ff8bbd;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  background: rgba(255, 80, 150, 0.15);
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  background: rgba(255, 80, 150, 0.35);
  color: #ff4f8b;
  box-shadow: 0 0 12px rgba(255, 100, 170, 0.7);
}

