@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'ChakraPetch';
    src: url('../fonts/ChakraPetch-Regular.ttf') format('truetype');
}
:root{
    --primary-red:      #e20613;
    --primary-red-t:    #e2061375;
    --primary-dark:     #1d1d1b;
    --primary-dark-t:   #1d1d1b85;
    --fontBebas:        'BebasNeue', sans-serif;
    --fontChakra:       'ChakraPetch', sans-serif;
    --text-color:       #fff;
    --text-color2:      #ccc;
    --letter-spacing:   0.2rem;
    --border-radius:    0.75rem;
    --transition:       500ms ease-in-out;
    --box-shadow:       -3px -3px 10px rgba(255,255,255,.5), 3px 3px 10px var(--primary-dark);
}
*{
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
    text-shadow: 1px 1px 5px var(--primary-dark);
}
html{
    font-family: var(--fontBebas);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: var(--letter-spacing);
    background-color: var(--primary-red);
    color: var(--text-color);
    display: flex;
    justify-content: center;
}
body{
    min-height: 100vh;
    min-height: 100svh;
    width: 100vw;
    display: flex;
    justify-content: center;
    background-position: center;
    background-attachment: fixed;
}
.wrapper{
    width: 90vw;
    max-width: 1200px;
    margin: 2.5rem 1rem 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
h2{
    width: 100%;
    max-width: 10rem;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    text-shadow: 1px 1px 1px var(--text-color),
        -1px 1px 1px var(--text-color),
        1px -1px 1px var(--text-color),
        -1px -1px 1px var(--text-color);
}
h3{
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--fontChakra);
}
a,
a:visited{
    color: var(--text-color2);
    text-decoration: none;
}
a:hover{
    color: var(--text-color);
    transition: var(--transition);
}
a:hover svg{
    fill: var(--text-color);
}
img{
    display: block;
    width: 50px;
    height: auto;
}
img.open_in_new{
    width: 1.5rem;
    height: 1.5rem;
}
.logo{
    background-color: var(--text-color);
}
button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0.25rem;
    background-color: transparent;
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
button:hover{
    background-color: var(--primary-red);
    box-shadow: -3px -3px 5px rgba(255,255,255,0.5) inset,3px 3px 5px var(--primary-dark) inset;
    transition: var(--transition);
    cursor: pointer;
}
button:hover svg{ fill: var(--text-color)}
header{
    width: 100%;
    margin-top: 1rem;
    padding: 8rem 1rem 0.5rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: var(--border-radius);
    background-color: var(--primary-red-t);
}
header img{
    position: absolute;
    top: -3rem;
    width: 10rem;
    height: auto;
    border: 2px solid var(--primary-red-t);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
 .anbieterliste{
    width: 100%;
    height: 100%;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "eins zwei"
        "drei sechs"
        "vier sechs"
        "fuenf sechs";
    @media(orientation:portrait),(max-width:799px){
        grid-template-columns: 1fr;
        grid-auto-rows: max-content;
        grid-template-areas:
            "eins"
            "zwei"
            "drei"
            "vier"
            "fuenf"
            "sechs"
            "sechs"
            "sechs";
    }
 }
.anbieterliste div{
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border: 2px solid var(--primary-red);
    background-color: var(--primary-red-t);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.anbieterliste div:hover{
    background-color: var(--primary-red);
    overflow: hidden;
    box-shadow: -3px -3px 5px rgba(255,255,255,0.5) inset,3px 3px 5px var(--primary-dark) inset;
    transition: var(--transition);
}
.spotify{ grid-area: eins; }
.apple-music{ grid-area: zwei; }
.amazon-music{ grid-area: drei; }
.tidal{ grid-area: vier; }
.deezer{ grid-area: fuenf; }
.youtube{
    padding: 0 !important;
    grid-area: sechs;
}
.anbieterliste a{
    width: 100%;
    height: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.anbieterliste a span{
    flex: 1;
    text-align: center;
}
.anbieterliste iframe{
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius);
}
#meta-controls{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    @media(max-width:529px){
        flex-direction: column;
        margin-top: 1rem;
        align-items: center;
    }
}
#releasedate{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    gap: 0.5rem;
    top: 1rem;
    right: 1rem;
    text-align: right;
    @media(max-width:699px){
        position: relative;
        top: unset;
        right: unset;
        flex-direction: row;
    }
}
#releasedate span{
    max-width: 6rem;
}
#preview{
    position: absolute;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 0.5rem;
    bottom: 1rem;
    right: 1rem;
    @media(max-width:699px){
        height: 100%;
        position: relative;
        bottom: unset;
        right: unset;
    }
}
#qr{
    width: 200px;
    height: auto;
    position: absolute;
    top: 1rem;
    left: 1rem;
    @media(max-width:799px){ display: none;}
}
.social-media{
    width: 100%;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--primary-red-t);
    border-radius: var(--border-radius);
}
.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0.25rem;
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.social-media a:hover{
    background-color: var(--primary-red);
    box-shadow: -3px -3px 5px rgba(255,255,255,0.5) inset,3px 3px 5px var(--primary-dark) inset;
    transition: var(--transition);
}
.social-media a img{
    width: 100%;
    height: 100%;
    filter: brightness(75%);
}
.social-media a:hover img{ 
    filter: brightness(100%);
    transition: var(--transition);
}
section{
    font-family: var(--fontChakra);
    letter-spacing: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
section h2{
    max-width: 100%;
    font-weight: 800;
}
section h3{
    margin: 0.5rem 0;
    text-align: left;
    font-weight: 700;
}
section p{
    text-align: center;
    line-height: 1.5;
}
.textHighlight{
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background-color: var(--primary-red-t);
    border-radius: var(--border-radius);
}
section details{
    width: 100%;
    padding: 0.5rem;
    border-radius: var(--border-radius);
}
section details:open summary{
    font-weight: 800;
    margin-bottom: 1rem;
}
section details p{
    margin: 0.5rem 0;
    text-align: justify;
}
p.quelle{ font-size: 0.75rem; }