#playerContainer{
    display:none;

    max-width:900px;
    margin:auto;

    padding:25px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:25px;

    backdrop-filter:blur(10px);

    box-shadow:
        0 0 30px rgba(0,0,0,0.3),
        0 0 60px rgba(255,80,80,0.1);

    display:flex;
    gap:30px;
    align-items:center;
}

.cover-wrapper{
    flex-shrink:0;
}

.cover{
    width:220px;
    height:220px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:
        0 0 20px rgba(0,0,0,0.4),
        0 0 40px rgba(255,80,80,0.15);
}

.music-info{
    flex:1;
}

.music-info h2{
    font-size:2rem;
    margin-bottom:8px;
}

.artist{
    opacity:0.7;
    margin-bottom:20px;
    font-size:1rem;
    letter-spacing:1px;
}

.music-info iframe{
    width:100%;
    border:none;
    border-radius:12px;
}

button{
    margin-top:30px;

    padding:12px 20px;

    border:none;
    border-radius:12px;

    background:#ff5a5a;
    color:white;

    cursor:pointer;

    transition:0.2s;
}

.pdf-modal{
    position: relative;

    width: min(1400px, 95vw);
    height: 90vh;

    padding: 20px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(35,35,35,0.95),
            rgba(20,20,20,0.98)
        );

    box-shadow:
        0 15px 40px rgba(0,0,0,0.45);
}

.pdf-viewer{
    width: 100%;
    height: 100%;

    border: none;
    border-radius: 15px;
}

.event-modal{
    width: min(500px, 95vw);
}

.close-modal{
    position: absolute;

    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: white;
    font-size: 1.3rem;
    line-height: 1;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition: all 0.2s ease;
}

.close-modal:hover{
    background: rgba(255,255,255,0.18);

    transform: scale(1.08) rotate(90deg);
}

button:hover{
    transform:translateY(-2px);
}

@media (max-width: 768px){

    #playerContainer{
        flex-direction:column;
        text-align:center;
    }

    .cover{
        width:100%;
        max-width:300px;
        height:auto;
        aspect-ratio:1/1;
    }

    .music-info{
        width:100%;
    }

    #countdown{
        font-size:2rem;
    }
}

.pdf-card{
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 20px;

    border-radius: 18px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(8px);

    color: white;
}

.pdf-card h3{
    margin: 0 0 5px 0;
}

.pdf-card p{
    margin: 0;
    opacity: 0.7;
}

.pdf-btn{
    border: none;

    padding: 12px 20px;

    border-radius: 12px;

    background: rgba(255,255,255,0.08);

    color: white;

    cursor: pointer;

    transition: 0.2s;
}

.pdf-btn:hover{
    background: rgba(255,255,255,0.15);

    transform: translateY(-2px);
}

.Content-Musical{
    backdrop-filter: blur(5px);
    width: auto;
    height: 100%;
    padding-left: 50%;
    overflow: none;
    padding: 2%;
    display: flex;
    flex-direction: column;
    border: 2px solid white;
    border-radius: 0.7em 0.7em 0.7em;
    color: white;
    justify-content: center;
    align-items: center;
}

#HoerspielInfo{
    width: 40%;
    display: none;
}    

@media screen and (max-width: 450px){
    #HoerspielInfo{
        width: 90%;
    }
    .Content-Musical{
        flex-direction: column;
    }
    .column{
        display: flex;
        flex-direction: column !important;
    }
}

.column{
    display: flex;
    flex-direction: row;
}

a{
    color: rgb(46, 152, 209);
    text-decoration: none;
}