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

/* --- Profilbild --- */
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0ff;
  box-shadow: 0 0 25px #0ff;
  margin-top: 30px;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 15px #0ff; }
  to { box-shadow: 0 0 30px #9f00ff; }
}

/* --- Titel --- */
h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2em;
  margin: 20px 0 30px;
  text-shadow: 0 0 15px #9f00ff;
}

/* --- Kachel-Container --- */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 900px;
  margin-top: 20px;
}

/* --- Kachel-Buttons (Quadratisch) --- */
.links a {
  background: linear-gradient(135deg, #9f00ff, #00ffff);
  width: 180px;
  height: 100px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;

  box-shadow: 0 0 18px rgba(159, 0, 255, 0.6);
  transition: 0.25s ease;
}

.links a:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(0, 255, 255, 0.9);
}

/* --- Große Icons --- */
.social-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}

/* --- Text unter den Icons --- */
.links a span {
  font-size: 1.2em;
  font-weight: 700;
}
/* --- Footer --- */
footer {
  margin-top: auto;
  font-size: 0.8em;
  color: #888;
  text-align: center;
  padding-top: 30px;
}

footer a {
  color: #00e6ff; /* softes Neon-Türkis */
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  background: rgba(0, 255, 255, 0.12); /* leichter türkiser Hintergrund */
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  background: rgba(0, 255, 255, 0.28); /* etwas stärker beim Hover */
  color: #00ffff; /* intensives Neon */
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.75); /* Neon-Glow */
}



