.album-page-tracklist-card {
    padding: 18px 18px 10px;
}
.album-page-section-note {
    font-size: 0.72rem;
    color: #8b8b9a;
}
.tracklist-header {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 88px;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.72rem;
    color: #71717a;
}
.tracklist-items {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}
.album-track-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 88px;
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.album-track-row:hover {
    background: rgba(139, 92, 246, 0.1);
}
.album-track-row.active-track {
    background: rgba(139, 92, 246, 0.16);
}
.album-track-number {
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 600;
}
.album-track-meta {
    min-width: 0;
}
.album-track-title {
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.album-track-title a {
    color: #f4f4f5;
    text-decoration: none;
}
.album-track-title a:hover {
    color: #c084fc;
}
.album-track-sub {
    font-size: 0.72rem;
    color: #8b8b9a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-track-duration {
    font-size: 0.76rem;
    color: #8b8b9a;
    text-align: right;
}
.album-track-empty {
    padding: 14px;
    text-align: center;
    color: #8b8b9a;
    font-size: 0.82rem;
}


.tracklist-header-rich,
.album-track-row-rich {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto 78px;
    gap: 14px;
    align-items: center;
}
.tracklist-header-rich {
    padding: 10px 14px;
}
.tracklist-header-rich span:nth-child(3),
.tracklist-header-rich span:nth-child(4) {
    text-align: center;
}
.album-track-row-rich {
    padding: 10px 14px;
    border-radius: 16px;
}
.album-track-leading {
    display: flex;
    align-items: center;
    gap: 10px;
}
.album-track-playbtn,
.album-track-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #e4e4e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}
.album-track-playbtn:hover,
.album-track-icon-btn:hover {
    background: rgba(139, 92, 246, 0.16);
    border-color: rgba(139, 92, 246, 0.32);
    color: #ffffff;
}
.album-track-icon-btn.is-done {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
}
.album-track-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.album-track-thumb {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
    flex-shrink: 0;
}
.album-track-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-track-title-button {
    display: block;
    max-width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: #f4f4f5;
    text-decoration: none;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: 0.2s;
}
.album-track-title-button:hover {
    color: #c084fc;
}
.album-track-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: center;
    flex-wrap: wrap;
}
.album-track-action-form {
    display: inline-flex;
}
.album-track-row-rich.active-track {
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.22);
}
.album-track-row-rich.active-track .album-track-title-button,
.album-track-row-rich.active-track .album-track-title {
    color: #c4b5fd;
}
.album-track-row-rich.active-track .album-track-playbtn,
.album-track-row-rich.active-track .album-track-icon-btn--play {
    background: rgba(139, 92, 246, 0.22);
    border-color: rgba(139, 92, 246, 0.36);
}

.album-page-comments-card,
.album-page-section-card {
    padding: 22px;
}
.album-page-comments-note {
    font-size: 0.76rem;
    color: #8b8b9a;
    margin-top: -6px;
    margin-bottom: 14px;
}
.album-comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, #7c3aed, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    flex-shrink: 0;
}
.album-comment-content {
    flex: 1;
    min-width: 0;
}
.album-comment-user {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}
.album-comment-time {
    font-size: 0.66rem;
    color: #71717a;
}
.album-comment-song {
    font-size: 0.68rem;
    color: #a78bfa;
    margin-bottom: 6px;
}
.album-comment-song a {
    color: inherit;
    text-decoration: none;
}
.album-comment-song a:hover {
    text-decoration: underline;
}
.album-comment-text {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #ececf0;
}

.album-related-pagination {
    margin-top: 16px;
}

.album-page-load-more {
    color: #a78bfa;
}

.album-related-pagination-inner {
    gap: 6px;
    padding: 6px 8px;
}
.album-related-pagination-link {
    min-width: 28px;
    height: 28px;
    font-size: 0.72rem;
    background: transparent;
}

.album-page-empty-note {
    font-size: 0.82rem;
    color: #8b8b9a;
}

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

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

@media (max-width: 768px) {
    .vibewave-albumpage .scrollable-content.album-page-content {
        padding-bottom: 148px;
    }
    .tracklist-header-rich,
    .album-track-row-rich {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }
    .tracklist-header-rich span:nth-child(3),
    .tracklist-header-rich span:nth-child(4) {
        display: none;
    }
    .album-track-actions,
    .album-track-duration {
        grid-column: 2;
    }
    .album-track-actions {
        justify-self: start;
        margin-top: 4px;
    }
    .album-track-duration {
        justify-self: end;
        margin-top: -36px;
    }
    .album-page-header-card,
    .album-page-tracklist-card,
    .album-page-comments-card,
    .album-page-section-card {
        border-radius: 20px;
    }
}

@media (max-width: 560px) {
    .album-page-cover {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1;
    }
    .album-page-actions {
        gap: 10px;
    }
    .album-page-actions .btn-play,
    .album-page-actions .btn-follow,
    .album-page-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .album-track-thumb {
        width: 40px;
        height: 40px;
    }
    .album-track-actions {
        gap: 6px;
        flex-wrap: wrap;
    }
    .album-track-playbtn,
    .album-track-icon-btn {
        width: 30px;
        height: 30px;
    }
    .album-track-duration {
        margin-top: 0;
        grid-column: 2;
        justify-self: start;
    }
}


.vibewave-albumpage .album-page-section-head--primary h2,
.vibewave-albumpage .album-page-section-head--primary h3 {
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.vibewave-albumpage .album-page-section-head--related h3 {
    font-size: 1.28rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.vibewave-albumpage .album-page-owner-highlight {
    color: #c4b5fd;
}

.vibewave-albumpage .tracklist-header-rich span:last-child {
    color: transparent;
}




.vibewave-playlistpage .playlist-action-chip,
.vibewave-albumpage .playlist-action-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(20, 20, 28, 0.68);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e5e7eb;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.vibewave-playlistpage .playlist-action-chip i,
.vibewave-albumpage .playlist-action-chip i {
    font-size: 0.95rem;
    opacity: 0.95;
}

.vibewave-playlistpage .playlist-action-chip span,
.vibewave-albumpage .playlist-action-chip span {
    display: inline-block;
}

