body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #050505, #0a0a0a);
  color: #00bfff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  cursor: url('/custom_mouse.png'), auto;
  overflow: hidden;
  touch-action: manipulation;
}

.container {
  position: relative;
  text-align: center;
  max-width: 90%;
  padding: 2rem;
  background: rgba(17, 17, 17, 0.65);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
  border: 1px solid rgba(0, 191, 255, 0.2);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #00bfff;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 0 0 12px #00bfff55;
}

.name {
  font-size: 2.2rem;
  margin: 0.4rem 0;
}

.glow-text {
  text-shadow: 0 0 10px #00bfff, 0 0 20px #0099ff;
  transition: text-shadow 0.4s ease;
}

.glow-text:hover {
  text-shadow: 0 0 15px #00ffff, 0 0 30px #0099ff;
}

.bio {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 1.4rem;
  word-break: break-word;
}

.discord-id {
  color: #00ffff;
  font-weight: bold;
}

.links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.icon-link img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px #00bfffaa);
}

.icon-link img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px #00ffff);
}

/* Sparkle canvas */
#sparkle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 🔊 Sound Button oben rechts */
.sound-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.sound-toggle img {
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px #00bfff88);
}

.sound-toggle img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #00ffff);
}

/* 👁 View-Counter im Container unten rechts */
.view-counter {
  position: absolute;
  bottom: 10px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #ccc;
  opacity: 0.8;
}

.view-counter img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 3px #00bfff);
}