body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  min-height: 100vh;
  padding: 20px;

  background-image: url("/images/background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: -1;
}

.logo {
  position: fixed;
  height: 40px;
  width: auto;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.logo img {
  height: 80px;  /* pas aan naar wens */
  width: auto;
  display: block;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  min-height: 110vh;
    position: relative;
  z-index: 1;

  /* BELANGRIJK: dit herstelt centering */
  display: flex;
  flex-direction: column;
  align-items: center;
    justify-content: center;
  text-align: center;
}

  /* .content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
  padding: 20px;
} */


.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

h1 {
  margin: 10px 0 5px;
  font-size: 22px;
}

p {
  color: #aaa;
  margin-bottom: 22px;
  font-size: 14px;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link {
  padding: 15px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s ease;
}

.link:active {
  transform: scale(0.97);
}

/* icons */
.icon {
  width: 22px;
  height: 22px;
  display: flex;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* brands */
.spotify { background: #1DB954; }
.youtube { background: #FF0000; }
.apple {background: #FA243C;color: white;
}
.tiktok {
  background: #111111;
  border: 2px solid #ffffff30;
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: white;
}

.link {
  transition: all 0.2s ease;
  position: relative;
}

/* duidelijke hover effect */
.link:hover {
  transform: scale(1.06);
  filter: brightness(1.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* kleine “lift” animatie rand */
.link:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

@media (max-width: 480px) {
  .avatar {
    width: 110px;
    height: 110px;
  }

  h1 {
    font-size: 20px;
  }

  .link {
    font-size: 16px;
    padding: 16px;
  }
}