.wrapped-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #1a1a1a;
    /* Dark background */
    color: #f0f0f0;
    /* Light text color */
}

/* Header Section */
.header-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1DB954;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
}

/* Image Section */
.image-section {
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    /* Light border to make image pop */
}

/* Content Section */
.content-section {
    margin-top: 20px;
    text-align: center;
    color: #f0f0f0;
    /* Light text color */
}

.top-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #f0f0f0;
    /* Light text color */
}

.top-section h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #f0f0f0;
    /* Light text color */
}

.artists {
    font-size: 0.9em;
    color: #f0f0f0;
    /* Light text color */
    text-align: left;
}

.songs {
    font-size: 0.9em;
    color: #f0f0f0;
    /* Light text color */
    text-align: right;
}

ol {
    list-style: none;
    padding-left: 0;
}

ol li {
    font-weight: bold;
    margin: 3px 0;
    color: #f0f0f0;
    /* Light text color */
}

/* Stats Section */
.stats p {
    font-size: 1.1em;
    margin: 5px;
    color: #f0f0f0;
    /* Light text color */
}

.stats h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
    color: #f0f0f0;
    /* Light text color */
}

.stats h2 {
    font-size: 2em;
    margin-top: 5px;
    color: #f0f0f0;
    /* Light text color */
}