html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: black;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
        url("/progress/irida.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Georgia, serif;
    padding: 56px 16px;
    box-sizing: border-box;
}

h1 {
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 48px;
    font-size: 1.5rem;
}

.charts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    max-width: 960px;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 140px;
}

.pie {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.6s ease;
}

.pie-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.song-name {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    word-break: break-word;
}

.total-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.total-label {
    margin: 0;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.pie-total {
    width: 220px;
    height: 220px;
}

.pie-inner-total {
    width: 150px;
    height: 150px;
    font-size: 1.8rem;
}