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

    body {
      display: flex;
  flex-direction: column; /* wichtig */
  min-height: 100vh;
  padding: 20px;
  background: url('background.jpg') center/cover no-repeat;
  position: relative;
  color: #eee;
    }

    body::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.65);
      backdrop-filter: blur(4px);
    }

    .container {
	margin: auto;
      position: relative;
      width: 100%;
      max-width: 700px;
      padding: 28px;
      border-radius: 20px;
      background: rgba(0,0,0,0.4);
      border: 1px solid rgba(255,215,0,0.2);
      backdrop-filter: blur(20px);
    }

    .header { text-align: center; margin-bottom: 18px; }

    .profile-img {
      width: 100px; height: 100px; border-radius: 50%;
      border: 2px solid rgba(255, 215, 0, 0.6); margin-bottom: 12px;
    }

    h1 { font-size: 1.4rem; color: #FFD700; }
    h3 { font-size: 1.0rem; color: #eee; }

    .socials {
      display: flex; justify-content: center; gap: 14px; margin: 16px 0 26px 0;
    }

    .social-btn {
      width: 42px; height: 42px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,215,0,0.06);
      border: 1px solid rgba(255,215,0,0.25);
      color: #FFD700; text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .social-btn:hover {
      transform: translateY(-3px);
      background: rgba(255, 215, 0, 0.12);
      box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }

    .links { display: flex; flex-direction: column; gap: 14px; }

    .link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 16px; border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 215, 0, 0.15);
      backdrop-filter: blur(12px);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .link:hover {
      transform: translateY(-3px);
      background: rgba(255, 215, 0, 0.08);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }
	
.pinned {
	font-weight: 600;
  background: rgba(255, 215, 0, 0.08);
}

/* wird per JS hinzugefügt */
.pinned.animate {
  animation: heartbeat 2.2s ease;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
  }

  10% {
    transform: scale(1.02); /* vorher 1.05 */
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.15);
  }

  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.025); /* vorher 1.06 */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
  }
}

.pinned.animate {
  animation: heartbeat 2.2s ease;
}

    .link-left { display: flex; align-items: center; gap: 14px; }

    .icon-box {
      width: 38px; height: 38px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255, 215, 0, 0.08);
      border: 1px solid rgba(255, 215, 0, 0.25);
      color: #FFD700;
    }

    .arrow { color: rgba(255, 215, 0, 0.5); }

    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      background: #111;
      border: 1px solid rgba(255,215,0,0.3);
      border-radius: 18px;
      padding: 26px;
      width: 100%;
      max-width: 500px;
      text-align: center;
      transform: translateY(20px) scale(0.96);
      transition: all 0.3s ease;
    }

    .modal.active .modal-content {
      transform: translateY(0) scale(1);
    }

    .modal h2 { color: #FFD700; margin-bottom: 12px; font-size: 1.3rem; }
    .modal p { font-size: 0.95rem; margin-bottom: 20px; color: #ccc; }

    .modal a {
      display: inline-block;
      padding: 12px 18px;
      border-radius: 12px;
      background: rgba(255,215,0,0.15);
      color: #FFD700;
      text-decoration: none;
    }
	
.footer {
position: relative;
  z-index: 2; /* wichtig! */
  text-align: center;
  font-size: 0.8rem;
  color:#555;
  margin-top: 15px;
  margin-bottom:30px;
}
.footer a {
 color:#555;
}

.lotus {
text-align:center;
margin: 40px auto -25px auto;
 width: 100%;
}
.lotus img {
	padding:3px;
 width: 32px;
 height: 32px;
}

/* KATEGORIEN */
.category {
  margin: 40px 0 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  position: relative;
  text-align: left;
}

/* Linie daneben (clean look) */
.category::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, #ccc, transparent);
  margin-top: 8px;
}