.vibewave-albumpage .scrollable-content.album-page-content,
.vibewave-songpage .scrollable-content.song-page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 138px;
}

.album-page-back,
.song-page-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 30, 38, 0.6);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    color: #a1a1aa;
    text-decoration: none;
    transition: 0.2s;
    width: fit-content;
}

.album-page-back:hover,
.song-page-back:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
}

.album-page-header-card,
.album-page-tracklist-card,
.album-page-comments-card,
.album-page-section-card,
.song-page-header-card,
.song-page-comments-card,
.song-page-section-card {
    background: rgba(18, 18, 24, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.album-page-header-card,
.song-page-header-card {
    display: flex;
    gap: 28px;
    padding: 28px;
    flex-wrap: wrap;
}

.album-page-cover,
.song-page-cover {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
}

.album-page-cover img,
.song-page-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-page-cover-overlay,
.song-page-cover-overlay {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(0,0,0,0.58);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    opacity: 0;
    transition: 0.2s;
    cursor: pointer;
}

.album-page-cover:hover .album-page-cover-overlay,
.album-page-cover-overlay:focus-visible,
.song-page-cover:hover .song-page-cover-overlay,
.song-page-cover-overlay:focus-visible {
    opacity: 1;
}

.album-page-info,
.song-page-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
}

.album-page-type-row,
.song-page-type-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.album-page-type-badge,
.album-page-featured-badge,
.song-page-type-badge,
.song-page-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.album-page-type-badge,
.song-page-type-badge {
    background: rgba(139, 92, 246, 0.16);
    color: #c4b5fd;
}

.album-page-featured-badge,
.song-page-featured-badge {
    background: rgba(249, 115, 22, 0.14);
    color: #fdba74;
}

.album-page-title,
.song-page-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.album-page-artist-line,
.song-page-artist-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #c084fc;
}

.album-page-artist-line i,
.song-page-artist-line i {
    font-size: 1.8rem;
}

.album-page-artist-line a,
.album-page-artist-line span,
.song-page-artist-line a,
.song-page-artist-line span {
    color: inherit;
    text-decoration: none;
}

.album-page-meta,
.song-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.8rem;
    color: #a1a1aa;
    margin-bottom: 18px;
}

.album-page-meta i,
.song-page-meta i {
    margin-right: 6px;
}

.song-page-meta span,
.song-page-meta a {
    color: inherit;
    text-decoration: none;
}

.album-page-description,
.song-page-description {
    font-size: 0.86rem;
    color: #d4d4d8;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 880px;
}

.album-page-actions,
.song-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.song-page-actions {
    margin-bottom: 16px;
}

.album-page-actions .btn-play,
.album-page-actions .btn-follow,
.album-page-actions .btn-ghost,
.song-page-actions .btn-play,
.song-page-actions .btn-follow {
    border: none;
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 500;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.album-page-actions .btn-play,
.song-page-actions .btn-play {
    background: #8b5cf6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.album-page-actions .btn-play:hover,
.song-page-actions .btn-play:hover {
    background: #a78bfa;
    transform: translateY(-1px);
}

.album-page-actions .btn-follow,
.album-page-actions .btn-ghost,
.song-page-actions .btn-follow {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
}

.album-page-actions .btn-follow:hover,
.album-page-actions .btn-ghost:hover,
.song-page-actions .btn-follow:hover {
    background: rgba(255,255,255,0.12);
}

.album-page-actions .btn-ghost[disabled] {
    opacity: 0.58;
    cursor: default;
}

@media (max-width: 992px) {
    .album-page-header-card,
    .song-page-header-card {
        padding: 22px;
    }

    .album-page-cover,
    .song-page-cover {
        width: 190px;
        height: 190px;
    }

    .album-page-title,
    .song-page-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .vibewave-albumpage .scrollable-content.album-page-content,
    .vibewave-songpage .scrollable-content.song-page-content {
        padding-bottom: 128px;
    }

    .album-page-header-card,
    .album-page-comments-card,
    .album-page-section-card,
    .song-page-header-card,
    .song-page-comments-card,
    .song-page-section-card {
        border-radius: 20px;
        padding: 18px;
    }

    .album-page-header-card,
    .song-page-header-card {
        gap: 20px;
    }

    .album-page-cover,
    .song-page-cover {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 560px) {
    .album-page-cover,
    .song-page-cover {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1;
    }

    .album-page-actions,
    .song-page-actions {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .album-page-actions .btn-play,
    .album-page-actions .btn-follow,
    .album-page-actions .btn-ghost,
    .song-page-actions .btn-follow,
    .song-page-actions .btn-play {
        width: 100%;
        justify-content: center;
    }
}


.album-page-section-head,
.song-page-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.album-page-section-head {
    gap: 12px;
    margin-bottom: 16px;
}

.song-page-section-title {
    gap: 14px;
    margin-bottom: 18px;
}

.album-page-section-head h2,
.album-page-section-head h3,
.song-page-section-title h3 {
    font-size: 1.08rem;
    font-weight: 600;
}

.song-page-section-title a {
    font-size: 0.76rem;
    text-decoration: none;
    color: #8b5cf6;
}

.album-comment-list,
.song-page-comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.album-comment-item,
.song-page-comment-item {
    display: flex;
    gap: 12px;
}

.album-comment-item.is-hidden,
.song-page-comment-item.is-hidden {
    display: none;
}

.album-comment-user strong,
.song-page-comment-user strong {
    font-size: 0.82rem;
}

.album-page-load-more-wrap,
.song-page-load-more-wrap {
    margin-top: 14px;
    text-align: center;
}

.album-page-load-more,
.song-page-load-more {
    background: transparent;
    border: none;
    font-size: 0.76rem;
    cursor: pointer;
}

.album-related-grid,
.artist-albums-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.album-related-card,
.artist-album-card {
    background: rgba(20, 20, 28, 0.5);
    border-radius: 18px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.album-related-card {
    display: block;
}

.artist-album-card {
    text-align: center;
}

.album-related-card:hover,
.artist-album-card:hover {
    background: rgba(30, 30, 38, 0.8);
    transform: translateY(-2px);
}

.album-related-cover,
.artist-album-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
}

.artist-album-cover {
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-related-cover img,
.artist-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-related-title,
.artist-album-card h4 {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-related-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.artist-album-card h4 {
    font-weight: 500;
}

.album-related-sub,
.artist-album-card p {
    font-size: 0.68rem;
    color: #8b8b9a;
}

.artist-album-card p {
    margin-top: 4px;
}

.album-related-pagination-inner,
.song-related-pagination-inner {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(20, 20, 28, 0.72);
    border: 1px solid rgba(255,255,255,0.06);
}

.album-related-pagination-link,
.song-related-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    color: #d4d4d8;
    transition: 0.2s;
}

.album-related-pagination-link:hover,
.song-related-pagination-link:hover {
    background: rgba(139, 92, 246, 0.18);
    color: #ffffff;
}

.album-related-pagination-link.is-current,
.song-related-pagination-link.is-current {
    background: #8b5cf6;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .album-related-grid,
    .artist-albums-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .album-related-grid,
    .artist-albums-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


.album-page-artist-line,
.song-page-artist-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.album-page-artist-line i,
.song-page-artist-line i {
    font-size: 1rem;
    flex-shrink: 0;
}

.album-page-artist-line a,
.album-page-artist-line span,
.song-page-artist-line a,
.song-page-artist-line span {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vibewave-playlistpage .playlist-owner-line {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
}

@media (max-width: 560px) {
    .album-page-artist-line,
    .song-page-artist-line,
    .vibewave-playlistpage .playlist-owner-line {
        max-width: 100%;
    }
}
