.vibewave-top-page .scrollable-content.top-page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 138px;
}

.vibewave-top-page .top-summary-card,
.vibewave-top-page .top-column-card {
    background: rgba(18, 18, 24, 0.4);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.vibewave-top-page .top-summary-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 26px;
}
.vibewave-top-page .top-summary-icon {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    background: linear-gradient(145deg, #8b5cf6, #4f46e5);
    box-shadow: 0 20px 35px -12px rgba(79, 70, 229, 0.45);
    flex-shrink: 0;
}
.vibewave-top-page .top-summary-main h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px;
}
.vibewave-top-page .top-summary-main p {
    color: #b4b4c3;
    line-height: 1.65;
    max-width: 900px;
}
.vibewave-top-page .top-summary-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.vibewave-top-page .top-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.vibewave-top-page .top-summary-badge.is-play {
    background: rgba(139, 92, 246, 0.16);
    color: #c4b5fd;
}
.vibewave-top-page .top-summary-badge.is-download {
    background: rgba(34, 197, 94, 0.14);
    color: #bbf7d0;
}

.vibewave-top-page .top-columns-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    min-width: 0;
}

.vibewave-top-page .top-column-card {
    padding: 18px;
    min-width: 0;
}
.vibewave-top-page .top-column-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vibewave-top-page .top-column-head h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.vibewave-top-page .top-column-head p {
    margin: 0;
    color: #8b8b9a;
    font-size: 0.75rem;
}
.vibewave-top-page .top-column-pill {
    flex-shrink: 0;
    background: rgba(139, 92, 246, 0.16);
    color: #c4b5fd;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.72rem;
}
.vibewave-top-page .top-column-pill.is-download {
    background: rgba(34, 197, 94, 0.14);
    color: #bbf7d0;
}

.vibewave-top-page .top-track-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.vibewave-top-page .top-track-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    padding: 10px 12px;
    background: rgba(20, 20, 28, 0.35);
    transition: 0.2s;
    cursor: pointer;
    min-width: 0;
}
.vibewave-top-page .top-track-row:hover {
    background: rgba(139, 92, 246, 0.1);
}
.vibewave-top-page .top-track-row.is-active {
    background: rgba(139, 92, 246, 0.16);
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.22);
}
.vibewave-top-page .new-track-item.is-active {
    background: rgba(139, 92, 246, 0.16);
}
.vibewave-top-page .top-track-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vibewave-top-page .top-track-thumb {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(145deg, #2a2a3a, #1a1a24);
}
.vibewave-top-page .top-track-thumb img,
.vibewave-top-page .np-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vibewave-top-page .top-track-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}
.vibewave-top-page .top-track-meta {
    min-width: 0;
    flex: 1 1 auto;
}
.vibewave-top-page .top-track-title-button {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0;
    border: none;
    background: transparent;
    color: #f5f5f7;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    width: 100%;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    min-width: 0;
}
.vibewave-top-page .top-track-sub {
    font-size: 0.72rem;
    color: #8b8b9a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.vibewave-top-page .top-track-extra {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    max-width: 100%;
}
.vibewave-top-page .top-track-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c4b5fd;
    font-size: 0.72rem;
}
.vibewave-top-page .top-track-stat.is-download {
    color: #bbf7d0;
}
.vibewave-top-page .top-track-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: #ddd6fe;
    text-decoration: none;
    transition: 0.2s;
    background: rgba(139, 92, 246, 0.14);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}
.vibewave-top-page .top-track-open:hover {
    color: #fff;
    background: rgba(139, 92, 246, 0.24);
}
.vibewave-top-page .top-track-open--primary {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    box-shadow: 0 14px 22px -16px rgba(99, 102, 241, 0.9);
}
.vibewave-top-page .top-track-open--primary:hover {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
}
.vibewave-top-page .top-empty-state {
    color: #8b8b9a;
    background: rgba(20, 20, 28, 0.35);
    padding: 16px;
    border-radius: 16px;
}

@media (max-width: 1200px) {
    .vibewave-top-page .top-track-row {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 992px) {
    .vibewave-top-page .top-columns-grid {
        grid-template-columns: 1fr;
    }
    .vibewave-top-page .top-summary-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .vibewave-top-page .top-track-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .vibewave-top-page .top-track-main,
    .vibewave-top-page .top-track-extra {
        width: 100%;
    }
    .vibewave-top-page .top-track-extra {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
}


.vibewave-top-page .song-quick-tools {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    flex: 0 0 auto;
}

.vibewave-top-page .song-quick-tool-form {
    margin: 0;
}

.vibewave-top-page .song-quick-tool,
.vibewave-top-page .song-quick-tool-form .song-quick-tool,
.vibewave-top-page .song-quick-menu > summary.song-quick-tool {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    flex-shrink: 0;
}

.vibewave-top-page .song-quick-tool:hover,
.vibewave-top-page .song-quick-tool-form .song-quick-tool:hover,
.vibewave-top-page .song-quick-menu > summary.song-quick-tool:hover {
    transform: translateY(-1px);
    border-color: rgba(139, 92, 246, 0.28);
    background: rgba(139, 92, 246, 0.16);
    color: #fff;
}

.vibewave-top-page .song-quick-tool.is-active,
.vibewave-top-page .song-quick-tool-form .song-quick-tool.is-active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.34), rgba(79, 70, 229, 0.28));
    border-color: rgba(139, 92, 246, 0.32);
    color: #fff;
}

.vibewave-top-page .song-quick-tool.is-done,
.vibewave-top-page .song-quick-tool-form .song-quick-tool.is-done {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.28);
    color: #dcfce7;
}

.vibewave-top-page .song-quick-tool-form .song-quick-tool:disabled {
    opacity: .72;
    cursor: progress;
}

.vibewave-top-page .song-quick-menu {
    flex: 0 0 auto;
}

.vibewave-top-page .top-track-extra {
    row-gap: 10px;
}

.vibewave-top-page .top-secondary-discovery .vw-discovery-card__footer {
    align-items: center;
}

.vibewave-top-page .top-secondary-discovery .vw-discovery-card__media,
.vibewave-top-page .top-extended-discovery .vw-discovery-card__media {
    aspect-ratio: 1 / 1;
    max-height: 240px;
}
