:root {
  --accent: #c7c7c7;
  --bg-dark: #070707;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}
::selection {
    background-color: rgba(209, 209, 209, 0.4); /* 40% Deckkraft deines Graus */
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Bold.woff2') format('woff2'); /* Hier die dicke Datei */
    font-weight: 700; /* Oder 900, falls du die Black-Datei nimmst */
    font-style: normal;
}
	  
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
  height: 100vh; width: 100vw; font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark); color: white; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

#bg-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  filter: blur(80px) brightness(0.2); z-index: -1; transform: scale(1.1);
}

.glass-wrapper {
  width: 95%; max-width: 1150px; height: 85vh;
  background: var(--glass); backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border); border-radius: 40px;
  display: flex; flex-direction: column; padding: 40px; position: relative;
  overflow: hidden;
}

header {
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	margin-bottom: 20px; 
	flex-shrink: 0; 
}
.logo { 
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--accent);
	text-transform: lowercase; 
		}
.accent-header-btn {
  /*background: var(--accent); */
	  border: none;
	  font-size: 1.2rem;
	  color: #000;
	  padding: 10px 20px;
	  font-weight: 400;
      border-radius: 10px;
	  cursor: pointer;
	  display: flex;
	  align-items: center;
	  gap: 8px;
}

.player-main {
	display: flex;
	flex: 1;
	gap: 50px;
	overflow: hidden;
}

/* DESKTOP LEFT */
.player-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; 
}
.cover-container { 
	width: 100%;
	max-width: 320px;
	aspect-ratio: 1;
	border-radius: 25px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 20px 50px rgba(0,0,0,0.5); 
}
#current-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.4s ease-in-out; 
}

.now-playing-info 
	  { width: 100%;
		  text-align: center;
		  margin-top: 25px; 
	  }
#track-count { 
	opacity: 0.5;
	font-size: 1rem;
	margin-top: 5px; 
	    font-size: 0.85rem;
    opacity: 0.5;
}
#visualizer {
	width: 100%;
	height: 70px;
	margin-top: 20px; 
}

/* DESKTOP RIGHT */
.player-right { 
    flex: 1.4; display: flex; flex-direction: column; 
    background: rgba(0,0,0,0.25); border-radius: 35px; padding: 30px; 
    overflow: hidden; justify-content: flex-start; 
}


.playlist-container::-webkit-scrollbar { width: 4px; }
.playlist-container::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 10px; }

#track-list li { 
    padding: 12px 18px; margin-bottom: 8px; border-radius: 14px; 
    cursor: pointer; display: flex; gap: 15px; transition: all 0.3s ease; 
}
  

@media (hover: hover) {
    #track-list li:hover:not(.active) { background: rgba(209, 209, 209, 0.2); transform: translateX(5px); }
}
#track-list li.active { background: var(--accent); color: #000; font-weight: 400; }

.controls-container { 
	width: 100%;
	padding-top: 20px;
	border-top: 1px solid var(--glass-border);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
		}
	  
.main-controls { 
	display: flex;
	flex-direction: column;
	align-items: center; 
	gap: 15px; /* Abstand zwischen Buttons und Lautstärke */
    width: 100%;
    margin-top: 15px;
}
	  
.control-btns { 
	display: flex;
	align-items: center; 
	justify-content: center;
	gap: 30px; 
}
	  
.volume-container {
    width: 130px; /* Kompakt */
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.volume-container:hover {
    opacity: 1;
}
	  
.playlist-container {
	flex: 0 1 auto;
	overflow-y: auto;
	margin-bottom: 10px;
	padding-right: 5px;
}	
.progress-area { 
	display: flex;
	align-items: center;
	gap: 15px; margin-bottom: 20px; 
	width: 90%; /* Nutzt fast die volle Breite des rechten Containers */
    max-width: 800px; /* Optional: Verhindert, dass sie auf riesigen Monitoren ZU lang wird */
}
.progress-area span {
	min-width: 45px;
	text-align: center;
	font-size: 0.85rem; 
}
.slider-container { 
	flex: 1;
	display: flex;
	align-items: center;
}

#progress { 
    -webkit-appearance: none; width: 100%; height: 5px; 
    background: linear-gradient(to right, var(--accent) 0%, rgba(255,255,255,0.1) 0%);
    border-radius: 5px; cursor: pointer; outline: none;
    transition: height 0.2s ease; /* Animation für die Dicke */
}

/* Fortschrittsbalken wird dicker bei Hover */
.slider-container:hover #progress { 
	height: 8px; 
}

#progress::-webkit-slider-thumb { 
	-webkit-appearance: none;
	width: 14px; height: 14px;
	background: #fff;
	border: 2px solid var(--accent);
		border-radius: 50%; transition: transform 0.2s; 
		}
.slider-container:hover #progress::-webkit-slider-thumb { 
	transform: scale(1.2); 
}


/* BUTTON HOVER ANIMATIONEN */
.main-controls button { 
    background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; 
    transition: all 0.3s ease;
}

.main-controls button:hover:not(.play-btn) { 
    color: var(--accent); 
    transform: scale(1.2); 
    filter: drop-shadow(0 0 5px var(--accent));
}

.play-btn { 
    width: 60px; 
    height: 60px; 
    background: var(--accent) !important; /* Dein Gold */
    color: #000000 !important;           /* Zwingt das Icon auf Schwarz */
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease !important;
}

.play-btn i {
    color: #000000 !important; /* Sicherungskopie für das FontAwesome Icon */
}

.play-btn:hover { 
    transform: scale(1.1); 
    box-shadow: 0 0 20px rgba(156, 146, 0, 0.4);
    background: var(--accent) !important; /* Bleibt Gold beim Hover */
}


#volume-slider { -webkit-appearance: none; flex: 1; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; outline: none; }

/* ============================================================
   ALBUM MODAL - KOMPLETT KORRIGIERT (FÜR DEIN HTML)
   ============================================================ */

#album-selection { 
    position: fixed; 
    inset: 0; 
    /* Glas-Look: Video-Blur (Overlay) scheint durch */
    background: rgba(5, 5, 5, 0.9); 
    backdrop-filter: blur(40px); 
    -webkit-backdrop-filter: blur(40px);
    z-index: 10001; /* Über dem bg-blur-overlay */
    padding: 80px 20px 40px; 
    overflow-y: auto; 
    transition: opacity 0.5s ease, visibility 0.5s ease; 
}

/* Zustand wenn geschlossen */
.album-hidden { 
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none; 
}

/* Dein Font-Awesome Schließen-Button */
#close-modal.close-modal-btn { 
    position: fixed; 
    top: 25px; 
    right: 30px; 
    font-size: 2rem; 
    color: rgba(255, 255, 255, 0.4); 
    cursor: pointer; 
    z-index: 1100; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Zentrierung für die Rotation */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

#close-modal.close-modal-btn:hover { 
    color: var(--accent); 
    transform: rotate(90deg); /* Der magische Dreheffekt */
}

/* DEIN ORIGINAL GRID & CARD DESIGN (Unverändert) */
.album-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
    gap: 25px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.album-card { 
    cursor: pointer; 
}

.album-card .img-container { 
    width: 100%; 
    aspect-ratio: 1; 
    overflow: hidden; 
    border-radius: 15px; 
    margin-bottom: 10px; 
}

.album-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

/* ALBUM CARD: GROSS & GOLD LOOK */
.album-card h3 {
    font-size: 1.2rem !important; 
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-top: 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.album-card p {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease;
}

/* HOVER EFFEKTE */
@media (hover: hover) {
    .album-card:hover h3,
    .album-card:hover p {
        color: var(--accent) !important; 
        text-shadow: 0 0 10px rgba(156, 146, 0, 0.5); 
    }

    .album-card:hover img {
        transform: scale(1.05);
        filter: brightness(1.1); 
    }
}

/* MOBILE ANPASSUNG */
@media screen and (max-width: 1024px) {
    .album-card h3 { font-size: 1.05rem !important; }
    .album-card p { font-size: 0.9rem !important; }
}
/* DEINE MOBILE-KORREKTUR */
@media screen and (max-width: 1024px) {
    .album-card h3 {
        font-size: 1.05rem !important;
    }
    .album-card p {
        font-size: 0.9rem !important;
    }
}
@media screen and (max-width: 1024px) {
  .glass-wrapper { 
      width: 100% !important; 
      height: 100dvh !important; 
      border-radius: 0 !important; 
      padding: 10px 15px 0 15px !important; 
      display: flex; 
      flex-direction: column;
  }
  
  header { 
      flex: 0 0 auto; 
      margin-bottom: 5px; 
  }

  .player-main { 
      flex: 1; 
      flex-direction: column !important; 
      overflow: hidden; 
      display: flex;
      gap: 5px !important; /* Minimiert den Platz zwischen den Sektionen */
  }
  
  .player-left { 
      flex: 0 0 auto !important; 
      margin-bottom: 0px !important; 
      padding-bottom: 5px !important; /* Enger an das Cover gezogen */
      border-bottom: 1px solid var(--glass-border);
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
  }

  .cover-container { 
      max-width: 140px !important; /* Etwas kleiner für mehr Platz für die Liste */
      border-radius: 12px; 
      margin-bottom: 5px !important;
  }

  /* Visualizer flacher machen, damit er nicht so viel Leerraum erzeugt */
  #visualizer {
      height: 45px !important;
      width: 80%;
      margin-top: 5px !important;
  }
  
  .now-playing-info { margin-top: 2px !important; }
  .now-playing-info h1 { font-size: 1rem !important; margin-bottom: 0px; line-height: 1.2; }
  .now-playing-info p { font-size: 0.75rem !important; opacity: 0.6; margin-top: 2px; }

  .player-right { 
      flex: 1 !important; 
      background: transparent !important; 
      padding: 0 !important; 
      overflow: hidden; 
      display: flex;
      flex-direction: column;
      min-height: 0;
  }

  .playlist-container {
      flex: 1;
      overflow-y: auto;
      padding: 5px 5px; /* Puffer oben/unten reduziert */
      -webkit-overflow-scrolling: touch;
  }

  #track-list li {
      padding: 10px 15px;
      margin-bottom: 4px;
      border-radius: 10px;
  }

  #track-list li.active {
      background: var(--accent);
      color: #000;
      font-weight: 400;
      border-radius: 14px !important; 
      margin-left: 5px;   
      margin-right: 5px;  
  }
	.controls-container { 
      flex: 0 0 auto !important;
      background: rgba(7,7,7,0.98);
      backdrop-filter: blur(20px);
      
      /* ÄNDERUNG: Padding unten von 35px auf 55px erhöht */
      /* Und die Safe-Area-Variable für moderne Handys hinzugefügt */
      padding: 15px 15px calc(55px + env(safe-area-inset-bottom)) !important; 
      
      margin-left: -15px; 
      width: calc(100% + 30px);
      border-top: 1px solid var(--glass-border);
      
      /* Verhindert, dass der Inhalt innerhalb der Controls verrutscht */
      display: flex;
      flex-direction: column;
  }

  .main-controls { justify-content: center; gap: 15px; }
  .play-btn { width: 50px; height: 50px; font-size: 1.2rem; }
  .progress-area { margin-bottom: 10px; }
  .volume-container { display: none; } 
  .logo { font-size: 1rem; }
  .accent-header-btn { font-size:1rem;}
}

/* Texteinstellungen (gelten Global, sofern nicht von Mobile überschrieben) */
.now-playing-info h1 {
    font-size: 1.8rem;
    margin-bottom: 2px;
    font-weight: 700;
}

#album-title {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

#track-count {
    font-size: 0.85rem;
    opacity: 0.5;
}
/* Ersetze deinen bestehenden Block am Ende durch diesen hier: */
.now-playing-info h1, 
#album-title, 
#track-count,
#track-title,    /* Neu hinzugefügt */
#track-list,
#current-cover,
#bg-overlay {     /* Damit auch der Hintergrund weich fadet */
    transition: opacity 0.4s ease-in-out !important;
}

.logo-wrapper {
    display: flex;
    align-items: center; /* Zentriert Text und Logo vertikal zueinander */
    gap: 15px;           /* Abstand zwischen Schrift und Logo */
}

.logo {
    /* Deine bestehenden Styles bleiben gleich */
    margin-bottom: 0;    /* Sicherstellen, dass kein alter Abstand stört */
}

.side-logo {
    height: 40px;        /* Passt die Höhe an die Schriftgröße an */
    width: auto;
    border-radius: 6px;  /* Leicht abgerundete Ecken */
    object-fit: contain;
    /* mix-blend-mode: screen; */ /* Optional: Falls das JPG einen schwarzen Hintergrund hat */
}

/* Mobile Optimierung */
@media screen and (max-width: 1024px) {
    .side-logo {
        height: 30px;    /* Etwas kleiner auf dem Handy */
    }
    .logo-wrapper {
        gap: 10px;
    }
}
#landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hintergrundfarbe nur als Fallback, da Video drüber liegt */
    background: #070707; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden; /* Wichtig, damit das Video nicht überläuft */
    transition: opacity 1s ease, visibility 1s;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Hinter dem Inhalt */
    transform: translate(-50%, -50%);
    background-size: cover;
    filter: brightness(0.6) blur(0px); /* Verdunkelt und weichgezeichnet */
}

.landing-content {
    text-align: center;
    color: white;
    z-index: 10;
    /* Ein hauchdünner Glaseffekt für den Hintergrund, wie im Bild */
   /* background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);*/
    padding: 60px 80px;
    /*border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);*/
}

.landing-content h1 {
	font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 400; /* Hier wird die Schrift dünn */
    letter-spacing: 12px; /* Weites Spacing für den edlen Look */
    text-transform: lowercase; /* Alles klein wirkt oft moderner */
    margin: 0;
    color: #fff;
}

.landing-content p {
	font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    margin-bottom: 40px;
}

#enter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
}

#enter-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
/* Muss in dein style.css */
.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 1s ease, visibility 1s;
}
/* Dein vorhandenes Keyframe bleibt bestehen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
	  /* Container für vertikale Ausrichtung von Logo und Info-Link */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.info-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-left: 54px; /* Versatz damit es unter dem "s" von seirafim startet */
    padding: 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-btn:hover { color: var(--accent); }
	  
/* ============================================================
   SIDEBAR & BACKGROUND BLUR (KOMPLETT KORRIGIERT)
   ============================================================ */
   
/* 1. Das Hintergrund-Overlay (Die "Glasscheibe" hinter der Sidebar) */
#bg-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); 
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 9998; /* Direkt unter der Sidebar */
    pointer-events: none;
    transition: backdrop-filter 0.5s ease, background 0.5s ease;
}
/* Aktivierter Zustand des Overlays */
body.sidebar-open #bg-blur-overlay {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.5); /* Dunkelt den Hintergrund edel ab */
    pointer-events: auto; /* Verhindert Klicks auf den Player/Landing Page */
}
/* 2. Die Sidebar selbst */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: rgba(15, 15, 15, 0.85); 
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
    z-index: 10000; /* Ganz oben */
    padding: 60px 40px;
    border-right: 1px solid var(--glass-border);
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.5);
    
    /* Wichtig: Kein normaler 'filter', nur transform für die Animation */
    filter: none !important;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sidebar-hidden { 
    transform: translateX(-100%); 
    }
/* 3. Schließen-Button (Fancy Dreheffekt) */
#closeSidebarBtn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    font-weight: 200;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 10001;
}
#closeSidebarBtn:hover {
    color: white;
    transform: rotate(90deg);
}
/* 4. Sidebar Inhalt & Links */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 40px;
}
.sidebar-section { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}
.section-label {
    font-size: 0.6rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
}
.sidebar-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.sidebar-link:hover {
    color: var(--accent);
    padding-left: 8px;
}

/* 5. Body Fix wenn offen */
body.sidebar-open {
    overflow: hidden;
}
.landing-legal {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
	z-index: 10;
}
.landing-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.landing-legal a:hover { 
	color: #fff; 
}
/* ==========================================================================
   MODAL - GLASS DESIGN & ANIMATION
   ========================================================================== */

/* Das äußere Overlay (Hintergrund-Dunkelheit und Blur) */
.modal {
    display: none; /* Wird per JS auf 'flex' gesetzt */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dunklerer Schleier für Fokus */
    backdrop-filter: blur(15px); /* Blur-Effekt auf dem gesamten Hintergrund */
    opacity: 0;
    transition: opacity 0.4s ease;
    align-items: center;
    justify-content: center;
}
/* Sichtbarer Zustand des Overlays */
.modal.show {
    opacity: 1;
}
/* Das Modal-Fenster (Die Glasscheibe) */
.modal-glass-content {
    background: rgba(15, 15, 15, 0.85); /* Dunkle Transparenz */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px); /* Starker Blur im Fenster selbst */
    padding: 60px 50px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border-radius: 15px; /* Elegante Ecken */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);    
    /* Animation: Startet leicht tiefer */
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
/* Animation beim Öffnen: Sanftes Hochgleiten & Einblenden */
.modal.show .modal-glass-content {
    transform: translateY(0);
    opacity: 1;
}
/* Animation beim Schließen: Sinkt wieder nach unten ab */
.modal:not(.show) .modal-glass-content {
    transform: translateY(40px);
    opacity: 0;
}
/* --- INHALTE IM MODAL --- */
#modal-body-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}
#modal-body-content h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}
#modal-body-content h2 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent, #fff);
    margin-top: 30px;
    margin-bottom: 10px;
}
#modal-body-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}
#modal-body-content address {
    font-style: normal;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}
/* Die Schließen-Taste (X) */
.close-modal-x {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal-x:hover {
    color: #fff;
    transform: rotate(90deg); /* Kleiner verspielter Effekt */
}

/* Scrollbar-Styling für das Modal (dezent) */
.modal-glass-content::-webkit-scrollbar {
    width: 4px;
}
.modal-glass-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
/* Ändere .container zu .legal-container (oder wie auch immer deine Klasse heißt) */
.legal-container ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 15px 0;
}

.legal-container li {
    margin-bottom: 8px;
    list-style-type: "• ";
}

.address-block {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Styling für Links im legal-container */
.legal-container a, 
.legal-container a:visited, 
.legal-container a:hover, 
.legal-container a:active {
    color: #cccccc;          /* Ein helles, weiches Grau */
    text-decoration: none;   /* Entfernt den Unterstrich */
    border-bottom: 1px solid rgba(204, 204, 204, 0.3); /* Dezente Unterstreichung */
    transition: opacity 0.3s ease;
}

/* Optional: Nur beim Drüberfahren (Hover) etwas heller werden lassen */
.legal-container a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}
/* --- SMOOTH SCROLLING FIXES --- */

/* Für das Datenschutz- & Impressum-Modal */
.modal-glass-content {
    overflow-y: auto !important; /* Sicherstellen, dass Scrollen aktiv ist */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Für das Alben-Auswahl-Modal */
#album-selection {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Hardware-Beschleunigung für beide, um Ruckeln zu verhindern */
.modal-glass-content, #album-selection {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Platz am Ende für besseres Scroll-Gefühl */
#modal-body-content, .album-grid {
    padding-bottom: 50px;
}
/* Der Container für das Zitat */
#quote-display {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03); /* Hauchdünner Hintergrund */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Dezente Kante */
    border-radius: 16px; /* Weichere Ecken */
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 1. Die Zitat-Box harmonisieren */
#quote-display {
    margin: 40px 0; /* Mehr Platz nach oben und unten */
    padding: 30px;
    background: rgba(255, 255, 255, 0.03); /* Ganz zarter Glass-Effekt */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Hauchdünne Kante */
    text-align: center;
}

#quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 15px 0;
}

#quote-author {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 2. Das Copyright auf Distanz halten */
.legal-footer, 
footer.legal-footer {
    margin-top: 10px; /* Deutlich mehr Abstand zum Zitat */
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Dezente Trennlinie */
    padding-top: 20px;
}
/* Versteckt den Volume-Slider auf Tablets und Handys */
/* Erkennt Touch-Geräte (iPad/iPhone) und versteckt die gesamte Volume-Sektion */
@media (pointer: coarse) {
    .volume-container, 
    .volume-controls, 
    #volume-slider, 
    .fa-volume-up, 
    .fa-volume-down,
    [id*="volume"] { 
        display: none !important; 
    }
}