/* Custom neon audio player bar */
#music-player {
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  padding: 10px 0 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #00ff66;
  box-shadow: 0 0 10px #00ff66;
}

/* Custom audio player layout */
#custom-player {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 5px;
  max-width: 900px;
  margin: 0 auto; /* zentriert */
}

/* Play button */
#play-btn {
  background: #00ff66;
  color: #000;
  border: none;
  font-size: 22px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 10px #00ff66;
}

/* Hover effect */
#play-btn:hover {
  box-shadow: 0 0 15px #00ffaa;
}

/* Progress bar container */
#progress-container {
  width: 300px;
  height: 8px;
  background: #003300;
  border: 1px solid #00ff66;
  overflow: hidden;
}

/* Progress bar */
#progress-bar {
  width: 0%;
  height: 100%;
  background: #00ff66;
  box-shadow: 0 0 10px #00ff66;
}

/* Time display */
#time {
  font-size: 14px;
  color: #00ffcc;
  text-shadow: 0 0 5px #00ffcc;
}

/* Mobile optimization */
@media screen and (max-width: 600px) {
  #custom-player {
    flex-direction: column;
    gap: 10px;
  }

  #progress-container {
    width: 90%;
  }
}



/* Universal layout */
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  color: #d8ffd8;
  background: url('/slime.gif') repeat;
  background-size: 120px;
  filter: brightness(0.75);
  text-align: center;
}

/* Wrapper – sorgt dafür, dass alles mittig bleibt */
.wrapper {
  max-width: 900px;      /* Breite auf großen Bildschirmen */
  margin: 0 auto;        /* Zentriert alles */
  padding: 20px;         /* Abstand zu Bildschirmrändern */
  box-sizing: border-box;
}

/* Header */
header {
  background: rgba(0,0,0,0.6);
  border-bottom: 2px solid #00ff66;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header title neon glow */
header h1 {
  color: #00ff66;
  text-shadow:
    0 0 8px #00ff66,
    0 0 14px #00ff33,
    0 0 22px #00ff33;
}

header p.slogan {
  color: #88ffcc;
  text-shadow:
    0 0 6px #00ff66,
    0 0 12px #00ff33;
}


/* Navigation */
nav {
  background: rgba(0,0,0,0.7);
  border-bottom: 2px solid #00ff66;
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Navigation links – giftgrün default */
nav a {
  color: #00ff88;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

/* Hover effect – cyan-grün */
nav a:hover {
  color: #00ffcc;
  text-shadow: 0 0 6px #00ffcc;
}

/* Active tab – dauerhaft leuchtend grün */
nav a.active {
  color: #00ff66;
  font-weight: bold;
  text-shadow: 0 0 8px #00ff66;
}


/* Content box */
.content {
  background: rgba(0,0,0,0.5);
  border: 1px solid #00ff66;
  padding: 20px;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.85);
  border: 2px solid #00ff66;
  padding: 15px;
  margin: 40px 0 20px 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* Footer link always green */
footer a,
footer a:visited,
footer a:hover,
footer a:active,
footer a:focus {
  color: #00ff88 !important;
  text-decoration: none;
  text-shadow: 0 0 8px #00ff66;
  cursor: pointer;
}

/* Mobile */
@media screen and (max-width: 600px) {
  .wrapper {
    padding: 10px;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }
}


nav a:hover {
  text-shadow: 0 0 6px #00ffcc;
}

/* Content */
.content {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  margin: 20px auto;
  border: 1px solid #00ff66;
  width: 100%;
  box-sizing: border-box;
}

/* Footer */
footer {
  margin: 40px auto 20px auto;
  padding: 10px;
  background: rgba(0,0,0,0.85);
  border: 2px solid #00ff66;
  color: #00ff88;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

/* Footer link always green */
footer a,
footer a:visited,
footer a:hover,
footer a:active,
footer a:focus {
  color: #00ff88 !important;
  text-decoration: none;
  text-shadow: 0 0 8px #00ff66;
  cursor: pointer;
}

/* Blog posts */
.post {
  text-align: left;
  margin: 20px auto;
  max-width: 700px;
  padding: 15px;
  border-left: 3px solid #00ff66;
  background: rgba(0,0,0,0.5);
}

/* Hall of Fame gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  width: 200px;
}

/* Mobile responsiveness */
@media screen and (max-width: 600px) {
  header h1 {
    font-size: 24px;
  }

  nav a {
    display: block;
    margin: 8px 0;
    font-size: 16px;
  }

  .content,
  header,
  nav,
  footer {
    width: 100%;
    padding: 15px;
  }

  .gallery img {
    width: 100%;
    max-width: 300px;
  }
}
