.branding, body, html {
    color: var(--text-color)
}

:root {
    --background-color: rgb(0, 0, 0);
    --text-color: #ffffff
}

@font-face {
    font-family: Akira;
    src: url('https://assets.radioapi.me/misc/akira-CqXEAnsY.woff2') format('woff2');
    font-weight: 400;
    font-style: normal
}

body, html {
    font-family: 'merriweather-bold, serif';
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden
}

.player {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    transition: background-color .3s;
    position: relative
}

.branding {
    position: absolute;
    top: 20px;
    font-family: Akira;
    font-size: 1rem
}

.artist, .title {
    font-family: Merriweather, serif;
    font-weight: 700
}

.artwork {
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    transition: transform .3s
}

.artwork:hover {
    transform: scale(1.03)
}

.player-info {
    text-align: center;
    width: 80%;
    max-width: 600px
}

.title {
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: .5rem
}

.artist {
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.controls {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem
}

.play-button, .stop-button {
    background: rgba(255, 255, 255, .1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 50px;
    font-family: Akira
}

.play-button:hover, .stop-button:hover {
    background: rgba(255, 255, 255, .2)
}

.icon {
    font-size: 24px;
    margin-right: 10px
}

@media (max-width: 768px) {
    .artwork {
        width: 70vw;
        height: 70vw
    }

    .title {
        font-size: 2rem
    }

    .artist {
        font-size: 1.25rem
    }
}
