.audio-player-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.song-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: #18181a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.song-card__media {
    flex: 0 0 auto;
    max-width: 500px;
}

.song-card__image {
    display: block;
    width: 200px;
    height: 200px;
    max-width: 500px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.song-card__content {
    flex: 1 1 auto;
    min-width: 0;
}

.song-card__content h2,
.song-card__content h3 {
    color: inherit;
    margin: 0 0 0.5rem;
}

.song-card__content p {
    color: inherit;
}

.song-card__meta {
    margin: -0.15rem 0 0.75rem;
    color: #c8c8c8;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.vibe-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.vibe-pill {
    border: 1px solid #515052;
    background: #000103;
    color: #fffffa;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
}

.vibe-pill:hover,
.vibe-pill.active {
    background: #ff312e;
    border-color: #ff312e;
    color: #fffffa;
}

.current-vibe {
    font-size: 0.95rem;
    color: #c8c8c8;
    margin: 0.5rem 0 0.75rem;
}

.current-vibe.current-vibe--highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 0.7rem;
    background: #ffd84d;
    color: #2f2400;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.song-card.song-card--full-track .current-vibe.current-vibe--highlight {
    color: #2f2400;
}

.audio-song-more {
    color: #bbb;
    font-size: 0.98rem;
    margin-left: 0.2rem;
    align-self: center;
}

.audio-song-card audio {
    width: 100%;
}

.audio-song-choice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #515052;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.audio-song-choice input[type="radio"] {
    accent-color: #ff312e;
    inline-size: 1.25rem;
    block-size: 1.25rem;
    flex: 0 0 auto;
}

.audio-song-select-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 10rem;
    color: #fffffa;
    font-weight: 800;
    cursor: pointer;
}

.audio-song-select-dot {
    width: 0.85rem;
    height: 0.85rem;
    border: 2px solid #ff312e;
    border-radius: 999px;
    display: inline-block;
}

.audio-song-choice:has(input[type="radio"]:checked) {
    border-color: #ff312e;
    background: rgba(255, 49, 46, 0.18);
    box-shadow: 0 0 0 2px rgba(255, 49, 46, 0.28);
}

.audio-song-choice:has(input[type="radio"]:checked) .audio-song-select-dot {
    background: #ff312e;
}

.audio-preview-pill {
    margin-left: auto;
}

.player-playlist-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 760px;
    margin: 1.1rem auto 2rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 49, 46, 0.28);
    border-radius: 1rem;
    background: #17171a;
    color: #fffffa;
}

.player-playlist-callout__copy {
    display: grid;
    gap: 0.25rem;
}

.player-playlist-callout__copy span {
    color: #cfcfcf;
}

.player-playlist-callout__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.player-playlist-callout__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: #ff312e;
    color: #fffffa;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.player-playlist-callout__button--disabled {
    background: #3a3a3f;
    color: #d2d2d2;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .player-playlist-callout {
        align-items: stretch;
        flex-direction: column;
    }

    .player-playlist-callout__actions {
        justify-content: flex-start;
    }
}

.player-bonus-section {
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    background: #17171a;
    color: #fffffa;
}

.player-bonus-section__title {
    margin: 0 0 0.75rem;
    color: #ff312e;
    text-align: center;
}

.player-bonus-section__intro {
    margin: 0 auto 1.3rem;
    max-width: 620px;
    color: #cfcfcf;
    text-align: center;
}

.player-bonus-grid {
    display: grid;
    gap: 1rem;
}

.player-bonus-card {
    padding: 1.1rem;
    border-radius: 0.9rem;
    background: #232326;
}

.player-bonus-card__title {
    margin: 0 0 0.35rem;
    color: #b8b8b8;
}

.player-bonus-card__body {
    margin: 0;
    color: #bdbdbd;
}

.player-bonus-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.9rem;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    background: #ff312e;
    color: #fffffa;
    text-decoration: none;
    font-weight: 700;
}

.player-bonus-card__button--disabled {
    background: #3a3a3f;
    color: #d2d2d2;
    cursor: not-allowed;
}

.player-bonus-card__note {
    margin-top: 0.85rem;
    font-size: 0.95rem;
    color: #aaaaaa;
}

/* Bonus cards use a light background in some contexts; force dark readable text. */
.song-card.bonus {
    color: #1c1c1f;
}

.song-card.bonus h2,
.song-card.bonus h3,
.song-card.bonus p {
    color: #1c1c1f;
}

.song-card.song-card--full-track {
    border-color: rgba(72, 185, 122, 0.72);
    background:
        radial-gradient(circle at top left, rgba(72, 185, 122, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(17, 41, 28, 0.96), rgba(13, 27, 21, 0.96));
    box-shadow: 0 0 0 1px rgba(72, 185, 122, 0.24), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.song-card.song-card--full-track .song-card__content h2,
.song-card.song-card--full-track .song-card__content h3 {
    color: #d8ffe7;
}

.song-card.song-card--full-track .current-vibe {
    color: #b9efca;
    font-weight: 700;
}

.song-card.song-card--full-track .vibe-pill:hover,
.song-card.song-card--full-track .vibe-pill.active {
    background: #48b97a;
    border-color: #48b97a;
    color: #06120b;
}

@media (max-width: 640px) {
    .song-card {
        flex-direction: column;
    }

    .song-card__media {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }

    .song-card__image {
        width: min(500px, 100%);
        height: auto;
        max-height: 500px;
        aspect-ratio: 1 / 1;
        margin-inline: auto;
    }
}
