/* V2.8F — song/album/artist standardization */

.vibewave-songpage .song-page-actions,
.vibewave-albumpage .album-page-actions,
.vibewave-artist-page .artist-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.vibewave-songpage .song-page-actions .song-inline-form,
.vibewave-artist-page .artist-page-actions .song-inline-form,
.vibewave-artist-page .song-right-custom.artist-track-tools form {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.vibewave-songpage .song-page-actions .btn-follow,
.vibewave-songpage .song-page-actions .btn-play,
.vibewave-albumpage .album-page-actions .btn-follow,
.vibewave-albumpage .album-page-actions .btn-play,
.vibewave-artist-page .artist-page-actions .btn-play-all,
.vibewave-artist-page .artist-action-btn {
    min-height: 44px;
    font-size: 0.88rem;
    line-height: 1;
}

.vibewave-songpage .song-page-actions .song-page-copy-icon-btn,
.vibewave-artist-page .artist-copy-icon-btn {
    min-width: 44px;
    justify-content: center;
    padding-inline: 14px;
}

.vibewave-artist-page .artist-action-btn {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

.vibewave-artist-page .artist-action-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

.vibewave-artist-page .artist-meta,
.vibewave-albumpage .album-meta {
    margin-bottom: 18px;
}

.vibewave-albumpage .album-meta .vw-badge,
.vibewave-artist-page .artist-meta .vw-badge {
    background: rgba(139, 92, 246, 0.14);
    border: 1px solid rgba(139, 92, 246, 0.22);
    color: #d8c4ff;
}

.vibewave-artist-page .song-list-custom.artist-tracklist {
    gap: 10px;
}

.vibewave-artist-page .song-row-custom.artist-track-row {
    padding: 12px 14px;
    border-radius: 16px;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.02);
}

.vibewave-artist-page .song-row-custom.artist-track-row:hover {
    background: rgba(139, 92, 246, 0.10);
    border-color: rgba(139, 92, 246, 0.20);
}

.vibewave-artist-page .artist-track-thumb {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
    flex-shrink: 0;
}

.vibewave-artist-page .artist-track-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vibewave-artist-page .song-info-custom h4 {
    margin: 0 0 4px;
    font-size: 0.88rem;
}

.vibewave-artist-page .song-info-custom p {
    font-size: 0.72rem;
    color: #9ca3af;
}

.vibewave-artist-page .song-right-custom.artist-track-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.vibewave-artist-page .song-right-custom.artist-track-tools .song-duration-custom {
    min-width: 42px;
    text-align: right;
    padding-left: 0;
    margin-right: 2px;
}

.vibewave-artist-page .album-grid-singer {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.vibewave-artist-page .album-mini-card {
    text-align: left;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.vibewave-artist-page .album-mini-card .vw-entity-card__footer {
    margin-top: 12px;
}

.vibewave-artist-page .album-mini-card .vw-cta-btn {
    width: 100%;
    justify-content: center;
}

.vibewave-albumpage .album-page-header-card,
.vibewave-artist-page .artist-cover-card,
.vibewave-artist-page .artist-info-card {
    box-shadow: 0 22px 40px -20px rgba(0,0,0,0.55);
}

@media (max-width: 768px) {
    .vibewave-songpage .song-page-actions,
    .vibewave-albumpage .album-page-actions,
    .vibewave-artist-page .artist-page-actions {
        gap: 10px;
    }

    .vibewave-artist-page .song-row-custom.artist-track-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .vibewave-artist-page .song-right-custom.artist-track-tools {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 560px) {
    .vibewave-songpage .song-page-actions .song-inline-form,
    .vibewave-songpage .song-page-actions .btn-follow,
    .vibewave-songpage .song-page-actions .btn-play,
    .vibewave-artist-page .artist-page-actions .btn-play-all,
    .vibewave-artist-page .artist-page-actions .artist-action-btn {
        width: 100%;
    }

    .vibewave-songpage .song-page-actions .song-inline-form .btn-follow,
    .vibewave-artist-page .artist-page-actions .artist-action-btn,
    .vibewave-artist-page .artist-page-actions .btn-play-all {
        justify-content: center;
    }

    .vibewave-artist-page .song-right-custom.artist-track-tools {
        justify-content: space-between;
    }
}
