* {
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    text-decoration: none;
    outline: none;
}

body {
    background: #001A51 url('/assets/images/map.svg') center/cover no-repeat;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}
body.dimmed {
    background-color: #00143d;
}
body.dimmed .header {
    opacity: .3;
}

.slogan {
    width: 100%;
    height: auto;
}

.logo {
    display: inline-block;
    width: 140px;
}

.logo img {
    width: 100%;
    height: auto;
}

.status-message {
    font: 14px sans-serif;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    position: fixed;
    right: 16px;
    top: -60px;
    transition: .3s all ease-in-out;
}
.status-message.active { top: 16px; }
.status-message.info { background-color: #666; }
.status-message.success { background-color: #10b981; }
.status-message.error { background-color: #c00; }

.header {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.modal {
    position: fixed;
    width: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,39,120,0.5);
    backdrop-filter: blur(7px);
    padding: 60px;
    border-radius: 16px;
}

input[type="text"] {
    display: block;
    padding: 8px 16px;
    background-color: #001A51;
    width: calc(100% - 32px);
    border: none;
    border-radius: 8px;
    margin: 8px 0 16px 0;
    color: #fff;
    font-size: 20px;
}

select {
    display: block;
    padding: 8px 16px;
    background-color: #001A51;
    width: 100%;
    border: none;
    border-radius: 8px;
    margin: 8px 0 16px 0;
    color: #fff;
    font-size: 20px;
}

label {
    font-weight: 100;
    font-size: 20px;
}

.button {
    display: inline-flex;
    padding: 16px 48px;
    justify-content: flex-end;
    align-items: center;
    background-color: #fff;
    color: #001a51;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    border-radius: 26px;
    border: none;
    cursor: pointer;
}
.button:hover {
    background-color: #45a4e6;
}
.button:disabled {
    background-color: rgba(255,255,255,.1);
    cursor: not-allowed;
}

.close {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}
.close:before {
    content: '×';
    font: 32px sans-serif;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}




.song-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}




.card {
    /* background-color: rgba(0,26,81,.6); */
    padding: 16px 0;
    /* border-radius: 12px; */
}

.card.complete { border-top-color: #10b981; } /* Green for success */
.card.error { border-top-color: #ef4444; } /* Red for error */
.card.streaming { border-top-color: #f59e0b; } /* Yellow for streaming */

.song-heading h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: inline-block;
}
.song-heading {
    display: flex;
    align-content: center;
    justify-content: space-between;
}
.song-heading > div {
    display: inline-block;
}

.song-content p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
}

.audio-player {
    display: none;
}

.loading-spinner {
    border: 4px solid #45A4E5;
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden { display: none; }

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.path {
    position: fixed;
    bottom: 30vh;
    left: 0;
    width: 100%;
    height: auto;
}