body, html {
    height: 100%;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    color: white;
    overflow: hidden;
}

.player-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/band_background.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
}

.player-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    background-color: rgba(59, 126, 126, 0.65);
}

.concert-banner {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.concert-date {
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concert-date .day {
    font-size: 16px;
    font-weight: 800;
}

.concert-date .month {
    font-size: 8px;
}

.concert-details {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 12px;
}

.concert-details .venue {
    font-weight: 700;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-grow: 1;
}

.sprint-timer {
    background-color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: #3B7E7E;
    height: 42px;
    width: 232px; /* 3*64px + 2*20px */
}

.sprint-timer .fa-otter {
    font-size: 20px;
}

.timer-icon {
    width: 24px;
    height: 18.65px;
}

.clock {
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
}

.info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.info-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.comments {
    cursor: default;
}

.count-badge {
    position: absolute;
    top: -14px;
    right: -10px;
    background-color: #FFFFFF;
    border-radius: 8px;
    width: 41px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-count {
    color: #3B7E7E;
    font-size: 14px;
    font-weight: 600;
}

.ratings {
    display: flex;
    gap: 20px;
}

.rating-btn {
    width: 32px;
    height: 32px;
    font-size: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.rating-btn:hover {
    color: white;
}

.control-bar {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 100%;
}

.song-info {
    display: flex;
    align-items: center;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
}

.album-cover {
    width: 96px;
    height: 96px;
    background-image: url('images/album_cover.webp');
    background-size: cover;
    box-shadow: 0px 0px 6px 4px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.song-details-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.song-title {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    flex-grow: 1;
}

.source-tag {
    display: inline-block;
    background-color: #3B7E7E;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 9px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-left: 8px;
}


.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.play-pause {
    font-size: 44px;
}

.tools {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0 10px;
}

.tool-group {
    display: flex;
}

.tool-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 18px;
    cursor: pointer;
}

.tool-btn:hover {
    background: rgba(255,255,255,0.1);
}

button {
    font-family: 'Work Sans', sans-serif;
}
