body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: black;
  overflow: hidden;
}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: url('b7037c63-55e9-401c-b893-90709138798d.png') no-repeat center center/cover;
  filter: brightness(0.7); /* heller gemacht */
  z-index: -1;
}

.profile-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-card {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid white;
}

.subtitle {
  margin-top: 0.2rem;
  color: #ccc;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  margin: 0 10px;
  font-size: 1.8rem;
  text-decoration: none;
  color: white;
}

.status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.audio-box {
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  padding: 1rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.audio-title {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: white;
  text-align: left;
}

audio {
  width: 100%;
  outline: none;
  border-radius: 10px;
}
