/* Eingebettete Schriftart (Poppins) */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins'), url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfedw.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: local('Poppins SemiBold'), url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6.woff2') format('woff2');
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: #111;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Container für dein eigentlichen Inhalt */
.content {
  min-height: 100%;
}
/* Variablen für die dynamischen Ränder */
:root {
  --left-gradient: linear-gradient(to bottom, hsl(240, 100%, 65%), hsl(280, 100%, 70%));
  --right-gradient: linear-gradient(to bottom, hsl(35, 100%, 50%), hsl(50, 100%, 55%));
  --left-shadow: 0 0 30px 15px rgba(128, 0, 255, 0.8);
  --right-shadow: 0 0 30px 15px rgba(255, 165, 0, 0.4);
}

/* Container unter allem */
.neon-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0; /* unter Content, vor Hintergrund */
  pointer-events: none;
}

/* Gemeinsame Eigenschaften für beide Seiten */
.neon-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  filter: blur(22px);
  opacity: 0.8;
}

/* Linke Seite */
.neon-edge.left {
  left: 0;
  background: var(--left-gradient, linear-gradient(to bottom, hsl(240, 100%, 65%), hsl(280, 100%, 70%)));
  box-shadow: var(--left-shadow, 0 0 30px 15px rgba(128, 0, 255, 0.8));
  animation: neonPulseLeft 5s ease-in-out infinite;
}

/* Rechte Seite */
.neon-edge.right {
  right: 0;
  background: var(--right-gradient, linear-gradient(to bottom, hsl(35, 100%, 50%), hsl(50, 100%, 55%)));
  box-shadow: var(--right-shadow, 0 0 30px 15px rgba(255, 165, 0, 0.4));
  animation: neonPulseRight 5s ease-in-out infinite;
}

/* Stelle sicher, dass alle Inhalte drüber liegen */
header, footer, .content, .box, main, section {
  position: relative;
  z-index: 1;
}

/* Animationen */
@keyframes neonPulseLeft {
  0%, 100% {
    opacity: 0.75;
    box-shadow: 0 0 30px 15px rgba(128, 0, 255, 0.8);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 40px 20px rgba(180, 80, 255, 0.9);
  }
}

@keyframes neonPulseRight {
  0%, 100% {
    opacity: 0.75;
    box-shadow: 0 0 30px 15px rgba(255, 165, 0, 0.4);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 40px 20px rgba(255, 215, 0, 0.5);
  }
}
/* Grundlayout */
/* html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: #1f1f1f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
} */

/* Fokus Glow nur oben & unten */
html::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 50% -10%, rgba(186,85,211,0.2), transparent 70%), /* oben */
      radial-gradient(circle at 50% 110%, rgba(255,140,0,0.2), transparent 70%);  /* unten */
    filter: blur(50px);
    z-index: -1;
    transition: filter 0.4s ease, opacity 0.4s ease;
}
html.scrolled::before {
    opacity: 1;
    filter: blur(60px) brightness(1.2);
}

/* Header */
header { text-align: center; padding: 50px 20px 20px; }
header img { max-width: 220px; height: auto; }

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

/* Cover Glow */
.cover-container { position: relative; display: inline-block; }
.cover {
    max-width: 600px; width: 100%;
    border-radius: 10px; margin: 20px 0;
    position: relative; z-index: 1;
}
.cover-container::after {
    content: "";
    position: absolute; 
    top: -25px; left: -25px; right: -25px; bottom: -25px;
    border-radius: 35px; 
    z-index: 0;
    background: conic-gradient(from 0deg, 
        rgba(255,140,0,0.8), 
        rgba(186,85,211,0.8), 
        rgba(255,105,180,0.8), 
        rgba(255,140,0,0.8));
    filter: blur(50px) saturate(1.5);
    animation: neonPulse 6s linear infinite;
}
@keyframes neonPulse {
    0%   { transform: scale(1); opacity: 0.6; filter: blur(50px) saturate(1.2) hue-rotate(0deg); }
    50%  { transform: scale(1.1); opacity: 1; filter: blur(60px) saturate(1.8) hue-rotate(60deg); }
    100% { transform: scale(1); opacity: 0.6; filter: blur(50px) saturate(1.2) hue-rotate(0deg); }
}

/* Tracklist Box */
.tracklist-block {
    position: relative;
    background: rgba(40,40,40,0.9);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    margin-top: 30px;
    color: #fff;
    max-width: 600px;
    transition: box-shadow 0.3s ease;

    /* Inhalt zentrieren */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px; /* sorgt für Höhe */
    padding: 20px 30px;
}

/* Code Box */
.code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 300px;   /* Box bleibt klein */
    margin: 0 auto;     /* zentriert in der Tracklist-Box */
}

/* Tracklist standardmäßig ausgeblendet */
.tracklist-inner {
    display: none;        /* ausgeblendet, solange nicht entsperrt */
    filter: blur(10px);
    opacity: 0.4;
    pointer-events: none;
    transition: filter 1s ease, opacity 1s ease;
    text-align: center;   /* Mittig */
}
.tracklist-inner.revealed {
    display: block;       /* sichtbar nach Code */
    filter: blur(0);
    opacity: 1;
    pointer-events: all;
}
.tracklist-inner h2 {
    text-align: center;   /* Überschrift mittig */
}
.tracklist-inner ol {
    text-align: center;   /* Liste mittig */
    padding-left: 0;
    list-style-position: inside;
}

/* Code Box Eingaben & Buttons */
.code-box h3 { 
    margin: 0 0 10px; 
}
.code-box input {
    padding: 10px; 
    width: 250px; 
    border-radius: 5px; 
    border: none;
    font-size: 16px;
}
.code-box button,
.insta-button {
    margin-top: 15px; 
    padding: 10px 20px; 
    font-size: 16px;
    border: none; 
    border-radius: 20px; 
    cursor: pointer;
    background: linear-gradient(45deg, #ff8c00, #ba55d3); 
    color: white;
    transition: all 0.3s ease;
}
.code-box button:hover,
.insta-button:hover {
    background: #555;
    color: #ff8c00;
    box-shadow: 0 0 15px rgba(255,140,0,0.8);
    transform: scale(1.05);
}
/* Fehlertext mit Animation */
#errorMsg {
    display: none;
    color: #ff6666;
    font-size: 14px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#errorMsg.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Trackliste */
.tracklist-inner h2 {
    text-align: center; /* Überschrift mittig */
}

.tracklist-inner ol {
    text-align: center;  /* Liste mittig */
    padding-left: 0;     /* kein Einrücken */
    list-style-position: inside; /* Zahlenposition nach innen */
}
.tracklist-inner ol li { margin: 5px 0; line-height: 1.4em; }
.tracklist-inner { 
    filter: blur(10px); 
    opacity: 0.4; 
    pointer-events: none; 
    transition: filter 1s ease, opacity 1s ease; 
}
.tracklist-inner.revealed { filter: blur(0); opacity: 1; pointer-events: all; }
.tracklist-inner.revealed li {
    opacity: 0; transform: translateY(-10px); animation: fadeInTrack 0.5s forwards;
}
.tracklist-inner.revealed li:nth-child(1) { animation-delay: 0.2s; }
.tracklist-inner.revealed li:nth-child(2) { animation-delay: 0.5s; }
.tracklist-inner.revealed li:nth-child(3) { animation-delay: 0.8s; }
.tracklist-inner.revealed li:nth-child(4) { animation-delay: 1.1s; }
.tracklist-inner.revealed li:nth-child(5) { animation-delay: 1.4s; }
.tracklist-inner.revealed li:nth-child(6) { animation-delay: 1.7s; }
.tracklist-inner.revealed li:nth-child(7) { animation-delay: 2.0s; }
.tracklist-inner.revealed li:nth-child(8) { animation-delay: 2.3s; }
@keyframes fadeInTrack { 
    to { opacity: 1; transform: translateY(0); } 
}

/* About Section */
.about-section {
    position: relative;
    background: rgba(40,40,40,0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    max-width: 800px;
    margin: 60px auto;
    color: #fff;
    text-align: left;
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ff8c00; /* Orange Titel */
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Bild optisch schön */
.about-image {
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(186,85,211,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,140,0,0.7);
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
}
/* Music Preview Section */
.music-preview-section {
    background: rgba(40,40,40,0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    width: 100%;        /* nimmt volle Breite */
    max-width: 660px;   /* begrenzt auf gleiche Größe wie Tracklist */
    margin: 60px auto;  /* zentriert */
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.music-preview-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ff8c00;
}

.music-preview-text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

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

.music-player {
    width: 100%;
    background: rgba(50,50,50,0.8);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.music-player:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(255,140,0,0.5);
}

.music-player h3 {
    color: #ff8c00;
    margin-bottom: 10px;
}
/* Interview Box */
.interview-section {
    position: relative;
    background: rgba(40,40,40,0.9);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    margin: 60px auto;
    color: #fff;
    max-width: 600px;
}

/* Interview Überschrift */
.interview-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ff8c00; /* Orange Überschrift */
    text-align: center;
}

/* Fragen (orange) und Antworten (weiß) */
.interview p strong {
    color: #ff8c00; /* Frage in Orange */
    display: block;
    margin-bottom: 5px;
}

.interview p {
    color: #ffffff; /* Antwort in Weiß */
    line-height: 1.6;
    font-size: 16px;
    margin: 15px 0;
}

/* Impressum & Datenschutz Boxen */
.page-content {
    background: rgba(40,40,40,0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 50px auto;
    color: #fff;
    text-align: left;
}

.page-content h1 {
    font-weight: 600;
    margin-top: 0;
    color: #ff8c00; /* Überschrift orange */
}

.page-content p {
    line-height: 1.6;
    font-size: 16px;
}

.page-content a {
    color: #ff8c00;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Trenner */
.interview hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 20px 0;
}
/* Fehler-Puls */
.tracklist-block.error { animation: errorPulse 0.3s ease-in-out 2; }
@keyframes errorPulse {
    0% { box-shadow: 0 0 15px rgba(255,0,0,0.8); }
    50% { box-shadow: 0 0 30px rgba(255,0,0,1); }
    100% { box-shadow: 0 0 15px rgba(255,0,0,0.8); }
}

/* Footer */
footer {
    text-align: center; padding: 40px 20px; font-size: 0.9em; opacity: 0.9; margin-top: auto;
    color: #ccc;
}
footer a { color: #ffffff; text-decoration: none; transition: color 0.3s ease; }
footer a:hover { color: #ff8c00; }
.insta-button { display: inline-block; margin-top: 10px; font-weight: bold; }