.album-filter,.pagination {
    display:none;
}



/* ============================================ */
/* ZERO MUSIC – PLAYER PAGE ONLY */
/* ============================================ */

.zero-track-page {
    padding: 20px 0;
}

/* Nur innerhalb der Track-Seite */

.zero-track-page h1 {
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 18px;
}

.zero-track-page .meta {
    color: #eaeaea;
      font-size: 0.85rem !important;
}

.zero-track-page .meta strong {
    color: #ffffff;
    font-size: 0.85rem !important;
}

.zero-track-page .description {
    color: #e2e2e2;
    opacity: 0.85;
    line-height: 1.6;
    margin-top: 15px;
    font-size: 1.1rem !important;
}

.zero-track-page img {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Native Audio Reset minimal */

.zero-track-page audio {
    width: 100%;
    margin-top: 15px;
}
/* ============================================ */
/* SUNO LINK – MINIMAL ICON STYLE */
/* ============================================ */

.suno-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 4px;
    transition: 0.2s ease;
}

.suno-link:hover {
    opacity: 0.7;
}

.suno-link .material-symbols-outlined {
    font-size: 20px;
}

//* ZERO TRACK LIST – TRACK CARDS */
.zero-track-list-page {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 40px 20px;
    color: #ffffff;
    
}

/* Füge den Hintergrund-Overlay hinzu */
.zero-track-list-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

/* Layout für die Track-Cards */
.track-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Mehrere Karten nebeneinander */
    gap: 20px;
    margin-top: 20px;
}

/* Track-Karten-Styling */
.track-card {
   
    padding: 20px;
        margin-bottom: 15px;

   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.track-card:hover {
    transform: translateY(-5px); /* Leichter Aufwärtseffekt */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Größerer Schatten bei Hover */
}


/* Track-Cover-Bilder für Hochformat */
/* Track-Cover mit versetztem Schatten */
.track-cover {
    width: 100%;
    height: 400px; /* Erhöhte Höhe für das Hochformat (Verhältnis 4:3 oder 2:3) */
    object-fit: cover; /* Skaliert das Bild, ohne es zu verzerren */
    border-radius: 4px;
    margin-bottom: 15px;
    border:1px solid rgb(29, 28, 28);
   box-shadow: 6px 6px 5px rgba(27, 26, 26, 0.5); /* Deutlicherer, klarer Schatten */
}

.track-cover_landing {
    width: 100%;
    height: 200px; /* Erhöhte Höhe für das Hochformat (Verhältnis 4:3 oder 2:3) */
    object-fit: cover; /* Skaliert das Bild, ohne es zu verzerren */
    border-radius: 2px;
    margin-bottom: 15px;
    
}

/* Track-Info */
.track-info {
    color: #eaeaea;
    padding-top: 10px;
}

.track-info h2 {
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.track-info a {
    color: #fff;
    text-decoration: none;
}

.track-info a:hover {
    opacity: 0.8;
}

/* Track-Dauer */
.track-duration {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Material Icon für den Track */
.material-symbols-outlined {
    font-size: 1.0rem;
    vertical-align: middle;
    margin-right: 10px;
    color: rgb(255, 255, 255);
}

/* Responsive Anpassungen für die Track-Liste */

/* Für Bildschirmgrößen bis max. 900px (Tablet und kleinere Geräte) */
@media (max-width: 900px) {
    .track-list {
        grid-template-columns: repeat(2, 1fr); /* 2 Karten nebeneinander */
        gap: 15px; /* Geringerer Abstand zwischen den Karten */
    }

    .track-cover {
        height: 250px; /* Etwas höhere Bilder auf Tablets */
    }

    .track-info h2 {
        font-size: 1rem;
    }

    .track-duration {
        font-size: 0.9rem;
    }
}

/* Für Bildschirmgrößen bis max. 600px (Mobile Geräte) */
@media (max-width: 600px) {
    .track-list {
        grid-template-columns: repeat(2, 1fr); /* 2 Karten nebeneinander auf Handys */
        gap: 15px;
    }

    .track-cover {
        height: 220px; /* Etwas kleinere Bilder auf mobilen Geräten */
    }

    .track-info h2 {
        font-size: 0.9rem; /* Kleinere Schriftgröße für Titel */
    }

    .track-duration {
        font-size: 0.85rem; /* Kleinere Schriftgröße für die Dauer */
    }
}
/* ============================================ */
/* ZERO ALBUM PAGE */
/* ============================================ */


.track-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.track-card {
   
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.track-cover {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Box für Track-Info und Player */
.track-info-box {
    width: 100%;
    background-color: #0c0c0c;
    border-radius: px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

/* Titel und Track Info */
.track-info {
    margin-bottom: 10px;
    width: 100%;
}

.track-player {
    width: 100%;
    margin-top: 10px;
}

/* Mini-Player */
.track-player audio {
    width: 100%;
    max-width: 280px;  /* Kompakte Größe */
    height: 30px;      /* Kleinere Höhe */
    margin-top: 5px;
    border: none;
    background: transparent;
}

/* Track-Dauer */
.track-duration {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}


/* Optional: Kopfhörer-Icon anpassen, damit es mit dem Titel gut aussieht */
.material-symbols-outlined {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Responsive */

@media (max-width: 900px) {

    .album-header {
        flex-direction: column;
    }

    .album-cover {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================ */
/* ZERO ALBUM LIST – ALBUM CARDS */
/* ============================================ */

.zero-album-list-page {
    padding: 20px;
}

.album-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Mehrere Karten nebeneinander */
    gap: 20px;
    margin-top: 20px;
    max-width: 1200px; /* Maximale Breite für das Grid */
    margin-left: auto;
    margin-right: auto; /* Zentriert das Grid */
}

.album-card {
   
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.album-card:hover {
    transform: translateY(-5px);
}



.album-info {
    color: #eaeaea;
    padding-top: 10px;
}

.album-info h2 {
    font-size: 1.2rem;
    margin: 0;
}

.album-info a {
    color:rgb(177, 189, 8);
    text-decoration: none;
}

.album-info a:hover {
    opacity: 0.8;
}

.album-info .release-date {
    font-size: 0.85rem;
    opacity: 0.8;
}

.album-info .description {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .album-list {
        grid-template-columns: 1fr 1fr;
    }

    .album-cover {
        height: 180px;
    }

    .album-info h2 {
        font-size: 1rem;
    }

    .album-info .description {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .album-list {
        grid-template-columns: 1fr;
    }
}

/* Hintergrundbild für die Album-Seite */
.zero-track-page {
    position: relative;
    
    padding: 40px 20px;
    color: #ffffff; /* Weißer Text für gute Lesbarkeit */
    
}

/* Füge den Hintergrund-Overlay mit einer geringeren Deckkraft hinzu */
.zero-track-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1); /* Sehr schwacher Überzug für das Bild (10% Opazität) */
    z-index: -1; /* Hintergrund bleibt hinter dem Inhalt */
}

/* Weitere Anpassungen, um die Sichtbarkeit zu verbessern */
.album-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}



.album-meta h1 {
    font-weight: 500;
    margin-bottom: 12px;
}

.album-tracks {
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Stil für den Inhalt, um den Text besser lesbar zu machen */
.album-meta,
.album-tracks {
    background-color: rgba(0, 0, 0, 0.5); /* Dunkler Hintergrund für den Text */
    padding: 20px;
    border-radius: 8px;
}

.track-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.track-row a {
    color: #ffffff;
    text-decoration: none;
}

.track-row a:hover {
    opacity: 0.7;
}

.track-number {
    width: 40px;
    opacity: 0.5;
}

.track-duration {
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Responsive Anpassungen */
@media (max-width: 900px) {
    .album-header {
        flex-direction: column;
    }

    .album-cover {
        width: 100%;
        max-width: 280px;
    }
}


/* FRONT PLAYER */


.zero-player {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

.player-left {
    display: flex;
    align-items: center;
}

.player-cover {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-left: 50px;
}

.player-title, .player-artist {
    font-size: 14px;
}

.player-center {
    display: flex;
    align-items: center;
}

.player-controls {
    display: flex;
    align-items: center;
}

.player-icon {
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer;
}

.player-play {
    cursor: pointer;
}