body {
    background-color: #111;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

header img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 40px;
    border: 4px solid #9147ff;
}

.links {
    margin-top: 30px;
}

.link-button {
    display: block;
    width: 260px;
    margin: 12px auto;
    padding: 14px;

    background-color: #000;
    color: white;
    text-decoration: none;
    font-weight: bold;

    border-radius: 999px;
    border: 2px solid #9147ff;

    transition: 0.2s;
}

.link-button:hover {
    background-color: #9147ff;
    transform: scale(1.05);
}

/* Hintergrund-Container */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #000;
}

/* Allgemeines Video-Styling */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1)
}

/* Overlay dunkelt alles ab */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Standard: Mobile */
.desktop-video {
  display: none;
}

/* Desktop */
@media (min-width: 900px) {
  .mobile-video {
    display: none;
  }

  .desktop-video {
    display: block;
  }
}


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

/* Icons: */
.icon-bar {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap; /* damit es auf Handy umbricht */
}


.icon {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.icon img {
  width: 34px;
  height: 34px;
  display: block;

  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;

  /* Icons wieder sichtbar machen */
  filter: brightness(0) invert(1);
}

.icon img {
    width: 50px;
    height: 50px;
  transition: transform 0.2s, filter 0.2s;
}

.icon:hover img {
  transform: scale(1.15);
  filter: brightness(0) invert(1) drop-shadow(0 0 6px #9147ff);
}
