* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 20px; 
  overflow-x: hidden; 
}


#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* DONT CHANGE!! */
.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

@keyframes load {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.card {
  width: 95%;
  max-width: 520px; /* breiter auf PC */
  padding: 40px 30px;
  border-radius: 25px;
  background: rgba(20,20,20,0.75);
  backdrop-filter: blur(15px);
  text-align: center;
  box-shadow: 0 0 80px rgba(255,255,255,0.05);
}


.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #333;
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

h1 {
  font-size: 24px;
}

.bio {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 30px;
}


.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  margin: 12px 0;
  border-radius: 14px;
  background: #1a1a1a;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}


.link:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, #222, #2d2d2d);
}


.link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  left: -100%;
  top: 0;
  transition: 0.6s;
}

.link:hover::after {
  left: 100%;
}


.footer {
  margin-top: 25px;
  font-size: 12px;
  color: #777;
}

.footer span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: #555;
}


@media (max-width: 500px) {
  body {
    align-items: flex-start; 
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }
}

.counter {
  margin-top: 10px;
  font-size: 11px;
  color: #888;
  opacity: 0;
  animation: fadeCounter 1s ease forwards 1s;
}

@keyframes fadeCounter {
  to {
    opacity: 1;
  }
}


.quote {
  margin-top: 12px;
  font-size: 11px;
  color: #999;
  font-style: italic;
  opacity: 0;
  animation: fadeCounter 1.5s ease forwards 1.5s;
}