/* DjMsc theme — dark Spotify-style layout */
:root {
    --xiu-black: #121212;
    --xiu-dark: #1a1a1a;
    --xiu-gray: #272727;
    --xiu-green: #39d353;
    --xiu-text: #e0e0e0;
    --xiu-muted: #9ca3af;
}

body.dj-site.dj-xiu {
    --dj-surface: #1a1a1a;
    --dj-surface-2: #272727;
    --dj-surface-3: #333333;
    --dj-text: #e0e0e0;
    --dj-text-muted: #9ca3af;
    --dj-border: rgba(39, 39, 39, 0.85);
    --dj-primary: #39d353;
    --dj-primary-hover: #2eb347;
    --dj-primary-soft: rgba(57, 211, 83, 0.15);
    --dj-primary-muted: #6ee07a;
    --dj-card-bg: #1a1a1a;
    --bs-body-bg: #121212;
    --bs-body-color: #e0e0e0;
    --bs-table-bg: transparent;
    --bs-table-color: #e0e0e0;
    --bs-table-striped-bg: rgba(39, 39, 39, 0.35);
    --bs-table-hover-bg: rgba(39, 39, 39, 0.55);
    --bs-table-border-color: #333333;
    --bs-table-active-bg: rgba(57, 211, 83, 0.12);
}

html { scroll-behavior: smooth; }
body.dj-site.dj-xiu {
    display: block !important;
    padding-top: 0 !important;
    background: var(--xiu-black);
    color: var(--xiu-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dj-xiu .xiu-app {
    max-width: 100%;
}

.dj-xiu .scroll-x-hide::-webkit-scrollbar { height: 0; }
.dj-xiu .scroll-x-hide { -ms-overflow-style: none; scrollbar-width: none; }

.dj-xiu .cover-box {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
}
.dj-xiu .cover-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.2s;
}
.dj-xiu .cover-box:hover .cover-play-icon,
.dj-xiu .song-row.playing .cover-play-icon { opacity: 1; }

.dj-xiu .rank-card {
    background: rgba(39,39,39,0.7);
    border-radius: 1rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
    cursor: pointer;
}
.dj-xiu .rank-card:hover { background: rgba(39,39,39,0.9); transform: scale(1.01); }
.dj-xiu .rank-badge {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.dj-xiu .rank-badge.gold { background: #facc15; color: #000; }
.dj-xiu .rank-badge.silver { background: #d1d5db; color: #000; }
.dj-xiu .rank-badge.bronze { background: #b45309; color: #fff; }
.dj-xiu .rank-badge.normal { background: #272727; color: var(--xiu-muted); }
.dj-xiu .rank-progress { height: 4px; width: 100%; background: #333; border-radius: 9999px; overflow: hidden; }
.dj-xiu .rank-progress-bar { height: 100%; background: var(--xiu-green); border-radius: 9999px; }

.dj-xiu .album-card {
    position: relative;
    border-radius: 1rem;
    padding: 1rem;
    min-height: 100px;
    display: flex !important;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
    text-decoration: none;
    color: inherit;
}
.dj-xiu .album-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--album-bg, none);
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.4);
    transform: scale(1.1);
    transition: transform 0.4s ease, filter 0.4s ease;
    z-index: 0;
    pointer-events: none;
}
.dj-xiu .album-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
    border-radius: 1rem;
    pointer-events: none;
}
.dj-xiu .album-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.6), 0 12px 40px rgba(0,0,0,0.5);
}
.dj-xiu .album-card:hover::before { transform: scale(1.15); filter: blur(4px) brightness(0.5); }
.dj-xiu .album-card .album-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.dj-xiu .album-card .album-cover-thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}
.dj-xiu .album-card .album-info { flex: 1; min-width: 0; }
.dj-xiu .album-card .album-info .name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dj-xiu .album-card .album-info .tip {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.15rem;
}
.dj-xiu .album-card .play-icon-overlay {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.dj-xiu .album-card:hover .play-icon-overlay { color: var(--xiu-green); }

.dj-xiu .xiu-album-list {
    --xiu-album-accent: var(--xiu-green);
    --xiu-album-accent-bar: rgba(57, 211, 83, 0.45);
    --xiu-album-accent-bar-hover: rgba(57, 211, 83, 0.88);
    --xiu-album-accent-border: rgba(57, 211, 83, 0.28);
    --xiu-album-accent-soft: rgba(57, 211, 83, 0.12);
    --xiu-album-row-bg: rgba(39, 39, 39, 0.5);
    --xiu-album-row-bg-hover: rgba(39, 39, 39, 0.82);
    --xiu-album-row-border: rgba(255, 255, 255, 0.05);
    --xiu-album-cover-bg: #262626;
    --xiu-album-cover-border: rgba(255, 255, 255, 0.06);
    --xiu-album-play-bg: rgba(255, 255, 255, 0.04);
    --xiu-album-play-color: rgba(255, 255, 255, 0.42);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.dj-xiu .xiu-album-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.5rem 0.55rem 0.5rem 0.45rem;
    border-radius: 0.75rem;
    background: var(--xiu-album-row-bg);
    border: 1px solid var(--xiu-album-row-border);
    box-shadow: inset 2px 0 0 var(--xiu-album-accent-bar);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dj-xiu .xiu-album-row:hover {
    background: var(--xiu-album-row-bg-hover);
    border-color: var(--xiu-album-accent-border);
    box-shadow: inset 3px 0 0 var(--xiu-album-accent-bar-hover), 0 6px 16px rgba(0, 0, 0, 0.18);
    transform: translateX(2px);
    color: inherit;
}

.dj-xiu .xiu-album-row__cover {
    position: relative;
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.55rem;
    overflow: hidden;
    background: var(--xiu-album-cover-bg);
    border: 1px solid var(--xiu-album-cover-border);
}

.dj-xiu .xiu-album-row__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease;
}

.dj-xiu .xiu-album-row:hover .xiu-album-row__img {
    transform: scale(1.06);
}

.dj-xiu .xiu-album-row__badge {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    background: var(--xiu-album-accent);
    color: #121212;
    font-size: 0.62rem;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.dj-xiu .xiu-album-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dj-xiu .xiu-album-row__name {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--xiu-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .xiu-album-row__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    line-height: 1.3;
    color: var(--xiu-muted);
}

.dj-xiu .xiu-album-row__meta i {
    font-size: 0.72rem;
    color: var(--xiu-album-accent);
}

.dj-xiu .xiu-album-row__play {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: var(--xiu-album-play-bg);
    color: var(--xiu-album-play-color);
    font-size: 1.35rem;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dj-xiu .xiu-album-row:hover .xiu-album-row__play {
    color: var(--xiu-album-accent);
    background: var(--xiu-album-accent-soft);
    transform: scale(1.06);
}

.dj-xiu .xiu-producer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.dj-xiu .producer-card {
    display: block;
    min-width: 0;
    padding: 0.35rem;
    border-radius: 0.75rem;
    background: rgba(39, 39, 39, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dj-xiu .producer-card:hover {
    background: rgba(39, 39, 39, 0.88);
    border-color: rgba(57, 211, 83, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    color: inherit;
}

.dj-xiu .producer-card__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.55rem;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dj-xiu .producer-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.22s ease;
}

.dj-xiu .producer-card:hover .producer-card__img {
    transform: scale(1.05);
}

.dj-xiu .producer-card__stat {
    position: absolute;
    left: 5px;
    bottom: 5px;
    z-index: 1;
    display: inline-block;
    max-width: calc(100% - 10px);
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 10px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .producer-card__name {
    margin-top: 0.42rem;
    padding: 0 0.12rem 0.08rem;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: var(--xiu-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: var(--xiu-text);
}
.dj-xiu .nav-item:hover { background: rgba(39,39,39,0.7); }
.dj-xiu .nav-item.active { background: rgba(57,211,83,0.2); color: var(--xiu-green); }

.dj-xiu .nav-section {
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* 左导航一体面板：导航 / VIP / 友链合并为单卡片 */
.dj-xiu .xiu-sidebar-panel {
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    padding: 0;
}
.dj-xiu .xiu-sidebar-panel > .nav-section {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0 !important;
    padding: 1rem;
}
.dj-xiu .xiu-sidebar-panel > .nav-section + .nav-section {
    border-top: 1px solid var(--xiu-gray);
}
.dj-xiu .xiu-sidebar-panel > .xiu-sidebar-vip-promo {
    border-top-color: rgba(57, 211, 83, 0.18);
}

.dj-xiu .xiu-sidebar-vip-promo {
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(57, 211, 83, 0.16) 0%, transparent 58%),
        linear-gradient(180deg, rgba(39, 39, 39, 0.95) 0%, var(--xiu-dark) 100%) !important;
    border-color: transparent !important;
}

.dj-xiu .xiu-sidebar-vip-promo__body {
    text-align: center;
}

.dj-xiu .xiu-sidebar-vip-promo__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.55rem;
    border-radius: 999px;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.14);
    border: 1px solid rgba(57, 211, 83, 0.28);
    box-shadow: 0 0 0 4px rgba(57, 211, 83, 0.06);
}

.dj-xiu .xiu-sidebar-vip-promo__title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--xiu-text);
    letter-spacing: 0.01em;
}

.dj-xiu .xiu-sidebar-vip-promo__sub {
    margin: 0.3rem 0 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--xiu-muted);
}

.dj-xiu .xiu-sidebar-vip-unlock {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: #0f172a !important;
    background: var(--xiu-green) !important;
    border: 1px solid rgba(57, 211, 83, 0.85) !important;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 2px 10px rgba(57, 211, 83, 0.22);
    white-space: nowrap;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dj-xiu .xiu-sidebar-vip-unlock:hover {
    color: #0f172a !important;
    background: #4ae368 !important;
    filter: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(57, 211, 83, 0.3);
}

.dj-xiu .song-row {
    padding: 0.5rem 0;
    margin-bottom: 0.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    border: 1px solid transparent;
}
.dj-xiu .song-row:hover {
    background: rgba(39,39,39,0.3);
    border-color: rgba(57,211,83,0.15);
    transform: translateX(2px);
    padding: 0.5rem;
}
.dj-xiu .song-row .cover-box { width: 2.5rem; height: 2.5rem; }

/* ===== 歌曲列表单列 / 双列（首页 home_list_columns、列表页 list_page_columns 独立配置） ===== */
.dj-xiu.xiu-home-cols-double .song-list-wrap > div,
.dj-xiu .song-list-wrap.xiu-home-list-double > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.75rem;
}
.dj-xiu.xiu-list-cols-double .xiu-song-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.75rem;
}
@media (max-width: 768px) {
    .dj-xiu.xiu-home-cols-double .song-list-wrap > div,
    .dj-xiu .song-list-wrap.xiu-home-list-double > div,
    .dj-xiu.xiu-list-cols-double .xiu-song-list {
        grid-template-columns: 1fr;
    }
}
.dj-xiu.xiu-home-cols-double .song-list-wrap > div > .song-row,
.dj-xiu .song-list-wrap.xiu-home-list-double > div > .song-row,
.dj-xiu.xiu-list-cols-double .xiu-song-list > .song-row {
    margin-bottom: 0;
}
.dj-xiu.xiu-home-cols-double .song-list-wrap .song-row,
.dj-xiu .song-list-wrap.xiu-home-list-double .song-row,
.dj-xiu.xiu-list-cols-double .xiu-song-list .song-row {
    position: relative;
    min-width: 0;
    overflow: hidden;
}
.dj-xiu.xiu-home-cols-double .song-list-wrap .song-row::before,
.dj-xiu .song-list-wrap.xiu-home-list-double .song-row::before,
.dj-xiu.xiu-list-cols-double .xiu-song-list .song-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0.5rem;
    pointer-events: none;
}
.dj-xiu.xiu-home-cols-double .song-list-wrap .song-row:hover::before,
.dj-xiu .song-list-wrap.xiu-home-list-double .song-row:hover::before,
.dj-xiu.xiu-list-cols-double .xiu-song-list .song-row:hover::before {
    opacity: 1;
}
.dj-xiu.xiu-home-cols-double .song-list-wrap .song-row .flex,
.dj-xiu .song-list-wrap.xiu-home-list-double .song-row .flex {
    gap: 0.75rem;
    min-width: 0;
}
.dj-xiu.xiu-home-cols-double .song-list-wrap .song-row .flex > div:nth-child(2),
.dj-xiu .song-list-wrap.xiu-home-list-double .song-row .flex > div:nth-child(2) {
    min-width: 0;
}
.dj-xiu.xiu-home-cols-double .song-list-wrap .song-row p,
.dj-xiu .song-list-wrap.xiu-home-list-double .song-row p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dj-xiu.xiu-list-cols-double .xiu-list-page .xiu-song-row__inner {
    min-width: 0;
}
.dj-xiu.xiu-list-cols-double .xiu-list-page .xiu-song-row__title-link,
.dj-xiu.xiu-list-cols-double .xiu-list-page .xiu-song-row__meta {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .playlist-card {
    background: rgba(39,39,39,0.5);
    border-radius: 1rem;
    padding: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    width: 160px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}
.dj-xiu .playlist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57,211,83,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 1rem;
    pointer-events: none;
}
.dj-xiu .playlist-card:hover {
    background: rgba(39,39,39,0.8);
    border-color: rgba(57,211,83,0.3);
    transform: translateY(-4px) scale(1.02);
}
.dj-xiu .playlist-card:hover::before { opacity: 1; }
.dj-xiu .playlist-card .cover-box { border-radius: 0.75rem; overflow: hidden; }

.dj-xiu .truncate-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dj-xiu .friend-link {
    font-size: 0.75rem;
    color: var(--xiu-muted);
    transition: color 0.2s;
    display: block;
    padding: 0.25rem 0;
    text-decoration: none;
}
.dj-xiu .friend-link:hover { color: var(--xiu-green); }

/* ===== 首页双栏：与内页 #f2 > .row 相同的 Grid + sticky 侧栏 ===== */
.dj-xiu .page-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: var(--xiu-page-gap);
    padding: 0;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.dj-xiu .page-wrapper > .main-content {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    min-width: 0;
    max-width: 100%;
}
.dj-xiu .page-wrapper > .main-content > .flex.flex-col.gap-4 {
    display: flex;
    flex-direction: column;
    gap: var(--xiu-page-gap) !important;
}
.dj-xiu .page-wrapper .dj-home-poster,
.dj-xiu .page-wrapper .xiu-home-poster {
    width: 100%;
    flex: none;
    border: 1px solid var(--xiu-gray);
    background: var(--xiu-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    min-height: clamp(220px, 38vw, 420px);
    aspect-ratio: 16 / 7;
    max-height: min(42vw, 420px);
}

.dj-xiu .page-wrapper .dj-home-poster:empty {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
    min-height: 0;
    aspect-ratio: auto;
}

.dj-xiu .dj-home-poster .poster-module {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.dj-xiu .dj-home-poster .poster-layout,
.dj-xiu .dj-home-poster .poster-layout--full {
    min-height: 100%;
    height: 100%;
}

/* 首页已有右侧栏，海报区只保留轮播 */
.dj-xiu .dj-home-poster .poster-rank {
    display: none !important;
}

.dj-xiu .dj-home-poster .poster-banner {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    border-radius: 0;
    background: var(--xiu-black);
}

.dj-xiu .dj-home-poster .poster-banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.dj-xiu .dj-home-poster .poster-banner-item a img {
    border-radius: 0;
}

.dj-xiu .dj-home-poster .poster-indicator-dot.active {
    background: var(--xiu-green);
    transform: scale(1.15);
}

.dj-xiu .page-wrapper > .sidebar-right {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    position: static;
    top: auto;
    display: block;
    align-self: stretch;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.dj-xiu .page-wrapper > .sidebar-right > .sidebar-right-inner {
    position: sticky;
    top: var(--xiu-content-offset);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--xiu-page-gap) !important;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
}
.dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div {
    flex: 0 0 auto;
    flex-shrink: 0;
    overflow: hidden;
    isolation: isolate;
    position: relative;
    z-index: 0;
    background: var(--xiu-dark);
    border-radius: 1rem;
    margin-top: 0 !important;
}
.dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div:nth-child(1) { z-index: 4; }
.dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div:nth-child(2) { z-index: 3; }
.dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div:nth-child(3) { z-index: 2; }
.dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div:nth-child(4) { z-index: 1; }
.dj-xiu .page-wrapper > .sidebar-right #albumWrap,
.dj-xiu .page-wrapper > .sidebar-right .xiu-album-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    overflow: hidden;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-album-row {
    padding: 0.45rem 0.5rem 0.45rem 0.4rem;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-album-row__cover {
    width: 3rem;
    height: 3rem;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-album-row__name {
    font-size: 0.8rem;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-album-row__meta {
    font-size: 0.68rem;
}
.dj-xiu .page-wrapper > .sidebar-right a.dj-tip,
.dj-xiu .page-wrapper > .sidebar-right a.tooltip {
    opacity: 1 !important;
    position: static !important;
    display: block !important;
    pointer-events: auto !important;
}
.dj-xiu .page-wrapper > .sidebar-right .section-title {
    font-size: 0.95rem;
    font-weight: 400;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-producer-grid {
    gap: 0.45rem;
}
.dj-xiu .page-wrapper > .sidebar-right .producer-card {
    padding: 0.3rem;
}
.dj-xiu .page-wrapper > .sidebar-right .producer-card__cover {
    border-radius: 0.5rem;
}
.dj-xiu .page-wrapper > .sidebar-right .producer-card__name {
    font-size: 0.76rem;
    margin-top: 0.38rem;
}
.dj-xiu .page-wrapper > .sidebar-right .producer-card__stat {
    font-size: 9px;
    padding: 2px 6px;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem;
    border-radius: 1rem;
    transition: background-color 150ms ease;
    cursor: pointer;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-item:hover {
    background: var(--xiu-gray);
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-link {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--xiu-text);
    text-decoration: none;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-link:hover {
    color: var(--xiu-green);
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.55rem;
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.3;
    color: var(--xiu-muted);
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    max-width: 100%;
}
.dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta__item i {
    font-size: 0.72rem;
    color: rgba(57, 211, 83, 0.8);
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .dj-xiu .page-wrapper { grid-template-columns: minmax(0, 1fr) 300px; }
}
@media (min-width: 1280px) {
    .dj-xiu .page-wrapper { grid-template-columns: minmax(0, 1fr) 320px; }
}
@media (max-width: 767px) {
    .dj-xiu .page-wrapper { grid-template-columns: minmax(0, 1fr); }
    .dj-xiu .page-wrapper > .sidebar-right {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0.65rem;
    }
    .dj-xiu .page-wrapper > .sidebar-right > .sidebar-right-inner {
        position: static;
    }
}

/* 首页轮播指示点 */
.dj-xiu #carouselDots {
    display: flex;
    gap: 0.5rem;
}
.dj-xiu .xiu-carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.2s;
}
.dj-xiu .xiu-carousel-dot.is-active {
    background: rgba(255, 255, 255, 0.7);
}

.dj-xiu .section-title {
    font-size: 0.95rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--xiu-text);
}
.dj-xiu .section-card {
    background: var(--xiu-dark);
    border-radius: 1rem;
    padding: 1rem;
}

.dj-xiu .nav-link-xiu {
    position: relative;
    color: var(--xiu-text);
    text-decoration: none;
    padding: 0.5rem 0.25rem 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.dj-xiu .nav-link-xiu::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--xiu-green);
    border-radius: 9999px;
    transition: all 0.3s;
    transform: translateX(-50%);
}
.dj-xiu .nav-link-xiu:hover { color: #fff; }
.dj-xiu .nav-link-xiu:hover::after { width: 60%; }
.dj-xiu .nav-link-xiu.active { color: var(--xiu-green); }
.dj-xiu .nav-link-xiu.active::after { width: 70%; }

.dj-xiu .xiu-header-genre-item > .nav-link-xiu.active::after {
    width: 70%;
    background: var(--xiu-green);
}

/* Header — 舞曲分类悬停二级菜单 */
.dj-xiu .xiu-header-nav {
    flex: 1 1 auto;
    min-width: 0;
    overflow: visible;
}
.dj-xiu .xiu-header-genre-item {
    position: relative;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}
.dj-xiu .xiu-header-genre-item > .nav-link-xiu {
    white-space: nowrap;
}
.dj-xiu .xiu-header-genre-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 9rem;
    margin: 0;
    padding: 0.35rem 0;
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1200;
    box-sizing: border-box;
    text-align: center;
}
.dj-xiu .xiu-header-genre-panel::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}
.dj-xiu .xiu-header-genre-item.is-open > .xiu-header-genre-panel,
.dj-xiu .xiu-header-genre-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dj-xiu .xiu-header-genre-item:focus-within > .xiu-header-genre-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dj-xiu .xiu-header-genre-panel > a {
    display: block;
    padding: 0.45rem 1rem;
    color: var(--xiu-text);
    font-size: 0.8125rem;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    transition: color 0.15s ease, background 0.15s ease;
}
.dj-xiu .xiu-header-genre-panel > a:hover,
.dj-xiu .xiu-header-genre-panel > a:focus {
    color: var(--xiu-green);
    background: rgba(39, 39, 39, 0.65);
}
.dj-xiu .xiu-header-genre-panel-all {
    font-weight: 600;
    color: var(--xiu-green);
    border-bottom: 1px solid rgba(39, 39, 39, 0.8);
    margin-bottom: 0.15rem;
}
.dj-xiu .xiu-header-genre-panel-all:hover,
.dj-xiu .xiu-header-genre-panel-all:focus {
    background: rgba(57, 211, 83, 0.08);
}

.dj-xiu .site-footer-xiu {
    background: transparent;
    border-top: none;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--xiu-muted);
    padding: var(--xiu-page-gap) 0 calc(80px + 0.75rem);
    margin-bottom: 0;
}
.dj-xiu .site-footer-xiu__inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 var(--xiu-page-gap);
    box-sizing: border-box;
}
.dj-xiu .site-footer-xiu__meta {
    text-align: center;
}
.dj-xiu .site-footer-xiu__legal {
    padding-top: 0.15rem;
}
.dj-xiu .site-footer-xiu__brand {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--xiu-text);
    line-height: 1.5;
}
.dj-xiu .site-footer-xiu__desc {
    margin: 0.5rem auto 0;
    max-width: 36rem;
    font-size: 0.75rem;
    line-height: 1.65;
    color: var(--xiu-muted);
}
.dj-xiu .site-footer-xiu__icp {
    margin: 0.45rem 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
}
.dj-xiu .site-footer-xiu__icp a {
    color: var(--xiu-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.dj-xiu .site-footer-xiu__icp a:hover {
    color: var(--xiu-green);
}
@media (min-width: 1024px) {
    .dj-xiu .site-footer-xiu--home .site-footer-friends,
    .dj-xiu .site-footer-xiu--home .site-footer-xiu__meta {
        width: 100%;
    }
}
.dj-xiu .site-footer-friends {
    width: 100%;
    max-width: 100%;
    margin: 0 0 var(--xiu-page-gap);
    text-align: left;
}
.dj-xiu .site-footer-friends__head {
    margin: 0 0 0.75rem;
    padding: 0;
    border: none;
    font-size: 0.95rem;
    font-weight: 400;
}
.dj-xiu .site-footer-friends__head i {
    color: var(--xiu-green);
}
.dj-xiu .site-footer-friends__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.dj-xiu .site-footer-friends__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    max-width: 100%;
    padding: 0.35rem 0.85rem;
    border-radius: 0.25rem;
    border: none;
    background: var(--xiu-gray);
    color: var(--xiu-text);
    font-size: 0.8125rem;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}
.dj-xiu .site-footer-friends__item-icon {
    flex-shrink: 0;
    font-size: 0.875rem;
    line-height: 1;
    color: rgba(57, 211, 83, 0.85);
    transition: color 0.2s ease;
}
.dj-xiu .site-footer-friends__item-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
}
.dj-xiu .site-footer-friends__item:hover {
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.12);
}
.dj-xiu .site-footer-friends__item:hover .site-footer-friends__item-icon {
    color: var(--xiu-green);
}
@media (max-width: 767px) {
    .dj-xiu .site-footer-friends__list {
        gap: 0.45rem;
    }
    .dj-xiu .site-footer-friends__item {
        padding: 0.32rem 0.75rem;
        font-size: 0.8125rem;
    }
}
.dj-xiu .site-footer-xiu .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dj-xiu .site-footer-xiu .footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    background: var(--xiu-gray);
    color: var(--xiu-text);
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.35;
    transition: color 0.2s ease, background 0.2s ease;
}
.dj-xiu .site-footer-xiu .footer-links a:hover {
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.12);
}
.dj-xiu .site-footer-xiu .footer-divider {
    display: none;
}
@media (max-width: 767.98px) {
    .dj-xiu .site-footer-xiu__inner {
        padding: 0 0.65rem;
    }
}
@media (max-width: 1023px) {
    .dj-xiu .site-footer-xiu {
        display: none;
    }
    .dj-xiu .site-footer-xiu--home {
        display: block;
        padding-top: 0.35rem;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    }
    .dj-xiu .site-footer-xiu--home .site-footer-friends {
        margin-bottom: 0.65rem;
    }
    .dj-xiu .site-footer-xiu--home .section-card {
        padding: 0.75rem;
    }
    .dj-xiu .site-footer-xiu--home .footer-links {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.dj-xiu .bottom-nav-xiu { display: none !important; }

/* Header — fixed top */
.dj-xiu .xiu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    background: var(--xiu-dark);
    border-bottom: 1px solid var(--xiu-gray);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.dj-xiu .xiu-header-brand {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    background: var(--xiu-black);
    height: var(--xiu-header-h);
    min-height: var(--xiu-header-h);
    max-height: var(--xiu-header-h);
    line-height: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.dj-xiu .xiu-header-brand:hover {
    opacity: 0.9;
}
.dj-xiu .xiu-header-brand-mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    max-height: 100%;
    line-height: 0;
    position: relative;
}
.dj-xiu .xiu-header-inner {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .dj-xiu .xiu-header-brand {
        display: flex;
        width: auto;
        min-width: 120px;
        padding: 0 1rem;
    }
}
@media (max-width: 767.98px) {
    .dj-xiu .xiu-header > .xiu-header-brand {
        display: flex !important;
        flex: 1 1 auto;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 0 0.75rem !important;
        border-right: none !important;
        background: transparent;
    }
    .dj-xiu .xiu-header-inner {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-left: 0 !important;
        padding-right: 0.75rem !important;
    }
    .dj-xiu .xiu-header-inner.container {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    .dj-xiu .xiu-header-mobile {
        justify-content: flex-end;
        margin-left: auto;
        padding-right: 0;
        width: auto;
        min-width: 0;
        height: var(--xiu-header-h);
    }
}
@media (min-width: 1024px) {
    .dj-xiu .xiu-header {
        padding-left: var(--xiu-shell-gutter);
        padding-right: var(--xiu-shell-gutter);
        box-sizing: border-box;
    }
    .dj-xiu .xiu-header-brand {
        width: var(--xiu-sidebar-w);
        padding: 0 0.75rem;
    }
    .dj-xiu .xiu-header-inner.container {
        max-width: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .dj-xiu .xiu-header-desktop {
        max-width: var(--xiu-layout-max);
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

/* 顶栏响应式（避免与 Tailwind hidden 或自定义 .hidden 冲突） */
.dj-xiu .xiu-header-desktop {
    display: none;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    min-width: 0;
    height: var(--xiu-header-h);
    box-sizing: border-box;
    overflow: visible;
}
.dj-xiu .xiu-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 auto;
    height: 100%;
    overflow: visible;
}
.dj-xiu .xiu-header-actions {
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 0.75rem;
}
.dj-xiu .xiu-header-left > .xiu-search-wrap,
.dj-xiu .xiu-header-desktop .xiu-search-wrap {
    flex: 0 1 14rem;
    width: auto;
    min-width: 6.5rem;
    max-width: 14rem;
    margin-left: 0;
    flex-shrink: 1;
}
.dj-xiu .xiu-header-left .xiu-search-wrap.w-64 {
    width: auto;
}
.dj-xiu .xiu-header-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
}
.dj-xiu .xiu-mobile-only { display: block; }
@media (min-width: 1280px) {
    .dj-xiu .xiu-header-desktop { display: flex; }
    .dj-xiu .xiu-header-mobile { display: none; }
    .dj-xiu .xiu-mobile-only { display: none !important; }
    .dj-xiu .xiu-mobile-nav-root {
        display: none !important;
    }
}
@media (min-width: 1280px) and (max-width: 1440px) {
    .dj-xiu .xiu-header-nav {
        gap: 0.5rem;
    }
    .dj-xiu .xiu-header-genre-item > .nav-link-xiu {
        font-size: 0.8125rem;
    }
    .dj-xiu .xiu-header-left > .xiu-search-wrap,
    .dj-xiu .xiu-header-desktop .xiu-search-wrap {
        flex-basis: 10rem;
        max-width: 10rem;
        min-width: 6rem;
    }
    .dj-xiu .xiu-header-actions {
        gap: 0.5rem;
        padding-left: 0.5rem;
    }
    .dj-xiu .xiu-header-actions .xiu-btn {
        padding: 0.45rem 0.65rem;
        font-size: 0.8125rem;
    }
    .dj-xiu .xiu-header-actions #dj_nav_username {
        max-width: 4.5rem;
    }
}
.dj-xiu .xiu-search-wrap {
    display: flex;
    align-items: center;
    background: var(--xiu-gray);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}
.dj-xiu .xiu-search-wrap:focus-within { border-color: rgba(57,211,83,0.3); }
.dj-xiu .xiu-search-wrap input {
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 0.875rem;
    color: var(--xiu-text);
    border: none;
    min-width: 0;
}
.dj-xiu .xiu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    color: var(--xiu-text);
}
.dj-xiu .xiu-btn-gray { background: var(--xiu-gray); }
.dj-xiu .xiu-btn-gray:hover { background: #333; }
.dj-xiu .xiu-btn-green { background: var(--xiu-green); color: #121212; }
.dj-xiu .xiu-btn-more {
    background: var(--xiu-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    color: var(--xiu-text);
    text-decoration: none;
}
.dj-xiu .xiu-btn-more:hover { background: #333; }
.dj-xiu .xiu-tab-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    background: var(--xiu-gray);
    color: var(--xiu-text);
}
.dj-xiu .xiu-tab-btn.active { background: var(--xiu-green) !important; color: #121212 !important; }

.dj-xiu .xiu-user-dropdown {
    position: relative;
}
.dj-xiu .xiu-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 0.75rem;
    padding: 0.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.dj-xiu .xiu-user-menu.show { display: block; }
.dj-xiu .xiu-user-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--xiu-text);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}
.dj-xiu .xiu-user-menu a:hover { background: var(--xiu-gray); }

/* 播放记录下拉 — 面板 / 列表 / 滚动条 */
.dj-xiu #playlog_menu .xiu-user-menu {
    min-width: 400px;
    max-width: 460px;
    width: min(460px, calc(100vw - 2rem));
    padding: 0;
    background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
    border: 1px solid rgba(57, 211, 83, 0.18);
    border-radius: 0.875rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    overflow: hidden;
}
.dj-xiu #playlog_menu .xiu-playlog-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--xiu-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dj-xiu #playlog_menu .xiu-playlog-head::before {
    content: '';
    width: 3px;
    height: 12px;
    border-radius: 999px;
    background: var(--xiu-green);
    flex-shrink: 0;
}
.dj-xiu #playlog_history_list.xiu-playlog-list,
.dj-xiu #playlog_history_list {
    max-height: 340px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.35rem 0.35rem 0.35rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(57, 211, 83, 0.35) transparent;
}
.dj-xiu #playlog_history_list::-webkit-scrollbar {
    width: 6px;
}
.dj-xiu #playlog_history_list::-webkit-scrollbar-track {
    background: transparent;
    margin: 0.25rem 0;
}
.dj-xiu #playlog_history_list::-webkit-scrollbar-thumb {
    background: rgba(57, 211, 83, 0.28);
    border-radius: 999px;
}
.dj-xiu #playlog_history_list::-webkit-scrollbar-thumb:hover {
    background: rgba(57, 211, 83, 0.45);
}
.dj-xiu #playlog_history_list .dj-playlog-tracks,
.dj-xiu #playlog_history_list .mc_class {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.dj-xiu #playlog_history_list .dj-playlog-item,
.dj-xiu #playlog_history_list .mc_class .mc1 {
    margin: 0;
    padding: 0;
    border: none;
}
.dj-xiu #playlog_history_list .dj-playlog-item a,
.dj-xiu #playlog_history_list .mc_class .mc1 a {
    display: block;
    padding: 0.55rem 0.75rem;
    color: var(--xiu-text);
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.dj-xiu #playlog_history_list .dj-playlog-item a:hover,
.dj-xiu #playlog_history_list .mc_class .mc1 a:hover {
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.1);
    border-color: rgba(57, 211, 83, 0.16);
}
.dj-xiu #playlog_history_list .nolog,
.dj-xiu #playlog_history_list .dj-playlog-loading {
    display: block;
    padding: 2rem 1rem;
    color: var(--xiu-muted);
    text-align: center;
    font-size: 0.8125rem;
}
.dj-xiu #playlog_history_list .dj-playlog-footer {
    padding: 0.65rem 0.85rem 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.18);
}
.dj-xiu #playlog_history_list .dj-playlog-clear,
.dj-xiu #playlog_history_list .btn-hred {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    margin: 0;
    padding: 0.45rem 1rem;
    line-height: 1.4;
    height: auto;
    text-align: center;
    color: var(--xiu-muted);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(39, 39, 39, 0.65);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.dj-xiu #playlog_history_list .dj-playlog-clear:hover,
.dj-xiu #playlog_history_list .btn-hred:hover {
    color: #ffb4b4;
    border-color: rgba(255, 120, 120, 0.35);
    background: rgba(255, 80, 80, 0.08);
}

/* ===== 手机端抽屉导航 ===== */
.dj-xiu .xiu-mobile-nav-root {
    position: relative;
    z-index: 1180;
}
.dj-xiu .xiu-mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--xiu-gray);
    border-radius: 0.65rem;
    background: rgba(39, 39, 39, 0.55);
    color: var(--xiu-text);
    font-size: 1.35rem;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.dj-xiu .xiu-mobile-nav-toggle:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.45);
}
.dj-xiu .xiu-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    top: var(--xiu-header-h);
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 1180;
}
.dj-xiu .xiu-mobile-nav-drawer {
    position: fixed;
    top: var(--xiu-header-h);
    right: 0;
    bottom: 0;
    width: min(92vw, 360px);
    background: var(--xiu-dark);
    border-left: 1px solid var(--xiu-gray);
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1190;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.dj-xiu .xiu-mobile-nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--xiu-gray);
    background: rgba(39, 39, 39, 0.35);
    flex-shrink: 0;
}
.dj-xiu .xiu-mobile-nav-drawer__title {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--xiu-text);
}
.dj-xiu .xiu-mobile-nav-drawer__title i {
    color: var(--xiu-green);
    font-size: 1.1rem;
}
.dj-xiu .xiu-mobile-nav-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: var(--xiu-muted);
    font-size: 1.35rem;
    cursor: pointer;
}
.dj-xiu .xiu-mobile-nav-drawer__close:hover {
    color: var(--xiu-text);
    background: rgba(255, 255, 255, 0.06);
}
.dj-xiu .xiu-mobile-nav-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0.85rem 0.85rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}
.dj-xiu .xiu-mobile-nav-search {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.85rem;
    background: var(--xiu-gray);
    border: 1px solid transparent;
    border-radius: 0.75rem;
}
.dj-xiu .xiu-mobile-nav-search:focus-within {
    border-color: rgba(57, 211, 83, 0.35);
}
.dj-xiu .xiu-mobile-nav-search i {
    color: var(--xiu-green);
    font-size: 1rem;
    flex-shrink: 0;
}
.dj-xiu .xiu-mobile-nav-search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--xiu-text);
    font-size: 0.875rem;
    outline: none;
}
.dj-xiu .xiu-mobile-nav-search__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 0.5rem;
    padding: 0.35rem 0.65rem;
    background: var(--xiu-green);
    color: #121212;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
}
.dj-xiu .xiu-mobile-nav-member-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    margin-bottom: 0.85rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.16) 0%, rgba(39, 39, 39, 0.72) 100%);
    border: 1px solid rgba(57, 211, 83, 0.32);
    text-decoration: none;
    color: var(--xiu-text);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.dj-xiu .xiu-mobile-nav-member-card:hover {
    border-color: rgba(57, 211, 83, 0.55);
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.22) 0%, rgba(39, 39, 39, 0.78) 100%);
}
.dj-xiu .xiu-mobile-nav-login-card {
    background: rgba(39, 39, 39, 0.55);
    border-color: var(--xiu-gray);
}
.dj-xiu .xiu-mobile-nav-login-card:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.45);
    background: rgba(57, 211, 83, 0.08);
}
.dj-xiu .xiu-mobile-nav-login-card .xiu-mobile-nav-member-card__icon {
    background: rgba(255, 255, 255, 0.06);
    color: var(--xiu-text);
}
.dj-xiu .xiu-mobile-nav-member-card__icon--avatar {
    padding: 0;
    overflow: hidden;
}
.dj-xiu .xiu-mobile-nav-member-card__icon--avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.65rem;
}
.dj-xiu .xiu-mobile-nav-member-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: rgba(57, 211, 83, 0.14);
    color: var(--xiu-green);
    font-size: 1.35rem;
    flex-shrink: 0;
}
.dj-xiu .xiu-mobile-nav-member-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}
.dj-xiu .xiu-mobile-nav-member-card__text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--xiu-text);
}
.dj-xiu .xiu-mobile-nav-member-card__text small {
    font-size: 0.75rem;
    color: var(--xiu-muted);
    letter-spacing: 0.02em;
}
.dj-xiu .xiu-mobile-nav-member-card__arrow {
    color: var(--xiu-muted);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.dj-xiu .xiu-mobile-nav-section + .xiu-mobile-nav-section {
    margin-top: 0.85rem;
}
.dj-xiu .xiu-mobile-nav-section__title {
    margin: 0 0 0.5rem 0.15rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--xiu-muted);
    text-transform: uppercase;
}
.dj-xiu .xiu-mobile-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}
.dj-xiu .xiu-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    min-height: 4.5rem;
    padding: 0.45rem 0.35rem;
    border-radius: 0.75rem;
    background: rgba(39, 39, 39, 0.55);
    border: 1px solid var(--xiu-gray);
    color: var(--xiu-text);
    text-decoration: none;
    font-size: 0.72rem;
    line-height: 1.25;
    text-align: center;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.dj-xiu .xiu-mobile-nav-item i {
    font-size: 1.15rem;
    color: var(--xiu-green);
}
.dj-xiu .xiu-mobile-nav-item.is-active,
.dj-xiu .xiu-mobile-nav-item:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.45);
    background: rgba(57, 211, 83, 0.1);
}
.dj-xiu .xiu-mobile-nav-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.dj-xiu .xiu-mobile-nav-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(39, 39, 39, 0.55);
    border: 1px solid var(--xiu-gray);
    color: var(--xiu-muted);
    font-size: 0.8125rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.dj-xiu .xiu-mobile-nav-chip:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.45);
    background: rgba(57, 211, 83, 0.1);
}
.dj-xiu .xiu-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.dj-xiu .xiu-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.65rem;
    background: rgba(39, 39, 39, 0.45);
    border: 1px solid transparent;
    color: var(--xiu-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.dj-xiu .xiu-mobile-nav-link i {
    width: 1.25rem;
    text-align: center;
    color: var(--xiu-green);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.dj-xiu .xiu-mobile-nav-link:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.35);
    background: rgba(57, 211, 83, 0.08);
}
.dj-xiu .xiu-mobile-nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--xiu-gray);
}
.dj-xiu .xiu-mobile-nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 2.5rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.65rem;
    background: var(--xiu-gray);
    border: 1px solid transparent;
    color: var(--xiu-text);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.dj-xiu .xiu-mobile-nav-action i {
    font-size: 1rem;
    color: var(--xiu-green);
}
.dj-xiu .xiu-mobile-nav-action:hover {
    color: var(--xiu-green);
}
body.dj-xiu.xiu-mobile-nav-open .xiu-mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}
body.dj-xiu.xiu-mobile-nav-open .xiu-mobile-nav-drawer {
    transform: translateX(0);
}

/* Player — DjMsc fixed bar (参考 index.html player-fixed) */
.dj-xiu #music-player.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1090;
    background: var(--xiu-dark);
    border-top: 2px solid var(--xiu-green);
    height: 80px;
    isolation: isolate;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.38);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}
.dj-xiu #music-player.music-player.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.dj-xiu body.dj-has-player:not(.dj-has-inline-player):not(.member-layout) {
    padding-bottom: 80px;
}
.dj-xiu body.dj-has-player.dj-player-collapsed:not(.dj-has-inline-player):not(.member-layout) {
    padding-bottom: 0;
}
.dj-xiu #music-player .toggle-player {
    position: absolute;
    bottom: 100%;
    right: calc(1.25rem + 44px + 0.5rem);
    width: 36px;
    height: 28px;
    border: 1px solid rgba(57, 211, 83, 0.35);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    background: var(--xiu-dark);
    color: var(--xiu-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.dj-xiu #music-player .toggle-player:hover {
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.12);
    border-color: var(--xiu-green);
}
.dj-xiu #music-player.collapsed .toggle-player i {
    transform: rotate(180deg);
}
.dj-xiu #music-player.music-player.collapsed {
    height: 0;
    border-top: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
}
.dj-xiu #music-player .progres-container-top { display: none; }
.dj-xiu #music-player .player-content {
    height: 100%;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.dj-xiu #music-player.music-player.collapsed .player-content {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.dj-xiu #music-player .player-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: max(1.75rem, calc(var(--xiu-shell-gutter, 0px) + 1.25rem));
    padding-right: max(1.75rem, calc(var(--xiu-shell-gutter, 0px) + 1.25rem));
    box-sizing: border-box;
}
.dj-xiu #music-player .player-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 0 0 auto;
    margin-right: 0.35rem;
}
.dj-xiu #music-player .album-cover {
    width: 40px;
    height: 40px;
    border-radius: 0.25rem;
    overflow: hidden;
    background: var(--xiu-gray);
    flex-shrink: 0;
}
.dj-xiu #music-player .album-cover img { width: 100%; height: 100%; object-fit: cover; }
.dj-xiu #music-player .song-info { min-width: 0; max-width: 180px; }
.dj-xiu #music-player .song-title {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--xiu-text);
}
.dj-xiu #music-player .song-artist {
    font-size: 0.75rem;
    color: var(--xiu-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dj-xiu #music-player .player-center { flex: 1; display: flex; justify-content: center; }
.dj-xiu #music-player .control-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}
.dj-xiu #music-player .control-btn {
    background: none;
    border: none;
    color: var(--xiu-text);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.dj-xiu #music-player .control-btn:hover { color: var(--xiu-green); }
.dj-xiu #music-player .play-btn {
    width: 32px;
    height: 32px;
    background: var(--xiu-green);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
}
.dj-xiu #music-player .player-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}
.dj-xiu #music-player .time-display { font-size: 0.75rem; color: var(--xiu-muted); flex-shrink: 0; }
.dj-xiu #music-player .progres-bar,
.dj-xiu #music-player #progres-bar {
    flex: 1;
    height: 6px;
    background: #333;
    border-radius: 9999px;
    overflow: hidden;
    cursor: pointer;
    min-width: 60px;
}
.dj-xiu #music-player .progres,
.dj-xiu #music-player #progres {
    height: 100%;
    background: var(--xiu-green);
    border-radius: 9999px;
    width: 0;
}
.dj-xiu #music-player .volume-control { display: none; }
@media (min-width: 768px) {
    .dj-xiu #music-player .volume-control {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100px;
        flex-shrink: 0;
        margin-left: 0.35rem;
    }
}
@media (max-width: 767px) {
    .dj-xiu #music-player.music-player { height: 60px; bottom: 0; }
    .dj-xiu body.dj-has-player:not(.dj-has-inline-player):not(.member-layout) { padding-bottom: 60px; }
    .dj-xiu #music-player .toggle-player {
        right: calc(0.75rem + 44px + 0.5rem);
    }
    .dj-xiu #music-player .song-info { display: none; }
    .dj-xiu #music-player .player-container {
        gap: 0.45rem;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
    .dj-xiu #music-player .player-center {
        flex: 0 0 auto;
        order: 3;
    }
    .dj-xiu #music-player .player-right {
        flex: 1 1 auto;
        min-width: 0;
        gap: 0.35rem;
        order: 2;
    }
    .dj-xiu #music-player .player-left {
        order: 1;
    }
    .dj-xiu #music-player .control-buttons {
        gap: 0.35rem;
        font-size: 1rem;
    }
    .dj-xiu #music-player .play-btn {
        width: 2rem;
        height: 2rem;
    }
    .dj-xiu #music-player .time-display {
        font-size: 0.6875rem;
    }
}

.dj-xiu .dj-main {
    flex: none !important;
    min-height: 0;
}

/* Poster hook — 首页海报容器（插件输出 .poster-module） */
.dj-xiu .xiu-carousel,
.dj-xiu .dj-home-poster,
.dj-xiu .xiu-home-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    max-height: min(42vw, 420px);
    border-radius: 1rem;
    overflow: hidden;
    flex: none;
}
.dj-xiu .xiu-carousel img,
.dj-xiu .dj-home-poster img { width: 100%; height: 100%; object-fit: cover; }

/* Poster hook inside legacy carousel wrapper */
.dj-xiu .xiu-carousel .banner1,
.dj-xiu .xiu-carousel .swiper-container,
.dj-xiu .xiu-carousel .poster-wrap,
.dj-xiu .dj-home-poster .poster-module,
.dj-xiu .dj-home-poster .poster-layout,
.dj-xiu .dj-home-poster .poster-banner { width: 100%; height: 100%; }
.dj-xiu .xiu-carousel img,
.dj-xiu .dj-home-poster .poster-banner-item a img { width: 100%; height: 100%; object-fit: cover; }

.dj-xiu #xiu-friend-links a,
.dj-xiu .xiu-friend-link {
    font-size: 0.75rem;
    color: var(--xiu-muted);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dj-xiu #xiu-friend-links a:hover,
.dj-xiu .xiu-friend-link:hover { color: var(--xiu-green); }
.dj-xiu .xiu-friend-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem 0.5rem;
}
.dj-xiu .xiu-friend-links-empty {
    margin: 0;
    padding: 0.45rem 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--xiu-muted);
    text-align: center;
}

/* Dark overrides for inner list pages */
.dj-xiu .songList,
.dj-xiu .dj-section,
.dj-xiu .dj-home { color: var(--xiu-text); }

.dj-xiu .xiu-tab-hidden { display: none !important; }

/* ===== Fixed app shell: top header + left sidebar ===== */
:root {
    --xiu-header-h: 70px;
    --xiu-sidebar-w: 220px;
    --xiu-layout-max: 1440px;
    --xiu-shell-max: calc(var(--xiu-layout-max) + var(--xiu-sidebar-w));
    --xiu-shell-gutter: max(0px, calc((100vw - var(--xiu-shell-max)) / 2));
    --xiu-page-gap: 1rem;
    /* 顶栏下方仅留极小间距，三栏共用同一偏移（不再叠加 page-gap） */
    --xiu-content-offset: var(--xiu-header-h);
}
@media (max-width: 767px) {
    :root { --xiu-header-h: 60px; }
}

.dj-xiu .xiu-app {
    min-height: 100vh;
    padding-top: var(--xiu-content-offset);
    box-sizing: border-box;
}

/* 主栏 / 右栏 / 左栏：禁止链路额外顶距，顶对齐由 xiu-app 壳层统一控制 */
.dj-xiu .xiu-content-col,
.dj-xiu .dj-main,
.dj-xiu .xiu-main-inner,
.dj-xiu .xiu-sidebar-fixed,
.dj-xiu .xiu-sidebar-inner,
.dj-xiu .page-wrapper,
.dj-xiu .page-wrapper > .main-content,
.dj-xiu .page-wrapper > .sidebar-right {
    margin-top: 0;
    padding-top: 0;
}

.dj-xiu .xiu-content-col {
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.dj-xiu .dj-main,
.dj-xiu .xiu-main-inner {
    overflow: visible;
}

.dj-xiu .xiu-main-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 var(--xiu-page-gap) var(--xiu-page-gap);
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 1024px) {
    .dj-xiu .xiu-app {
        display: grid;
        grid-template-columns: var(--xiu-sidebar-w) minmax(0, 1fr);
        align-items: start;
        column-gap: 0;
        padding-left: var(--xiu-shell-gutter);
        padding-right: var(--xiu-shell-gutter);
    }

    .dj-xiu .xiu-content-col {
        grid-column: 2;
        grid-row: 1;
        margin-left: 0;
        margin-right: 0;
        width: auto;
        max-width: none;
    }
}

.dj-xiu .xiu-sidebar-fixed {
    position: fixed;
    top: var(--xiu-content-offset);
    left: 0;
    width: var(--xiu-sidebar-w);
    height: calc(100vh - var(--xiu-content-offset) - var(--xiu-page-gap));
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    z-index: 1050;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: var(--xiu-gray) transparent;
}
.dj-xiu .xiu-sidebar-fixed::-webkit-scrollbar { width: 4px; }
.dj-xiu .xiu-sidebar-fixed::-webkit-scrollbar-thumb { background: var(--xiu-gray); border-radius: 4px; }

@media (min-width: 1024px) {
    .dj-xiu .xiu-sidebar-fixed {
        position: sticky;
        top: var(--xiu-header-h);
        left: auto;
        grid-column: 1;
        grid-row: 1;
        display: block !important;
        width: 100%;
        height: auto;
        max-height: calc(100vh - var(--xiu-header-h) - var(--xiu-page-gap));
        align-self: start;
    }
}

.dj-xiu .xiu-sidebar-inner {
    padding: 0 var(--xiu-page-gap) var(--xiu-page-gap);
    box-sizing: border-box;
    min-height: 0;
}

.dj-xiu .xiu-sub-link {
    display: block;
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    color: var(--xiu-muted);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: color 0.2s, background 0.2s;
}
.dj-xiu .xiu-sub-link:hover {
    color: var(--xiu-green);
    background: rgba(39,39,39,0.5);
}

/* ===== Member center sidebar — xiu-sidebar-panel ===== */
.dj-xiu.member-layout .xiu-sidebar-member .xiu-sidebar-inner.xiu-sidebar-panel {
    padding: 0;
    overflow: hidden;
}

.dj-xiu .xiu-sidebar-panel > .xiu-member-nav,
.dj-xiu .xiu-sidebar-panel .xiu-member-nav {
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
}

.dj-xiu .xiu-member-nav {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.dj-xiu .xiu-member-nav > .nav-section {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0 !important;
    padding: 1rem;
}

.dj-xiu .xiu-member-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.dj-xiu .xiu-member-nav .nav-item {
    justify-content: center;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
}

.dj-xiu .xiu-member-nav .nav-item span {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .xiu-member-nav .nav-item .bi {
    font-size: 1.05rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
    color: var(--xiu-muted);
    transition: color 0.2s ease;
}

.dj-xiu .xiu-member-nav .nav-item:hover {
    background: rgba(39, 39, 39, 0.72);
}

.dj-xiu .xiu-member-nav .nav-item:hover .bi,
.dj-xiu .xiu-member-nav .nav-item.active .bi {
    color: var(--xiu-green);
}

.dj-xiu .xiu-member-nav .nav-item.active {
    background: rgba(57, 211, 83, 0.18);
    color: var(--xiu-green);
    font-weight: 600;
}

/* 覆盖 dj-beautify / dj-site 旧 list-group 样式 */
.dj-xiu.member-layout .dj-member-nav-list .list-group-item,
.dj-xiu.member-layout .dj-member-nav-list .list-group-item-action,
.dj-xiu.member-layout .xiu-member-nav .list-group-item {
    background: transparent !important;
    border: none !important;
    border-radius: 0.75rem !important;
    padding: 0.625rem 0.75rem !important;
    margin: 0 !important;
    color: var(--xiu-text) !important;
    box-shadow: none !important;
}

.dj-xiu.member-layout .dj-member-nav-list .list-group-item:hover,
.dj-xiu.member-layout .xiu-member-nav .list-group-item:hover {
    background: rgba(39, 39, 39, 0.72) !important;
    padding-left: 0.75rem !important;
    color: var(--xiu-text) !important;
}

.dj-xiu.member-layout .dj-member-nav-list .list-group-item.active,
.dj-xiu.member-layout .xiu-member-nav .list-group-item.active {
    background: rgba(57, 211, 83, 0.18) !important;
    color: var(--xiu-green) !important;
    border-left: none !important;
    padding-left: 0.75rem !important;
    font-weight: 600;
}

.dj-xiu.member-layout #djMemberSidebar .offcanvas-header {
    background: var(--xiu-dark);
    border-bottom-color: var(--xiu-gray) !important;
    color: var(--xiu-text);
}

.dj-xiu.member-layout #djMemberSidebar .offcanvas-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.dj-xiu.member-layout .xiu-member-offcanvas-body {
    background: var(--xiu-black);
    padding: 0.75rem !important;
}

.dj-xiu.member-layout .xiu-member-offcanvas-panel {
    border-radius: 1rem;
    overflow: hidden;
}

[data-theme="light"] .dj-xiu .xiu-member-nav .nav-item:hover,
[data-bs-theme="light"] .dj-xiu .xiu-member-nav .nav-item:hover {
    background: rgba(243, 244, 246, 0.95);
}

[data-theme="light"] .dj-xiu .xiu-member-nav .nav-item.active,
[data-bs-theme="light"] .dj-xiu .xiu-member-nav .nav-item.active {
    background: rgba(29, 185, 84, 0.12);
    color: #169c46;
}

[data-theme="light"] .dj-xiu.member-layout #djMemberSidebar .offcanvas-header,
[data-bs-theme="light"] .dj-xiu.member-layout #djMemberSidebar .offcanvas-header {
    background: #fff;
    border-bottom-color: #e5e7eb !important;
}

[data-theme="light"] .dj-xiu.member-layout .xiu-member-offcanvas-body,
[data-bs-theme="light"] .dj-xiu.member-layout .xiu-member-offcanvas-body {
    background: #f3f4f6;
}

.dj-xiu .xiu-header-mobile .xiu-header-logo {
    display: flex;
    align-items: center;
    height: auto;
    max-height: var(--xiu-header-h);
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    line-height: 0;
}
.dj-xiu .xiu-header-mobile .xiu-header-logo:hover {
    opacity: 0.9;
}
.dj-xiu .xiu-header-mobile .xiu-header-logo .xiu-header-brand-mark {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 0;
}
.dj-xiu .xiu-header-mobile .xiu-header-logo .dj-site-logo {
    display: block;
    max-height: 40px;
    max-width: 160px;
    width: auto;
    height: auto;
    margin: 0;
    object-fit: contain;
}
.dj-xiu .xiu-header-mobile .xiu-header-logo .dj-logo-dark { display: block; }
.dj-xiu .xiu-header-mobile .xiu-header-logo .dj-logo-light { display: none; }
[data-bs-theme="light"] .dj-xiu .xiu-header-mobile .xiu-header-logo .dj-logo-dark,
[data-theme="light"] .dj-xiu .xiu-header-mobile .xiu-header-logo .dj-logo-dark { display: none; }
[data-bs-theme="light"] .dj-xiu .xiu-header-mobile .xiu-header-logo .dj-logo-light,
[data-theme="light"] .dj-xiu .xiu-header-mobile .xiu-header-logo .dj-logo-light { display: block; }

/* Member center — top header row */
.dj-xiu.member-layout .xiu-header .xiu-header-inner {
    max-width: var(--xiu-layout-max);
    width: 100%;
}
.dj-xiu.member-layout .xiu-header-desktop > .xiu-header-nav,
.dj-xiu.member-layout .xiu-header-desktop > nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}
.dj-xiu.member-layout .xiu-header-left {
    flex: 1 1 auto;
    justify-content: center;
}
.dj-xiu.member-layout .xiu-header-left .xiu-search-wrap,
.dj-xiu.member-layout .xiu-header-desktop > .xiu-search-wrap {
    flex-shrink: 0;
}
.dj-xiu.member-layout .xiu-header-actions,
.dj-xiu.member-layout .xiu-header-desktop > div.flex {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ===== Inner pages — dark theme unify ===== */
.dj-xiu .dj-page,
.dj-xiu .dj-genre-page,
.dj-xiu .genre-list-page,
.dj-xiu .dj-home,
.dj-xiu .dj-section { color: var(--xiu-text); }

.dj-xiu .dj-breadcrumb,
.dj-xiu .dj-breadcrumb a {
    color: var(--xiu-muted);
    font-size: 0.8rem;
}
.dj-xiu .dj-breadcrumb a:hover { color: var(--xiu-green); }

.dj-xiu .dj-genre-filter-card,
.dj-xiu .dj-section,
.dj-xiu .dj-flat-card,
.dj-xiu .dj-list-card,
.dj-xiu .card,
.dj-xiu .dj-genre-block,
.dj-xiu .dj-page-card {
    background: var(--xiu-dark) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 1rem !important;
    color: var(--xiu-text) !important;
}

.dj-xiu .dj-genre-chip {
    background: var(--xiu-gray);
    color: var(--xiu-muted);
    border: 1px solid transparent;
}
.dj-xiu .dj-genre-chip:hover,
.dj-xiu .dj-genre-chip.is-active {
    background: rgba(57,211,83,0.2);
    color: var(--xiu-green);
    border-color: rgba(57,211,83,0.3);
}

.dj-xiu .dj-genre-filter-label { color: var(--xiu-muted); }

.dj-xiu .songList,
.dj-xiu .songItem,
.dj-xiu .songItemRow {
    background: transparent;
    color: var(--xiu-text);
}
.dj-xiu .songItem:hover,
.dj-xiu .songItem.sbg,
.dj-xiu .songItem.dbg {
    background: rgba(39,39,39,0.4) !important;
}
.dj-xiu .song-title,
.dj-xiu .songItem a { color: var(--xiu-text); }
.dj-xiu .song-title:hover { color: var(--xiu-green); }
.dj-xiu .song-info,
.dj-xiu .song-info span { color: var(--xiu-muted) !important; }

/* 分类/专辑等歌曲表格列表 — 暗色 */
.dj-xiu #f2 .dj-genre-table-wrap,
.dj-xiu #f2 .dj-genre-table-wrap.dj-song-list-desktop {
    background: var(--xiu-dark) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 1rem !important;
    padding: 0.25rem 0.5rem !important;
    margin: 0 !important;
    overflow: hidden;
}
.dj-xiu #f2 .dj-genre-table,
.dj-xiu #f2 table.list_musiclist,
.dj-xiu #f2 .dj-genre-table.table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: rgba(39, 39, 39, 0.55);
    color: var(--xiu-text) !important;
    background: transparent !important;
}
.dj-xiu #f2 .dj-genre-table thead th,
.dj-xiu #f2 table.list_musiclist thead th,
.dj-xiu #f2 .list_musiclist th {
    background: var(--xiu-gray) !important;
    background-image: none !important;
    color: var(--xiu-muted) !important;
    border-bottom: 1px solid #333 !important;
    font-weight: 600;
    font-size: 12px;
}
.dj-xiu #f2 .dj-genre-table tbody td,
.dj-xiu #f2 table.list_musiclist tbody td,
.dj-xiu #f2 .list_musiclist td {
    background: transparent !important;
    background-image: none !important;
    color: var(--xiu-text) !important;
    border-bottom-color: rgba(39, 39, 39, 0.65) !important;
    vertical-align: middle;
}
.dj-xiu #f2 .dj-genre-table tbody tr.sbg td,
.dj-xiu #f2 .dj-genre-table tbody tr.dbg td,
.dj-xiu #f2 table.list_musiclist tbody tr.sbg td,
.dj-xiu #f2 table.list_musiclist tbody tr.dbg td {
    background: transparent !important;
}
.dj-xiu #f2 .dj-genre-table tbody tr:hover td,
.dj-xiu #f2 table.list_musiclist tbody tr:hover td {
    background: rgba(39, 39, 39, 0.5) !important;
}
.dj-xiu .dj-genre-song-meta .t1 a,
.dj-xiu .list_play_img_title .t1 a,
.dj-xiu .isgood_list .list_play_img_title .t1 a {
    color: var(--xiu-text) !important;
    opacity: 1 !important;
}
.dj-xiu .dj-genre-song-meta .t1 a:hover,
.dj-xiu .list_play_img_title .t1 a:hover {
    color: var(--xiu-green) !important;
}
.dj-xiu .dj-genre-song-meta .t2,
.dj-xiu .dj-genre-song-meta .t2 span,
.dj-xiu .list_play_img_title .t2,
.dj-xiu .cor999,
.dj-xiu #f2 .list_musiclist .text-muted,
.dj-xiu #f2 .list_musiclist .small.text-muted {
    color: var(--xiu-muted) !important;
}
.dj-xiu #f2 .list_vb {
    color: var(--xiu-green);
    font-size: 12px;
}
.dj-xiu .dj-genre-table .contorl_menu_ico a {
    opacity: 0.88;
    filter: brightness(1.35);
}
.dj-xiu .dj-genre-table .icodown a:hover,
.dj-xiu .dj-genre-table .icocar a:hover,
.dj-xiu .dj-genre-table .icofav a:hover {
    opacity: 1;
    filter: none;
}
.dj-xiu .contorl_menu_ico .icocar a,
.dj-xiu .dj-genre-table .icocar a {
    background-image: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}
.dj-xiu .contorl_menu_ico .icocar a i,
.dj-xiu .dj-genre-table .icocar a i {
    font-size: 17px;
    line-height: 1;
}
.dj-xiu .contorl_menu_ico .icocar a:hover,
.dj-xiu .dj-genre-table .icocar a:hover {
    color: var(--xiu-green);
}
.dj-xiu .contorl_menu_ico a,
.dj-xiu .contorl_menu_ico a:hover,
.dj-xiu .contorl_menu_ico a:focus,
.dj-xiu .contorl_menu_ico a:active,
.dj-xiu .dj-genre-table .icodown a,
.dj-xiu .dj-genre-table .icocar a,
.dj-xiu .dj-genre-table .icofav a,
.dj-xiu .dj-genre-table .icodown a:hover,
.dj-xiu .dj-genre-table .icocar a:hover,
.dj-xiu .dj-genre-table .icofav a:hover,
.dj-xiu .song-more-action,
.dj-xiu .song-more-action:hover,
.dj-xiu .song-more-action:focus,
.dj-xiu .xiu-list-actions a,
.dj-xiu .xiu-list-actions a:hover,
.dj-xiu .xiu-list-actions a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
.dj-xiu .contorl_menu_ico a::after,
.dj-xiu .contorl_menu_ico a::before,
.dj-xiu .song-more-action::after,
.dj-xiu .xiu-list-actions a::after {
    display: none !important;
    content: none !important;
}

/* 内页版心与首页一致：由 .xiu-main-inner 统一 1440px + 1rem 内边距 */
.dj-xiu .xiu-main-inner > #f2,
.dj-xiu .xiu-main-inner #f2.dj-page,
.dj-xiu .xiu-main-inner #f2.genre-list-page,
.dj-xiu .xiu-main-inner #f2.dj-genre-page,
.dj-xiu .xiu-main-inner .dj-genre-page,
.dj-xiu .xiu-main-inner .dj-page,
.dj-xiu .xiu-main-inner .dj-mix-play-page,
.dj-xiu .xiu-main-inner .dj-play-page {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}
.dj-xiu .xiu-main-inner .page_body,
.dj-xiu .xiu-main-inner .page_body2,
.dj-xiu .xiu-main-inner .page_bai_ct,
.dj-xiu .xiu-main-inner .page_none_ct {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}
.dj-xiu .dj-genre-song-cell .list_play_img .play-icon {
    background: rgba(0, 0, 0, 0.45);
}
.dj-xiu .dj-genre-empty {
    color: var(--xiu-muted);
    padding: 1.5rem;
    text-align: center;
}
.dj-xiu .dj-song-list-wrap.dj-song-list-mobile,
.dj-xiu #f2 .songList.dj-song-list-mobile {
    background: var(--xiu-dark) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 1rem !important;
}
.dj-xiu .dj-song-list-header {
    background: var(--xiu-gray) !important;
    color: var(--xiu-muted) !important;
    border-bottom-color: #333 !important;
}
.dj-xiu .dj-song-list-mobile .songItem {
    border-bottom-color: rgba(39, 39, 39, 0.65) !important;
}
.dj-xiu .dj-song-list-mobile .songItem:hover {
    background: rgba(39, 39, 39, 0.45) !important;
}
.dj-xiu .dj-song-list-mobile .col-hot,
.dj-xiu .dj-song-list-mobile .col-time,
.dj-xiu .dj-song-list-mobile .col-coin,
.dj-xiu .dj-song-list-mobile .col-rank {
    color: var(--xiu-muted) !important;
}
.dj-xiu .dj-song-list-mobile .col-rank.is-top {
    color: var(--xiu-green) !important;
}

.dj-xiu .table { color: var(--xiu-text); }
.dj-xiu .table thead th {
    background: var(--xiu-gray);
    color: var(--xiu-text);
    border-color: #333;
}
.dj-xiu .table td { border-color: #333; }

.dj-xiu .pagination .page-link {
    background: var(--xiu-gray);
    border-color: #333;
    color: var(--xiu-text);
}
.dj-xiu .pagination .page-link:hover,
.dj-xiu .pagination .active .page-link {
    background: var(--xiu-green);
    color: #121212;
    border-color: var(--xiu-green);
}

.dj-xiu .form-control,
.dj-xiu .form-select {
    background: var(--xiu-gray);
    border-color: var(--xiu-gray);
    color: var(--xiu-text);
}
.dj-xiu .form-control:focus,
.dj-xiu .form-select:focus {
    background: var(--xiu-gray);
    border-color: var(--xiu-green);
    color: var(--xiu-text);
    box-shadow: 0 0 0 0.15rem rgba(57,211,83,0.2);
}

.dj-xiu .btn-dj,
.dj-xiu .btn-primary {
    background: var(--xiu-green);
    border-color: var(--xiu-green);
    color: #121212;
}
.dj-xiu .btn-outline-secondary {
    color: var(--xiu-text);
    border-color: var(--xiu-gray);
}
.dj-xiu .btn-outline-secondary:hover {
    background: var(--xiu-gray);
    color: var(--xiu-text);
}

.dj-xiu .text-muted { color: var(--xiu-muted) !important; }
.dj-xiu a:not(.nav-item):not(.xiu-btn):not(.xiu-sidebar-vip-unlock):not(.bottom-nav-item):not(.xiu-tab-btn):not(.xiu-shop-tab):not(.dj-shop-tab):not(.dj-shop-tab--current) { color: var(--xiu-text); }
.dj-xiu .dj-play-page,
.dj-xiu .dj-mix-play-page { background: transparent; }

/* ===== Inner page layout — match homepage grid + sticky sidebar ===== */
.dj-xiu #f2 > .row,
.dj-xiu #f2 > .row.g-3 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: var(--xiu-page-gap) !important;
    align-items: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}
.dj-xiu #f2 > .row > .col-lg-9,
.dj-xiu #f2 > .row > .dj-page-main {
    grid-column: 1 !important;
    align-self: start !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
}
@media (min-width: 992px) {
.dj-xiu #f2 > .row > aside.col-lg-3,
.dj-xiu #f2 > .row > .col-lg-3.dj-page-sidebar,
.dj-xiu #f2 > .row > .col-lg-3.dj-list-sidebar,
.dj-xiu #f2 > .row > .col-lg-3.xiu-page-sidebar {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    position: static !important;
    display: block !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}
}
.dj-xiu .xiu-page-sidebar-inner {
    position: sticky;
    top: var(--xiu-content-offset);
    display: flex;
    flex-direction: column;
    gap: var(--xiu-page-gap) !important;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    align-items: stretch;
}
/* 侧栏块间距：统一 page-gap，禁止 flex 子项被撑高 */
.dj-xiu .sidebar-right-inner > *,
.dj-xiu .xiu-page-sidebar-inner > * {
    flex: 0 0 auto;
    margin-top: 0 !important;
}
/* 禁止 flex 子项被压扁，否则榜单 overflow:hidden 会只露出约 6 条 */
.dj-xiu .xiu-page-sidebar-inner > .dj-card-side,
.dj-xiu .xiu-page-sidebar-inner > .xiu-panel {
    flex-shrink: 0;
    min-height: 0;
}
/* 空广告位不占高度（内页未加载 dj-beautify.js，CSS 兜底） */
.dj-xiu .xiu-page-sidebar-inner > .dj-sidebar-slider-slot:not(:has(.dj-mix-slider)):not(:has(img)):not(:has(iframe)):not(:has(video)):not(:has(.oUlplay)):not(:has(.dj-mix-slider__item)),
.dj-xiu .xiu-page-sidebar-inner > .dj-sidebar-slider-slot.is-empty,
.dj-xiu #playBox.is-empty {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: none !important;
}
.dj-xiu .xiu-page-sidebar-inner > .dj-sidebar-slider-slot {
    padding: 0 !important;
}
.dj-xiu .xiu-page-sidebar-inner > .dj-sidebar-slider-slot:has(img, .dj-mix-slider, .oUlplay) {
    overflow: hidden;
    border-radius: 1rem;
}
.dj-xiu #f2.dj-page--search > .row > aside {
    grid-column: 2 !important;
}
.dj-xiu #f2.dj-page--search > .row > .dj-page-main,
.dj-xiu #f2.dj-page--search > .row > .search_list_right {
    grid-column: 1 !important;
}
.dj-xiu #f2.dj-page--ranks > .dj-ranks-layout {
    grid-template-columns: 220px minmax(0, 1fr) !important;
}
.dj-xiu #f2.dj-page--ranks > .dj-ranks-layout > .dj-ranks-nav {
    grid-column: 1 !important;
    align-self: stretch !important;
}
.dj-xiu #f2.dj-page--ranks > .dj-ranks-layout > .dj-page-main {
    grid-column: 2 !important;
}
.dj-xiu .xiu-page-sidebar-inner > .dj-card-side,
.dj-xiu .xiu-page-sidebar-inner > .xiu-panel {
    background: var(--xiu-dark) !important;
    border-radius: 1rem !important;
    padding: 1rem !important;
    border: 1px solid var(--xiu-gray) !important;
    overflow: hidden;
    isolation: isolate;
    margin: 0 !important;
    box-shadow: none !important;
}
.dj-xiu .xiu-page-sidebar .album-card::before,
.dj-xiu .xiu-page-sidebar .album-card::after {
    display: none !important;
    content: none !important;
    filter: none !important;
}
.dj-xiu .xiu-page-sidebar .album-card {
    background: rgba(39, 39, 39, 0.92) !important;
    contain: paint;
}
.dj-xiu #f2 .dj-page-main,
.dj-xiu #f2 .col-lg-9.dj-page-main,
.dj-xiu #f2 > .row > .col-lg-9:not(.dj-ranks-nav) {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
}
.dj-xiu #f2 .dj-genre-filter-card {
    margin-bottom: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}
.dj-xiu #f2 > .dj-breadcrumb,
.dj-xiu #f2 > .xiu-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin: 0 0 0.5rem !important;
    padding: 0.55rem 0.85rem;
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.06) 0%, var(--xiu-dark) 42%);
    border: 1px solid var(--xiu-gray);
    border-radius: 0.75rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    font-size: 0.8125rem;
    line-height: 1.45;
}
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    padding: 0.22rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.12);
    border: 1px solid rgba(57, 211, 83, 0.22);
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__label i {
    font-size: 0.85rem;
    line-height: 1;
}
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
}
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item + .xiu-breadcrumb__item::before {
    content: '\203A';
    margin: 0 0.35rem;
    color: var(--xiu-muted);
    opacity: 0.55;
    font-size: 0.9rem;
    line-height: 1;
    pointer-events: none;
}
.dj-xiu #f2 > .dj-breadcrumb a,
.dj-xiu #f2 > .xiu-breadcrumb a {
    color: var(--xiu-muted);
    text-decoration: none;
    transition: color 0.18s ease;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dj-xiu #f2 > .dj-breadcrumb a:hover,
.dj-xiu #f2 > .xiu-breadcrumb a:hover {
    color: var(--xiu-green);
}
.dj-xiu #f2 > .dj-breadcrumb span,
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span {
    color: var(--xiu-text);
    font-weight: 600;
}
.dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span {
    padding: 0.12rem 0.45rem;
    background: rgba(57, 211, 83, 0.1);
    border-radius: 0.35rem;
}
.dj-xiu #f2 .dj-genre-filter-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem 0.85rem;
    padding: 0.6rem 0.95rem;
    margin: 0;
    border-bottom: 1px solid var(--xiu-gray);
}
.dj-xiu #f2 .dj-genre-filter-row:last-child {
    border-bottom: none;
}
.dj-xiu #f2 .dj-genre-filter-label {
    flex: 0 0 40px;
    width: 40px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--xiu-green);
    padding-top: 0.28rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.dj-xiu #f2 .dj-genre-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    flex: 1;
    min-width: 0;
}
.dj-xiu #f2 .dj-genre-filter-chips--scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(57, 211, 83, 0.35) transparent;
}
.dj-xiu #f2 .dj-genre-filter-chips--scroll::-webkit-scrollbar {
    height: 4px;
}
.dj-xiu #f2 .dj-genre-filter-chips--scroll::-webkit-scrollbar-thumb {
    background: rgba(57, 211, 83, 0.35);
    border-radius: 999px;
}
.dj-xiu #f2 .genre-chip,
.dj-xiu #f2 .dj-genre-chip {
    display: inline-flex !important;
    align-items: center;
    padding: 0.34rem 0.78rem !important;
    font-size: 0.8125rem !important;
    line-height: 1.35;
    color: var(--xiu-muted) !important;
    background: rgba(39, 39, 39, 0.42) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.dj-xiu #f2 .genre-chip:hover,
.dj-xiu #f2 .dj-genre-chip:hover {
    color: var(--xiu-green) !important;
    background: rgba(57, 211, 83, 0.1) !important;
    border-color: rgba(57, 211, 83, 0.45) !important;
}
.dj-xiu #f2 .genre-chip.is-active,
.dj-xiu #f2 .dj-genre-chip.is-active {
    color: #121212 !important;
    background: var(--xiu-green) !important;
    border-color: var(--xiu-green) !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(57, 211, 83, 0.28);
}
.dj-xiu #f2 .dj-genre-sort,
.dj-xiu #f2 #hothaomenu.dj-genre-sort {
    margin: 0 !important;
    padding: 0 0.35rem !important;
    background: var(--xiu-dark) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 0.875rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(57, 211, 83, 0.35) transparent;
    -webkit-overflow-scrolling: touch;
}
.dj-xiu #f2 .dj-genre-sort::-webkit-scrollbar,
.dj-xiu #f2 #hothaomenu.dj-genre-sort::-webkit-scrollbar {
    height: 4px;
}
.dj-xiu #f2 .dj-genre-sort::-webkit-scrollbar-thumb,
.dj-xiu #f2 #hothaomenu.dj-genre-sort::-webkit-scrollbar-thumb {
    background: rgba(57, 211, 83, 0.35);
    border-radius: 999px;
}
.dj-xiu #f2 .dj-genre-sort a,
.dj-xiu #f2 #hothaomenu.dj-genre-sort a {
    padding: 0.62rem 0.75rem !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    color: var(--xiu-muted) !important;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none !important;
    transition: color 0.18s ease, border-color 0.18s ease;
}
.dj-xiu #f2 .dj-genre-sort a:hover,
.dj-xiu #f2 #hothaomenu.dj-genre-sort a:hover {
    color: var(--xiu-text) !important;
    background: transparent !important;
}
.dj-xiu #f2 .dj-genre-sort a.is-active,
.dj-xiu #f2 #hothaomenu.dj-genre-sort a.is-active {
    color: var(--xiu-green) !important;
    background: transparent !important;
    border-bottom-color: var(--xiu-green) !important;
    font-weight: 700;
}
.dj-xiu #f2 .dj-page-main,
.dj-xiu #f2 .col-lg-9.dj-page-main {
    gap: 0.5rem !important;
}
.dj-xiu #f2.genre-list-page > .row,
.dj-xiu #f2.dj-page--ranks-sole.genre-list-page > .row {
    margin-top: 0 !important;
}
.dj-xiu .dj-genre-page .dj-breadcrumb,
.dj-xiu #f2.dj-genre-page > .dj-breadcrumb {
    margin-bottom: 0.5rem !important;
}
.dj-xiu #f2 .dj-page-main > .dj-genre-table-wrap,
.dj-xiu #f2 .dj-page-main > .dj-song-list-desktop,
.dj-xiu #f2 .search_list_ct > .dj-genre-table-wrap,
.dj-xiu #f2 .search_list_ct > .dj-song-list-desktop {
    margin: 0 !important;
}
.dj-xiu #f2 .dj-page-main > .dj-song-list-wrap.dj-song-list-mobile,
.dj-xiu #f2 .search_list_ct > .dj-song-list-wrap.dj-song-list-mobile {
    margin: 0 !important;
}
@media (min-width: 769px) {
    .dj-xiu #f2 .dj-page-main .dj-song-list-wrap.dj-song-list-mobile:not(.dj-sidebar-rank-mobile),
    .dj-xiu #f2 .search_list_ct > .dj-song-list-wrap.dj-song-list-mobile {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
@media (max-width: 768px) {
    .dj-xiu #f2 .dj-page-main .dj-genre-table-wrap.dj-song-list-desktop,
    .dj-xiu #f2 .search_list_ct > .dj-genre-table-wrap.dj-song-list-desktop {
        display: none !important;
    }
}
@media (min-width: 1024px) {
    .dj-xiu #f2 > .row { grid-template-columns: minmax(0, 1fr) 300px !important; }
}
@media (min-width: 1280px) {
    .dj-xiu #f2 > .row { grid-template-columns: minmax(0, 1fr) 320px !important; }
}
@media (max-width: 991px) {
    .dj-xiu #f2 > .row,
    .dj-xiu #f2.dj-page--ranks > .dj-ranks-layout {
        grid-template-columns: minmax(0, 1fr) !important;
    }
    .dj-xiu #f2 > .row > aside.col-lg-3,
    .dj-xiu #f2 > .row > .col-lg-3,
    .dj-xiu #f2.dj-page--ranks > .dj-ranks-layout > .dj-ranks-nav,
    .dj-xiu #f2.dj-page--search > .row > aside {
        grid-column: 1 !important;
        grid-row: auto !important;
        align-self: auto !important;
    }
    .dj-xiu #f2 > .row > .col-lg-9,
    .dj-xiu #f2 > .row > .dj-page-main,
    .dj-xiu #f2.dj-page--ranks > .dj-ranks-layout > .dj-page-main,
    .dj-xiu #f2.dj-page--search > .row > .dj-page-main,
    .dj-xiu #f2.dj-page--search > .row > .search_list_right {
        grid-column: 1 !important;
    }
    .dj-xiu .xiu-page-sidebar-inner { position: static; }
}
@media (max-width: 767.98px) {
    .dj-xiu .xiu-main-inner {
        padding: 0 0.65rem 0.65rem;
    }
    .dj-xiu .xiu-content-col,
    .dj-xiu #f2 {
        max-width: 100%;
        overflow-x: clip;
    }
    .dj-xiu #f2 > .row,
    .dj-xiu #f2 > .row.g-3 {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.65rem !important;
    }
    .dj-xiu #f2 > .row > aside.col-lg-3,
    .dj-xiu #f2 > .row > .col-lg-3.dj-page-sidebar,
    .dj-xiu #f2 > .row > .col-lg-3.dj-list-sidebar,
    .dj-xiu #f2 > .row > .col-lg-3.xiu-page-sidebar,
    .dj-xiu #f2 > .row > .col-lg-3.dj-ranks-nav,
    .dj-xiu #f2.dj-page--search > .row > aside,
    .dj-xiu #f2 .xiu-page-sidebar,
    .dj-xiu #f2 .dj-page-sidebar,
    .dj-xiu #f2 .dj-list-sidebar,
    .dj-xiu #f2 .xiu-page-sidebar.dj-list-sidebar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        border: none !important;
        pointer-events: none !important;
    }
    .dj-xiu #f2 > .dj-breadcrumb,
    .dj-xiu #f2 > .xiu-breadcrumb,
    .dj-xiu #f2.genre-list-page > .xiu-breadcrumb,
    .dj-xiu #f2.dj-genre-page > .xiu-breadcrumb {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    .dj-xiu #f2 > .xiu-breadcrumb {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0;
        padding: 0.45rem 0.65rem;
        overflow: hidden;
    }
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__label {
        display: none !important;
    }
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__list {
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__list::-webkit-scrollbar {
        display: none;
    }
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item {
        flex-shrink: 0;
        max-width: none;
    }
    .dj-xiu #f2 > .xiu-breadcrumb a,
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span {
        white-space: nowrap;
    }
    .dj-xiu #f2.genre-list-page > .xiu-breadcrumb,
    .dj-xiu #f2.dj-genre-page > .xiu-breadcrumb {
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 0.45rem 0.65rem;
    }
    .dj-xiu #f2 > .dj-breadcrumb {
        padding: 0.45rem 0.55rem;
        margin-bottom: 0.45rem !important;
    }
    .dj-xiu #f2 .dj-page-head {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.65rem !important;
        padding: 0.75rem !important;
    }
    .dj-xiu #f2 .dj-search-inline,
    .dj-xiu #f2 .dj-search-inline .input-group {
        width: 100%;
    }
    .dj-xiu #f2 .dj-page-tabs,
    .dj-xiu #f2 #hothaomenu.dj-page-tabs,
    .dj-xiu #f2 .dj-genre-sort,
    .dj-xiu #f2 #hothaomenu.dj-genre-sort {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.55rem 0.65rem !important;
        gap: 0.35rem !important;
    }
    .dj-xiu #f2 .dj-page-tabs::-webkit-scrollbar,
    .dj-xiu #f2 #hothaomenu.dj-page-tabs::-webkit-scrollbar,
    .dj-xiu #f2 .dj-genre-sort::-webkit-scrollbar,
    .dj-xiu #f2 #hothaomenu.dj-genre-sort::-webkit-scrollbar {
        display: none;
    }
    .dj-xiu #f2 .dj-page-tabs a,
    .dj-xiu #f2 #hothaomenu.dj-page-tabs a,
    .dj-xiu #f2 .dj-genre-sort a,
    .dj-xiu #f2 #hothaomenu.dj-genre-sort a {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .dj-xiu #f2 .dj-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        padding: 0.75rem !important;
    }
    .dj-xiu #f2 .dj-artist-cards {
        padding: 0.75rem !important;
    }
    .dj-xiu #f2 .dj-artist-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0.85rem !important;
    }
    .dj-xiu #f2 .dj-artist-card__avatar img {
        width: 72px;
        height: 72px;
    }
    .dj-xiu #f2 .dj-artist-card__head {
        justify-content: center;
    }
    .dj-xiu #f2 .dj-artist-card__songs > li {
        flex-wrap: wrap;
        justify-content: center;
    }
    .dj-xiu #f2 .genre-filter-compact {
        margin-bottom: 0.65rem;
        padding-bottom: 0.55rem;
        border-bottom: 1px solid var(--xiu-gray);
    }
    .dj-xiu #f2 .genre-filter-compact .genre-filter-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.45rem 0;
    }
    .dj-xiu #f2 .genre-filter-compact .genre-filter-head {
        flex: none;
        width: auto;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    .dj-xiu #f2 .genre-filter-compact .genre-filter-chips,
    .dj-xiu #f2 .genre-filter-compact .genre-filter-panel--cate .genre-filter-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.15rem;
    }
    .dj-xiu #f2 .genre-filter-compact .genre-chip {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__list {
        gap: 0.1rem 0;
    }
    .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item {
        max-width: 100%;
    }
    .dj-xiu #f2 .dj-genre-filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.55rem 0.75rem;
    }
    .dj-xiu #f2 .dj-genre-filter-label {
        flex: none;
        width: auto;
        padding-top: 0;
        font-size: 0.75rem;
    }
    .dj-xiu #f2 .dj-genre-filter-chips {
        gap: 0.35rem;
    }
    .dj-xiu #f2 .dj-genre-chip {
        padding: 0.3rem 0.62rem !important;
        font-size: 0.75rem !important;
    }
    .dj-xiu #f2 .dj-genre-sort,
    .dj-xiu #f2 #hothaomenu.dj-genre-sort {
        border-radius: 0.75rem !important;
        padding: 0 0.15rem !important;
    }
    .dj-xiu #f2 .dj-genre-sort a,
    .dj-xiu #f2 #hothaomenu.dj-genre-sort a {
        padding: 0.55rem 0.62rem !important;
        font-size: 0.75rem !important;
    }
    .dj-xiu #f2 .dj-page-main .dj-genre-table-wrap.dj-song-list-desktop,
    .dj-xiu #f2 .search_list_ct > .dj-genre-table-wrap.dj-song-list-desktop {
        display: none !important;
    }
    .dj-xiu #f2 .dj-page-main .dj-song-list-wrap.dj-song-list-mobile,
    .dj-xiu #f2 .search_list_ct > .dj-song-list-wrap.dj-song-list-mobile {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .dj-xiu #f2 .dj-song-list-wrap.dj-song-list-mobile .songList {
        background: var(--xiu-dark);
        border: 1px solid var(--xiu-gray);
        border-radius: 0.75rem;
        overflow: hidden;
    }
    .dj-xiu #f2 .dj-genre-toolbar,
    .dj-xiu #f2 .list_controllbox.dj-genre-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }
    .dj-xiu #f2 .dj-genre-toolbar .index-typeicon,
    .dj-xiu #f2 .list_controllbox .index-typeicon {
        display: flex;
        gap: 0.45rem;
    }
    .dj-xiu #f2 .dj-genre-toolbar .playall,
    .dj-xiu #f2 .dj-genre-toolbar .addall,
    .dj-xiu #f2 .list_controllbox .playall,
    .dj-xiu #f2 .list_controllbox .addall {
        flex: 1;
        text-align: center;
    }
    .dj-xiu #f2 nav.dj-pager,
    .dj-xiu #f2 .list_split_page {
        justify-content: center;
        padding: 0.65rem 0.75rem;
    }
    .dj-xiu .xiu-mobile-nav-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Inner page — titles, tabs, cards */
.dj-xiu .dj-page-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--xiu-text);
    margin: 0;
}
.dj-xiu .dj-page-sub {
    font-size: 0.75rem;
    color: var(--xiu-muted);
    margin: 0.2rem 0 0;
}
.dj-xiu .dj-page-head {
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    padding: 1rem;
    margin: 0 !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.35rem;
    margin: 0 0 0.5rem !important;
    padding: 0.55rem 0.85rem;
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 0.75rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    font-size: 0.8125rem;
    line-height: 1.45;
}
.dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) a {
    color: var(--xiu-muted);
    text-decoration: none;
    transition: color 0.18s ease;
}
.dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) a:hover {
    color: var(--xiu-green);
}
.dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) span {
    color: var(--xiu-text);
    font-weight: 600;
}
.dj-xiu .dj-page-tabs,
.dj-xiu #hothaomenu.dj-page-tabs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: var(--xiu-dark) !important;
    border-radius: 1rem !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid var(--xiu-gray) !important;
    margin: 0 !important;
    list-style: none;
}
.dj-xiu .dj-page-tabs a,
.dj-xiu #hothaomenu.dj-page-tabs a {
    display: inline-block;
    background: var(--xiu-gray);
    color: var(--xiu-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    text-decoration: none;
    border: none !important;
    line-height: 1.4;
}
.dj-xiu .dj-page-tabs a:hover,
.dj-xiu #hothaomenu.dj-page-tabs a:hover {
    color: var(--xiu-text);
    background: rgba(57, 211, 83, 0.12);
}
.dj-xiu .dj-page-tabs a.is-active,
.dj-xiu .dj-page-tabs a.pxon,
.dj-xiu .dj-page-tabs .flon a,
.dj-xiu #hothaomenu.dj-page-tabs a.is-active {
    background: rgba(57, 211, 83, 0.2) !important;
    color: var(--xiu-green) !important;
}

.dj-xiu .dj-page-tabs .wave { display: none; }
.dj-xiu .dj-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 1rem !important;
    margin: 0 !important;
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-media-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: none !important;
    transition: transform 0.2s;
}
.dj-xiu .dj-media-card:hover {
    transform: translateY(-2px);
    box-shadow: none !important;
}
.dj-xiu .dj-media-card img {
    border-radius: 0.75rem;
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}
.dj-xiu .dj-media-card__title {
    color: var(--xiu-text);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.dj-xiu .dj-media-card__meta {
    color: var(--xiu-muted);
    font-size: 0.72rem;
    margin-top: 0.35rem;
}
.dj-xiu .dj-artist-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-artist-card {
    background: var(--xiu-gray) !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}
.dj-xiu .dj-artist-card__name {
    color: var(--xiu-text);
    font-weight: 500;
}
.dj-xiu .dj-artist-card__meta {
    color: var(--xiu-muted);
    font-size: 0.75rem;
}
.dj-xiu .dj-artist-card__song {
    color: var(--xiu-muted);
    font-size: 0.8rem;
}
.dj-xiu .dj-artist-card__song:hover { color: var(--xiu-green); }
.dj-xiu .dj-artist-card__acts a {
    color: var(--xiu-muted);
    font-size: 0.85rem;
}
.dj-xiu .dj-artist-card__acts a:hover { color: var(--xiu-green); }
.dj-xiu .dj-entity-hero,
.dj-xiu .dj-radio-hero {
    background: var(--xiu-dark) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 1rem !important;
    overflow: hidden;
    contain: paint;
    isolation: isolate;
    margin: 0 !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-entity-hero .dishow_djmsg_bg img.blur,
.dj-xiu .dj-radio-hero .blur {
    filter: blur(48px);
    opacity: 0.25;
}
.dj-xiu .djshow_djmsg_text h1,
.dj-xiu .dj-radio-hero h1 {
    color: var(--xiu-text);
    font-size: 1.1rem;
}
.dj-xiu .dj-entity-intro,
.dj-xiu .djshow_djmsg_text p {
    color: var(--xiu-muted);
    font-size: 0.8rem;
}
.dj-xiu .index-rank-title span,
.dj-xiu .index-rank-title span a {
    font-size: 0.9rem;
    color: var(--xiu-text);
    font-weight: 500;
}
.dj-xiu .index-rank-title p {
    font-size: 0.7rem;
    color: var(--xiu-muted);
    margin: 0.15rem 0 0;
}

/* 侧栏榜单 — 宽松排版（仅桌面端显示侧栏） */
@media (min-width: 992px) {
.dj-xiu .dj-list-sidebar,
.dj-xiu .xiu-page-sidebar.dj-list-sidebar {
    position: static !important;
    top: auto !important;
    align-self: stretch !important;
    display: block !important;
    gap: 0 !important;
    height: auto !important;
}
}
.dj-xiu .xiu-page-sidebar-inner > .xiu-panel.dj-sidebar-rank-card,
.dj-xiu .xiu-page-sidebar-inner > .dj-sidebar-rank-card.xiu-panel {
    padding: 0 !important;
    overflow: visible;
    flex-shrink: 0;
    border: 1px solid var(--xiu-gray) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}
.dj-xiu .xiu-page-sidebar .dj-sidebar-rank-dual,
.dj-xiu .xiu-page-sidebar .list_hot_down.dj-sidebar-rank-desktop {
    overflow: visible;
}
.dj-xiu .dj-list-sidebar .dj-sidebar-rank-card {
    overflow: visible !important;
}
.dj-xiu .xiu-page-sidebar .index-rank-title {
    margin: 0 !important;
    padding: 1rem 1.1rem 0.85rem !important;
    border-bottom: 1px solid var(--xiu-gray) !important;
}
.dj-xiu .xiu-page-sidebar .index-rank-title span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
}
.dj-xiu .xiu-page-sidebar .index-rank-title p {
    margin: 0.25rem 0 0 !important;
    font-size: 0.72rem;
    line-height: 1.3;
    opacity: 0.85;
}
.dj-xiu .xiu-page-sidebar .list_hot_down,
.dj-xiu .xiu-page-sidebar .dj-sidebar-rank-dual .list_hot_down {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 0.85rem 0.95rem !important;
    margin: 0;
}
.dj-xiu .xiu-page-sidebar .list_hot_down dl {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin: 0 !important;
    padding: 0.55rem 0.65rem !important;
    min-height: 0 !important;
    line-height: normal !important;
    border-bottom: none !important;
    border-radius: 0.625rem;
    white-space: nowrap;
    overflow: hidden;
    transition: background 0.18s ease;
}
.dj-xiu .xiu-page-sidebar .list_hot_down dl:hover {
    background: rgba(39, 39, 39, 0.55);
}
.dj-xiu .xiu-page-sidebar .list_hot_down dt {
    flex-shrink: 0;
    width: 32px;
    min-width: 32px;
    height: 26px;
    line-height: 26px !important;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    padding: 0 !important;
    margin: 0;
    background: rgba(39, 39, 39, 0.95);
    color: var(--xiu-muted);
    font-variant-numeric: tabular-nums;
}
.dj-xiu .xiu-page-sidebar .list_hot_down dt.num1 {
    background: var(--xiu-green) !important;
    color: #121212 !important;
    box-shadow: 0 0 0 1px rgba(57, 211, 83, 0.35);
}
.dj-xiu .xiu-page-sidebar .list_hot_down dt.num2,
.dj-xiu .xiu-page-sidebar .list_hot_down dt.num3 {
    background: rgba(57, 211, 83, 0.18) !important;
    color: var(--xiu-green) !important;
    box-shadow: inset 0 0 0 1px rgba(57, 211, 83, 0.28);
}
.dj-xiu .xiu-page-sidebar .list_hot_down dd {
    margin: 0 !important;
    min-width: 0;
    flex: 1;
    line-height: normal !important;
    overflow: hidden;
    padding-right: 0.15rem;
}
.dj-xiu .xiu-page-sidebar .list_hot_down dd a {
    display: block;
    color: var(--xiu-text) !important;
    font-size: 0.8125rem;
    line-height: 1.45 !important;
    text-decoration: none !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.18s ease;
}
.dj-xiu .xiu-page-sidebar .list_hot_down dd a:hover {
    color: var(--xiu-green) !important;
}
.dj-xiu .xiu-page-sidebar .list_hot_down dl:hover dd a {
    color: var(--xiu-green) !important;
}
.dj-xiu .list_hot_down dl dt {
    color: var(--xiu-green);
    font-size: 0.75rem;
}
.dj-xiu .list_hot_down dl dd a {
    color: var(--xiu-muted);
    font-size: 0.8rem;
}
.dj-xiu .list_hot_down dl dd a:hover { color: var(--xiu-green); }
.dj-xiu .dj-sidebar-songs li a {
    color: var(--xiu-muted);
    font-size: 0.8rem;
}
.dj-xiu .dj-sidebar-songs li a:hover { color: var(--xiu-green); }
.dj-xiu .dj-genre-toolbar,
.dj-xiu .list_controllbox.dj-genre-toolbar {
    background: var(--xiu-dark) !important;
    border: 1px solid var(--xiu-gray) !important;
    border-radius: 1rem !important;
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-genre-toolbar .playall,
.dj-xiu .dj-genre-toolbar .addall,
.dj-xiu .list_controllbox .playall,
.dj-xiu .list_controllbox .addall {
    background: var(--xiu-gray);
    color: var(--xiu-text);
    padding: 0.4rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
}
.dj-xiu .dj-genre-toolbar .playall:hover,
.dj-xiu .list_controllbox .playall:hover {
    background: var(--xiu-green);
    color: #121212;
}
.dj-xiu .dj-genre-toolbar .addall:hover,
.dj-xiu .list_controllbox .addall:hover {
    background: var(--xiu-gray);
    color: var(--xiu-text);
}
.dj-xiu #f2 .dj-song-list-wrap,
.dj-xiu #f2 .dj-song-list-desktop,
.dj-xiu #f2 .songList.dj-song-list-mobile {
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    padding: 0.5rem 0.75rem;
    margin: 0 !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-pager,
.dj-xiu .list_split_page,
.dj-xiu #f2 nav.dj-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    background: var(--xiu-dark) !important;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    margin: 0 !important;
    border: 1px solid var(--xiu-gray) !important;
}
.dj-xiu .dj-pager__list,
.dj-xiu .list_split_page ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.dj-xiu .dj-pager__list li a,
.dj-xiu .list_split_page li a,
.dj-xiu .list_split_page .g a,
.dj-xiu .dj-pager__list li span,
.dj-xiu .list_split_page li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.dj-xiu .dj-pager__list li a,
.dj-xiu .list_split_page li a,
.dj-xiu .list_split_page .g a {
    background: var(--xiu-gray);
    border: 1px solid var(--xiu-gray);
    color: var(--xiu-text) !important;
}
.dj-xiu .dj-pager__list li a:hover,
.dj-xiu .list_split_page li a:hover,
.dj-xiu .list_split_page .g a:hover {
    background: rgba(57, 211, 83, 0.12);
    border-color: var(--xiu-green);
    color: var(--xiu-green) !important;
}
.dj-xiu .dj-pager__list li.active span,
.dj-xiu .list_split_page li.active span,
.dj-xiu .list_split_page #page_active span,
.dj-xiu .list_split_page_user li.active span {
    background: var(--xiu-green) !important;
    border: 1px solid var(--xiu-green) !important;
    color: #ffffff !important;
}
.dj-xiu .dj-pager__jump,
.dj-xiu .list_split_page .dj-pager__jump {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.dj-xiu .dj-pager__input,
.dj-xiu .list_split_page .form-control,
.dj-xiu .list_split_page input[name="p"] {
    width: 50px !important;
    height: 36px !important;
    padding: 0 6px !important;
    background: var(--xiu-gray) !important;
    border: 1px solid var(--xiu-gray) !important;
    color: var(--xiu-text) !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    text-align: center;
    box-sizing: border-box;
}
.dj-xiu .dj-pager__input:focus,
.dj-xiu .list_split_page input[name="p"]:focus {
    border-color: var(--xiu-green) !important;
    box-shadow: 0 0 0 3px rgba(57, 211, 83, 0.15);
    outline: none;
}
.dj-xiu .dj-pager__go,
.dj-xiu .list_split_page .btn-outline-primary {
    min-width: 44px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--xiu-green) !important;
    border-radius: 8px;
    background: transparent !important;
    color: var(--xiu-green) !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}
.dj-xiu .dj-pager__go:hover,
.dj-xiu .list_split_page .btn-outline-primary:hover {
    background: var(--xiu-green) !important;
    border-color: var(--xiu-green) !important;
    color: #ffffff !important;
}
.dj-xiu .dj-ranks-nav {
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-ranks-nav #top_fl_list li a {
    color: var(--xiu-muted);
    font-size: 0.85rem;
    display: block;
    padding: 0.4rem 0.5rem;
    border-radius: 0.5rem;
}
.dj-xiu .dj-ranks-nav #top_fl_list li.top_flon a,
.dj-xiu .dj-ranks-nav #top_fl_list li a:hover {
    background: rgba(57, 211, 83, 0.15);
    color: var(--xiu-green);
}
.dj-xiu .dj-search-hero,
.dj-xiu .search_list_ct {
    background: var(--xiu-dark);
    border: 1px solid var(--xiu-gray);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.dj-xiu .dj-search-summary {
    color: var(--xiu-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.dj-xiu .xiu-demo-page .xiu-demo-head .dj-search-summary {
    margin-bottom: 0;
    font-size: 0.8rem;
}
.dj-xiu .dj-search-summary .fbold { color: var(--xiu-green); }
.dj-xiu .dj-search-log a {
    color: var(--xiu-muted);
    font-size: 0.8rem;
}
.dj-xiu .dj-search-log a:hover { color: var(--xiu-green); }
.dj-xiu .dj-sidebar-album-cell__name,
.dj-xiu .dj-sidebar-producer-cell__name {
    color: var(--xiu-muted);
    font-size: 0.75rem;
}
.dj-xiu .dj-sidebar-album-cell:hover .dj-sidebar-album-cell__name,
.dj-xiu .dj-sidebar-producer-cell:hover .dj-sidebar-producer-cell__name {
    color: var(--xiu-green);
}
.dj-xiu .dj-sidebar-radio-refresh {
    background: var(--xiu-gray);
    color: var(--xiu-muted);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}
.dj-xiu .dj-sidebar-radio-refresh:hover {
    color: var(--xiu-green);
}

.dj-xiu .site-footer-xiu { margin-bottom: 0; }
@media (min-width: 1024px) {
    .dj-xiu .site-footer-xiu { display: block; }
}
@media (max-width: 1023px) {
    .dj-xiu .site-footer-xiu--home { display: block; }
}

.dj-xiu .dj-offcanvas,
.dj-xiu .offcanvas {
    background: var(--xiu-dark);
    color: var(--xiu-text);
}
.dj-xiu .dj-offcanvas .offcanvas-header,
.dj-xiu .offcanvas .offcanvas-header {
    border-color: var(--xiu-gray);
}
.dj-xiu .dj-offcanvas a,
.dj-xiu .offcanvas a { color: var(--xiu-text); }

.dj-xiu .layer-anim,
.dj-xiu .layui-layer {
    background: var(--xiu-dark) !important;
    color: var(--xiu-text) !important;
}

/* ===== 加入音乐盒弹窗（首页等未加载 dj-pages.css 时也需要） ===== */
body .demo-black-class.dj-fav-layer {
    border-radius: 1rem !important;
    overflow: hidden !important;
    border: 1px solid var(--xiu-gray, #272727) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45) !important;
    background: var(--xiu-dark, #1a1a1a) !important;
}

body .demo-black-class.dj-fav-layer .layui-layer-title {
    background: var(--xiu-dark, #1a1a1a);
    color: var(--xiu-text, #e0e0e0);
    border: none;
    border-bottom: 1px solid var(--xiu-gray, #272727);
    font-size: 0.875rem;
    font-weight: 600;
    height: 42px;
    line-height: 42px;
    padding: 0 1rem;
}

body .demo-black-class.dj-fav-layer .layui-layer-content {
    padding: 0;
    background: var(--xiu-dark, #1a1a1a);
    overflow: hidden;
}

body .demo-black-class.dj-fav-layer .layui-layer-close {
    filter: invert(1);
    opacity: 0.72;
}

body .demo-black-class.dj-fav-layer .layui-layer-close:hover {
    opacity: 1;
}

.dj-fav-modal {
    padding: 1rem 1.1rem 1.1rem;
    color: var(--xiu-text, #e0e0e0);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.dj-fav-modal__song {
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.65rem;
    background: rgba(57, 211, 83, 0.08);
    border: 1px solid rgba(57, 211, 83, 0.18);
    font-weight: 600;
    word-break: break-word;
}

.dj-fav-modal__target {
    margin-bottom: 0.55rem;
    color: var(--xiu-muted, #9ca3af);
    font-size: 0.75rem;
}

.dj-fav-modal__target strong {
    color: var(--xiu-green, #39d353);
    font-weight: 600;
}

.dj-fav-modal__list {
    max-height: 132px;
    overflow-y: auto;
    border: 1px solid var(--xiu-gray, #272727);
    border-radius: 0.65rem;
    background: var(--xiu-black, #121212);
}

.dj-fav-modal__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    color: var(--xiu-text, #e0e0e0);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dj-fav-modal__item a span {
    flex-shrink: 0;
    color: var(--xiu-green, #39d353);
    font-size: 0.75rem;
    font-weight: 600;
}

.dj-fav-modal__item a:hover {
    background: rgba(57, 211, 83, 0.08);
}

.dj-fav-modal__item.is-active a {
    background: rgba(57, 211, 83, 0.14);
    color: var(--xiu-green, #39d353);
    font-weight: 600;
}

.dj-fav-modal__new {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.dj-fav-modal__input {
    flex: 1 1 220px;
    min-width: 0;
    height: 38px;
    padding: 0 0.75rem;
    border-radius: 0.65rem;
    border: 1px solid var(--xiu-gray, #272727);
    background: var(--xiu-black, #121212);
    color: var(--xiu-text, #e0e0e0);
    font-size: 0.8125rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.dj-fav-modal__input::placeholder {
    color: var(--xiu-muted, #9ca3af);
}

.dj-fav-modal__input:focus {
    border-color: var(--xiu-green, #39d353);
    box-shadow: 0 0 0 3px rgba(57, 211, 83, 0.15);
}

.dj-fav-modal__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.dj-fav-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 0.85rem;
    border: 0;
    border-radius: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.dj-fav-modal__btn:hover {
    transform: translateY(-1px);
}

.dj-fav-modal__btn--primary {
    background: var(--xiu-green, #39d353);
    color: #121212;
    box-shadow: 0 6px 16px rgba(57, 211, 83, 0.22);
}

.dj-fav-modal__btn--primary:hover {
    background: #2ec249;
    color: #121212;
    box-shadow: 0 8px 20px rgba(57, 211, 83, 0.3);
}

.dj-fav-modal__btn--secondary {
    background: var(--xiu-gray, #272727);
    color: var(--xiu-text, #e0e0e0);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dj-fav-modal__btn--secondary:hover {
    background: #333;
}

.dj-fav-modal__btn--ghost {
    flex: 0 0 auto;
    min-width: 108px;
    background: var(--xiu-gray, #272727);
    color: var(--xiu-text, #e0e0e0);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dj-fav-modal__btn--ghost:hover {
    background: #333;
    border-color: rgba(57, 211, 83, 0.25);
}

.dj-fav-modal__msg {
    margin-top: 0.65rem;
    min-height: 0;
}

.dj-fav-modal__msg:empty {
    display: none;
}

.dj-fav-modal__tip {
    padding: 0.55rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

.dj-fav-modal__tip--err {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

.dj-fav-modal__tip--ok {
    background: rgba(57, 211, 83, 0.12);
    color: var(--xiu-green, #39d353);
}

.dj-fav-modal__loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    border-radius: 0.5rem;
    background: rgba(57, 211, 83, 0.08);
    color: var(--xiu-green, #39d353);
    font-size: 0.75rem;
}

.dj-fav-modal__loading::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: dj-fav-spin 0.7s linear infinite;
}

@keyframes dj-fav-spin {
    to { transform: rotate(360deg); }
}

[data-theme="light"] body .demo-black-class.dj-fav-layer,
[data-bs-theme="light"] body .demo-black-class.dj-fav-layer {
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12) !important;
    background: #fff !important;
}

[data-theme="light"] body .demo-black-class.dj-fav-layer .layui-layer-title,
[data-bs-theme="light"] body .demo-black-class.dj-fav-layer .layui-layer-title {
    background: #fff;
    color: #1a1a1a;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] body .demo-black-class.dj-fav-layer .layui-layer-content,
[data-bs-theme="light"] body .demo-black-class.dj-fav-layer .layui-layer-content {
    background: #fff;
}

[data-theme="light"] body .demo-black-class.dj-fav-layer .layui-layer-close,
[data-bs-theme="light"] body .demo-black-class.dj-fav-layer .layui-layer-close {
    filter: none;
    opacity: 0.55;
}

[data-theme="light"] .dj-fav-modal,
[data-bs-theme="light"] .dj-fav-modal {
    color: #1a1a1a;
}

[data-theme="light"] .dj-fav-modal__song,
[data-bs-theme="light"] .dj-fav-modal__song {
    background: rgba(22, 156, 70, 0.08);
    border-color: rgba(22, 156, 70, 0.16);
}

[data-theme="light"] .dj-fav-modal__target,
[data-bs-theme="light"] .dj-fav-modal__target {
    color: #6b7280;
}

[data-theme="light"] .dj-fav-modal__target strong,
[data-bs-theme="light"] .dj-fav-modal__target strong {
    color: #169c46;
}

[data-theme="light"] .dj-fav-modal__list,
[data-bs-theme="light"] .dj-fav-modal__list {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dj-fav-modal__item a,
[data-bs-theme="light"] .dj-fav-modal__item a {
    color: #1a1a1a;
}

[data-theme="light"] .dj-fav-modal__item a span,
[data-bs-theme="light"] .dj-fav-modal__item a span {
    color: #169c46;
}

[data-theme="light"] .dj-fav-modal__item a:hover,
[data-bs-theme="light"] .dj-fav-modal__item a:hover {
    background: rgba(22, 156, 70, 0.08);
}

[data-theme="light"] .dj-fav-modal__item.is-active a,
[data-bs-theme="light"] .dj-fav-modal__item.is-active a {
    background: rgba(22, 156, 70, 0.12);
    color: #169c46;
}

[data-theme="light"] .dj-fav-modal__input,
[data-bs-theme="light"] .dj-fav-modal__input {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

[data-theme="light"] .dj-fav-modal__input:focus,
[data-bs-theme="light"] .dj-fav-modal__input:focus {
    border-color: #169c46;
    box-shadow: 0 0 0 3px rgba(22, 156, 70, 0.15);
}

[data-theme="light"] .dj-fav-modal__btn--primary,
[data-bs-theme="light"] .dj-fav-modal__btn--primary {
    background: #169c46;
    color: #fff;
}

[data-theme="light"] .dj-fav-modal__btn--secondary,
[data-theme="light"] .dj-fav-modal__btn--ghost,
[data-bs-theme="light"] .dj-fav-modal__btn--secondary,
[data-bs-theme="light"] .dj-fav-modal__btn--ghost {
    background: #f3f4f6;
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .dj-fav-modal {
        padding: 0.85rem;
    }

    .dj-fav-modal__new {
        flex-direction: column;
        align-items: stretch;
    }

    .dj-fav-modal__btn--ghost {
        width: 100%;
    }
}

/* 右下角浮动工具（dj-site-tools） */
.dj-xiu #top_btn {
    display: none !important;
}

.dj-xiu .dj-float-tools {
    position: fixed !important;
    right: 1.25rem;
    bottom: calc(80px + 0.85rem);
    z-index: 1085;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    pointer-events: none;
}
.dj-xiu .dj-float-tools__btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--xiu-gray);
    border-radius: 50%;
    background: var(--xiu-dark);
    color: var(--xiu-text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.dj-xiu .dj-float-tools__btn i {
    font-size: 1.15rem;
    line-height: 1;
}
.dj-xiu .dj-float-tools__btn:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.dj-xiu .dj-float-tools__btn--theme {
    background: linear-gradient(145deg, rgba(57, 211, 83, 0.18), rgba(57, 211, 83, 0.06));
    border-color: rgba(57, 211, 83, 0.45);
    color: var(--xiu-green);
    box-shadow: 0 4px 18px rgba(57, 211, 83, 0.18);
}
.dj-xiu .dj-float-tools__btn--theme:hover {
    background: linear-gradient(145deg, rgba(57, 211, 83, 0.28), rgba(57, 211, 83, 0.12));
    color: #fff;
    border-color: var(--xiu-green);
}
.dj-xiu .dj-float-tools__btn--theme.is-dark-mode {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}
.dj-xiu .dj-float-tools__btn--theme.is-dark-mode:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.58);
}
.dj-xiu .dj-float-tools__label {
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
}
.dj-xiu .dj-float-tools__btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}
.dj-xiu body.dj-has-player .dj-float-tools {
    bottom: calc(80px + 0.85rem);
}
@media (max-width: 767px) {
    .dj-xiu .dj-float-tools {
        right: 0.75rem;
        bottom: calc(60px + 0.75rem);
    }
    .dj-xiu body.dj-has-player .dj-float-tools {
        bottom: calc(60px + 0.75rem);
    }
}

/* Header logo — 最终覆盖（防 dj-theme .dj-site-logo / 双图 display 干扰） */
.dj-xiu .xiu-header .xiu-header-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: var(--xiu-header-h) !important;
    min-height: var(--xiu-header-h) !important;
    max-height: var(--xiu-header-h) !important;
    line-height: 0 !important;
    box-sizing: border-box !important;
}
@media (max-width: 767.98px) {
    .dj-xiu .xiu-header .xiu-header-brand .dj-site-logo {
        max-height: 36px !important;
        max-width: 160px !important;
    }
    .dj-xiu .xiu-header .xiu-header-inner {
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: auto !important;
        min-width: 0 !important;
        margin-left: auto !important;
    }
    .dj-xiu .xiu-header .xiu-header-mobile {
        margin-left: auto !important;
        justify-content: flex-end !important;
    }
}
.dj-xiu .xiu-header-brand-mark {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    max-height: 100% !important;
    line-height: 0 !important;
}
.dj-xiu .xiu-header-brand .dj-site-logo {
    display: block !important;
    max-height: 40px !important;
    max-width: 180px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
}
.dj-xiu .xiu-header-brand .dj-logo-dark {
    display: block !important;
}
.dj-xiu .xiu-header-brand .dj-logo-light {
    display: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
[data-bs-theme="light"] .dj-xiu .xiu-header-brand .dj-logo-dark,
[data-theme="light"] .dj-xiu .xiu-header-brand .dj-logo-dark {
    display: none !important;
}
[data-bs-theme="light"] .dj-xiu .xiu-header-brand .dj-logo-light,
[data-theme="light"] .dj-xiu .xiu-header-brand .dj-logo-light {
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* ===== DjMsc 浅色模式 ===== */
[data-theme="light"] body.dj-site.dj-xiu,
[data-bs-theme="light"] body.dj-site.dj-xiu {
    --xiu-black: #f3f4f6;
    --xiu-dark: #ffffff;
    --xiu-gray: #e5e7eb;
    --xiu-green: #1db954;
    --xiu-text: #111827;
    --xiu-muted: #6b7280;
    --dj-surface: #ffffff;
    --dj-surface-2: #f3f4f6;
    --dj-surface-3: #e5e7eb;
    --dj-text: #111827;
    --dj-text-muted: #6b7280;
    --dj-border: rgba(209, 213, 219, 0.95);
    --dj-primary: #1db954;
    --dj-primary-hover: #169c46;
    --dj-primary-soft: rgba(29, 185, 84, 0.12);
    --dj-primary-muted: #22c55e;
    --dj-card-bg: #ffffff;
    --bs-body-bg: #f3f4f6;
    --bs-body-color: #111827;
    --bs-table-striped-bg: rgba(243, 244, 246, 0.85);
    --bs-table-hover-bg: rgba(229, 231, 235, 0.95);
    --bs-table-border-color: #e5e7eb;
    --bs-table-active-bg: rgba(29, 185, 84, 0.1);
    color-scheme: light;
}

[data-theme="light"] .dj-xiu .xiu-header,
[data-bs-theme="light"] .dj-xiu .xiu-header {
    background: #ffffff;
    border-bottom-color: #e5e7eb;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .dj-xiu .xiu-header-brand,
[data-bs-theme="light"] .dj-xiu .xiu-header-brand {
    background: #f9fafb;
}
[data-theme="light"] .dj-xiu .nav-link-xiu,
[data-bs-theme="light"] .dj-xiu .nav-link-xiu {
    color: #374151;
}
[data-theme="light"] .dj-xiu .nav-link-xiu:hover,
[data-bs-theme="light"] .dj-xiu .nav-link-xiu:hover {
    color: var(--xiu-green);
}
[data-theme="light"] .dj-xiu .nav-link-xiu.active,
[data-bs-theme="light"] .dj-xiu .nav-link-xiu.active {
    color: var(--xiu-green);
}
[data-theme="light"] .dj-xiu .nav-link-xiu.active::after,
[data-bs-theme="light"] .dj-xiu .nav-link-xiu.active::after {
    width: 70%;
    background: #1db954;
}
[data-theme="light"] .dj-xiu .xiu-header-genre-panel,
[data-bs-theme="light"] .dj-xiu .xiu-header-genre-panel {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
[data-theme="light"] .dj-xiu .xiu-header-genre-panel > a,
[data-bs-theme="light"] .dj-xiu .xiu-header-genre-panel > a {
    color: #374151;
}
[data-theme="light"] .dj-xiu .xiu-header-genre-panel > a:hover,
[data-bs-theme="light"] .dj-xiu .xiu-header-genre-panel > a:hover {
    background: #f3f4f6;
    color: var(--xiu-green);
}
[data-theme="light"] .dj-xiu .xiu-search-wrap,
[data-bs-theme="light"] .dj-xiu .xiu-search-wrap {
    background: #f3f4f6;
    border-color: rgba(29, 185, 84, 0.35);
}
[data-theme="light"] .dj-xiu .xiu-search-wrap input,
[data-bs-theme="light"] .dj-xiu .xiu-search-wrap input {
    color: #111827;
}
[data-theme="light"] .dj-xiu .xiu-btn-gray,
[data-bs-theme="light"] .dj-xiu .xiu-btn-gray {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #374151;
}
[data-theme="light"] .dj-xiu .xiu-btn-gray:hover,
[data-bs-theme="light"] .dj-xiu .xiu-btn-gray:hover {
    background: #e5e7eb;
    color: var(--xiu-green);
}
[data-theme="light"] .dj-xiu .xiu-user-menu,
[data-bs-theme="light"] .dj-xiu .xiu-user-menu {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}
[data-theme="light"] .dj-xiu .xiu-user-menu a:hover,
[data-bs-theme="light"] .dj-xiu .xiu-user-menu a:hover {
    background: #f3f4f6;
}
[data-theme="light"] .dj-xiu #playlog_menu .xiu-user-menu,
[data-bs-theme="light"] .dj-xiu #playlog_menu .xiu-user-menu {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-color: rgba(29, 185, 84, 0.22);
}
[data-theme="light"] .dj-xiu #playlog_menu .xiu-playlog-head,
[data-bs-theme="light"] .dj-xiu #playlog_menu .xiu-playlog-head {
    color: #6b7280;
    border-bottom-color: rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .dj-xiu #playlog_history_list .dj-playlog-item a:hover,
[data-bs-theme="light"] .dj-xiu #playlog_history_list .mc_class .mc1 a:hover {
    background: rgba(29, 185, 84, 0.1);
    border-color: rgba(29, 185, 84, 0.18);
}
[data-theme="light"] .dj-xiu #playlog_history_list .dj-playlog-footer,
[data-bs-theme="light"] .dj-xiu #playlog_history_list .dj-playlog-footer {
    background: rgba(243, 244, 246, 0.85);
    border-top-color: rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .dj-xiu .xiu-sidebar-fixed,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-fixed {
    background: transparent;
}
[data-theme="light"] .dj-xiu .xiu-sub-link:hover,
[data-bs-theme="light"] .dj-xiu .xiu-sub-link:hover {
    background: rgba(29, 185, 84, 0.1);
}
[data-theme="light"] .dj-xiu .rank-card,
[data-bs-theme="light"] .dj-xiu .rank-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
}
[data-theme="light"] .dj-xiu .rank-card:hover,
[data-bs-theme="light"] .dj-xiu .rank-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .dj-xiu .rank-badge.normal,
[data-bs-theme="light"] .dj-xiu .rank-badge.normal {
    background: #e5e7eb;
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .rank-progress,
[data-bs-theme="light"] .dj-xiu .rank-progress {
    background: #e5e7eb;
}
[data-theme="light"] .dj-xiu .producer-card,
[data-bs-theme="light"] .dj-xiu .producer-card {
    background: rgba(255, 255, 255, 0.96);
    border-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .producer-card:hover,
[data-bs-theme="light"] .dj-xiu .producer-card:hover {
    background: #ffffff;
    border-color: rgba(29, 185, 84, 0.35);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .dj-xiu .producer-card__cover,
[data-bs-theme="light"] .dj-xiu .producer-card__cover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .producer-card__name,
[data-bs-theme="light"] .dj-xiu .producer-card__name {
    color: #111827;
}
[data-theme="light"] .dj-xiu .song-row,
[data-bs-theme="light"] .dj-xiu .song-row {
    border-bottom-color: rgba(229, 231, 235, 0.95);
}
[data-theme="light"] .dj-xiu .song-row:hover,
[data-bs-theme="light"] .dj-xiu .song-row:hover {
    background: rgba(243, 244, 246, 0.95);
}
[data-theme="light"] .dj-xiu .bottom-nav-xiu,
[data-bs-theme="light"] .dj-xiu .bottom-nav-xiu {
    background: rgba(255, 255, 255, 0.96);
    border-top-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu #music-player.music-player,
[data-bs-theme="light"] .dj-xiu #music-player.music-player {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: #e5e7eb;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .dj-xiu #music-player .toggle-player,
[data-bs-theme="light"] .dj-xiu #music-player .toggle-player {
    background: rgba(255, 255, 255, 0.98);
    border-color: #e5e7eb;
    color: #6b7280;
}
[data-theme="light"] .dj-xiu #music-player .toggle-player:hover,
[data-bs-theme="light"] .dj-xiu #music-player .toggle-player:hover {
    color: #169c46;
    background: rgba(22, 156, 70, 0.08);
    border-color: #169c46;
}
[data-theme="light"] .dj-xiu #music-player .control-btn,
[data-bs-theme="light"] .dj-xiu #music-player .control-btn {
    color: #374151;
}
[data-theme="light"] .dj-xiu .site-footer-xiu,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu {
    background: transparent;
    border-top: none;
}
[data-theme="light"] .dj-xiu .site-footer-xiu .footer-links,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu .footer-links {
    border-bottom-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .site-footer-xiu .footer-links a,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu .footer-links a {
    background: #f3f4f6;
    color: #374151;
}
[data-theme="light"] .dj-xiu .site-footer-xiu .footer-links a:hover,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu .footer-links a:hover {
    background: rgba(22, 156, 70, 0.1);
    color: #169c46;
}
[data-theme="light"] .dj-xiu .site-footer-xiu__brand,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu__brand {
    color: #111827;
}
[data-theme="light"] .dj-xiu .site-footer-xiu__desc,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu__desc,
[data-theme="light"] .dj-xiu .site-footer-xiu__icp,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu__icp,
[data-theme="light"] .dj-xiu .site-footer-xiu__icp a,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu__icp a {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .site-footer-xiu__icp a:hover,
[data-bs-theme="light"] .dj-xiu .site-footer-xiu__icp a:hover {
    color: #169c46;
}
[data-theme="light"] .dj-xiu .site-footer-friends__item,
[data-bs-theme="light"] .dj-xiu .site-footer-friends__item {
    background: #f3f4f6;
    color: #374151;
}
[data-theme="light"] .dj-xiu .site-footer-friends__item-icon,
[data-bs-theme="light"] .dj-xiu .site-footer-friends__item-icon {
    color: #169c46;
}
[data-theme="light"] .dj-xiu .site-footer-friends__item:hover,
[data-bs-theme="light"] .dj-xiu .site-footer-friends__item:hover {
    background: rgba(22, 156, 70, 0.1);
    color: #169c46;
}
[data-theme="light"] .dj-xiu .section-card,
[data-bs-theme="light"] .dj-xiu .section-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .dj-xiu .layui-layer,
[data-bs-theme="light"] .dj-xiu .layui-layer {
    background: #ffffff !important;
    color: #111827 !important;
}
[data-theme="light"] body.dj-xiu .layui-layer-msg,
[data-theme="light"] body.dj-xiu .layui-layer-hui,
[data-bs-theme="light"] body.dj-xiu .layui-layer-msg,
[data-bs-theme="light"] body.dj-xiu .layui-layer-hui {
    background: rgba(17, 24, 39, 0.92) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.2) !important;
}
[data-theme="light"] body.dj-xiu .layui-layer-msg .layui-layer-content,
[data-theme="light"] body.dj-xiu .layui-layer-hui .layui-layer-content,
[data-bs-theme="light"] body.dj-xiu .layui-layer-msg .layui-layer-content,
[data-bs-theme="light"] body.dj-xiu .layui-layer-hui .layui-layer-content {
    color: #fff !important;
}
[data-theme="light"] .dj-xiu .dj-float-tools__btn,
[data-bs-theme="light"] .dj-xiu .dj-float-tools__btn {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #374151;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}
[data-theme="light"] .dj-xiu .dj-float-tools__btn--theme,
[data-bs-theme="light"] .dj-xiu .dj-float-tools__btn--theme {
    background: linear-gradient(145deg, rgba(29, 185, 84, 0.14), rgba(29, 185, 84, 0.05));
    border-color: rgba(29, 185, 84, 0.4);
    color: #169c46;
}
[data-theme="light"] .dj-xiu .dj-float-tools__btn--theme.is-dark-mode,
[data-bs-theme="light"] .dj-xiu .dj-float-tools__btn--theme.is-dark-mode {
    background: rgba(255, 255, 255, 0.92);
    border-color: #e5e7eb;
    color: #374151;
}

/* 首页 Tailwind 硬编码色 — 浅色覆盖 */
[data-theme="light"] .dj-xiu .bg-\[\#1a1a1a\],
[data-bs-theme="light"] .dj-xiu .bg-\[\#1a1a1a\] {
    background-color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .bg-\[\#272727\],
[data-bs-theme="light"] .dj-xiu .bg-\[\#272727\] {
    background-color: #f3f4f6 !important;
}
[data-theme="light"] .dj-xiu .text-\[\#e0e0e0\],
[data-bs-theme="light"] .dj-xiu .text-\[\#e0e0e0\] {
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .text-\[\#39d353\],
[data-bs-theme="light"] .dj-xiu .text-\[\#39d353\] {
    color: #1db954 !important;
}
[data-theme="light"] .dj-xiu .hover\:bg-\[\#333\]:hover,
[data-bs-theme="light"] .dj-xiu .hover\:bg-\[\#333\]:hover {
    background-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu .hover\:text-\[\#39d353\]:hover,
[data-bs-theme="light"] .dj-xiu .hover\:text-\[\#39d353\]:hover {
    color: #1db954 !important;
}
[data-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div,
[data-bs-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .sidebar-right-inner > div {
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-table thead th,
[data-theme="light"] .dj-xiu #f2 table.list_musiclist thead th,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-table thead th,
[data-bs-theme="light"] .dj-xiu #f2 table.list_musiclist thead th {
    background: #f3f4f6 !important;
    color: #374151 !important;
    border-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-table tbody td,
[data-theme="light"] .dj-xiu #f2 table.list_musiclist tbody td,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-table tbody td,
[data-bs-theme="light"] .dj-xiu #f2 table.list_musiclist tbody td {
    border-color: #eef0f3 !important;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-table tbody tr:hover td,
[data-theme="light"] .dj-xiu #f2 table.list_musiclist tbody tr:hover td,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-table tbody tr:hover td,
[data-bs-theme="light"] .dj-xiu #f2 table.list_musiclist tbody tr:hover td {
    background: rgba(243, 244, 246, 0.95) !important;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-drawer,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-drawer {
    background: #ffffff;
    border-left-color: #e5e7eb;
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-drawer__head,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-drawer__head {
    background: #f9fafb;
    border-bottom-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-toggle,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-toggle {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #374151;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-search,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-search {
    background: #f3f4f6;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-item,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-item {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #374151;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-chip,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-chip {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-action,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-action {
    background: #f3f4f6;
    color: #374151;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-member-card,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-member-card {
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.12) 0%, #f9fafb 100%);
    border-color: rgba(57, 211, 83, 0.28);
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-login-card,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-login-card {
    background: #f3f4f6;
    border-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-login-card .xiu-mobile-nav-member-card__icon,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-login-card .xiu-mobile-nav-member-card__icon {
    background: #e5e7eb;
    color: #374151;
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-member-card__icon,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-member-card__icon {
    background: rgba(57, 211, 83, 0.12);
}
[data-theme="light"] .dj-xiu .xiu-mobile-nav-link,
[data-bs-theme="light"] .dj-xiu .xiu-mobile-nav-link {
    background: #f9fafb;
    color: #374151;
}
[data-theme="light"] .dj-xiu #f2 .dj-song-list-wrap.dj-song-list-mobile .songList,
[data-bs-theme="light"] .dj-xiu #f2 .dj-song-list-wrap.dj-song-list-mobile .songList {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
}

/* 浅色 — 左侧栏导航 */
[data-theme="light"] .dj-xiu .nav-section,
[data-bs-theme="light"] .dj-xiu .nav-section {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu .xiu-sidebar-panel,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-panel {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu .xiu-sidebar-panel > .nav-section,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-panel > .nav-section {
    background: transparent;
    border: none;
    box-shadow: none;
}
[data-theme="light"] .dj-xiu .xiu-sidebar-panel > .nav-section + .nav-section,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-panel > .nav-section + .nav-section {
    border-top-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .nav-item,
[data-bs-theme="light"] .dj-xiu .nav-item {
    color: #374151;
}
[data-theme="light"] .dj-xiu .nav-item:hover,
[data-bs-theme="light"] .dj-xiu .nav-item:hover {
    background: #f3f4f6;
}
[data-theme="light"] .dj-xiu .nav-item.active,
[data-bs-theme="light"] .dj-xiu .nav-item.active {
    background: rgba(29, 185, 84, 0.12);
    color: #169c46;
}

[data-theme="light"] .dj-xiu .xiu-sidebar-vip-promo,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-vip-promo {
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(29, 185, 84, 0.14) 0%, transparent 58%),
        linear-gradient(180deg, #f8faf9 0%, #f3f4f6 100%) !important;
    border-color: transparent !important;
}
[data-theme="light"] .dj-xiu .xiu-sidebar-vip-promo__icon,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-vip-promo__icon {
    color: #169c46;
    background: rgba(29, 185, 84, 0.12);
    border-color: rgba(29, 185, 84, 0.28);
    box-shadow: 0 0 0 4px rgba(29, 185, 84, 0.06);
}
[data-theme="light"] .dj-xiu .xiu-sidebar-vip-promo__title,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-vip-promo__title {
    color: #111827;
}
[data-theme="light"] .dj-xiu .xiu-sidebar-vip-promo__sub,
[data-bs-theme="light"] .dj-xiu .xiu-sidebar-vip-promo__sub {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .nav-section .font-bold,
[data-theme="light"] .dj-xiu .nav-section .text-sm,
[data-bs-theme="light"] .dj-xiu .nav-section .font-bold,
[data-bs-theme="light"] .dj-xiu .nav-section .text-sm {
    color: #111827;
}
[data-theme="light"] .dj-xiu #xiu-friend-links a,
[data-bs-theme="light"] .dj-xiu #xiu-friend-links a {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .xiu-friend-links-empty,
[data-bs-theme="light"] .dj-xiu .xiu-friend-links-empty {
    color: #9ca3af;
}

/* 浅色 — 内页列表 / 筛选 / 侧栏榜 */
[data-theme="light"] .dj-xiu #f2 .dj-genre-table-wrap,
[data-theme="light"] .dj-xiu #f2 .dj-song-list-wrap.dj-song-list-mobile,
[data-theme="light"] .dj-xiu #f2 .songList.dj-song-list-mobile,
[data-theme="light"] .dj-xiu .xiu-page-sidebar-inner > .xiu-panel,
[data-theme="light"] .dj-xiu .xiu-page-sidebar-inner > .dj-card-side,
[data-theme="light"] .dj-xiu .dj-genre-filter-card,
[data-theme="light"] .dj-xiu .dj-page-card,
[data-theme="light"] .dj-xiu .card,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-table-wrap,
[data-bs-theme="light"] .dj-xiu #f2 .dj-song-list-wrap.dj-song-list-mobile,
[data-bs-theme="light"] .dj-xiu #f2 .songList.dj-song-list-mobile,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar-inner > .xiu-panel,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar-inner > .dj-card-side,
[data-bs-theme="light"] .dj-xiu .dj-genre-filter-card,
[data-bs-theme="light"] .dj-xiu .dj-page-card,
[data-bs-theme="light"] .dj-xiu .card {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05) !important;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar-inner > .xiu-panel.dj-sidebar-rank-card,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar-inner > .xiu-panel.dj-sidebar-rank-card {
    border-color: #e5e7eb !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06) !important;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .index-rank-title,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .index-rank-title {
    border-bottom-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .index-rank-title span,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .index-rank-title span {
    color: #111827;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .index-rank-title p,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .index-rank-title p {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dl:hover,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dl:hover {
    background: #f3f4f6;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt {
    background: #e5e7eb;
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt.num1,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt.num1 {
    background: var(--xiu-green) !important;
    color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt.num2,
[data-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt.num3,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt.num2,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .list_hot_down dt.num3 {
    background: rgba(29, 185, 84, 0.12) !important;
    color: #169c46 !important;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-sort,
[data-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-sort,
[data-bs-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort {
    border-bottom-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu .dj-genre-chip,
[data-bs-theme="light"] .dj-xiu .dj-genre-chip {
    background: #f3f4f6;
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .dj-genre-chip.is-active,
[data-theme="light"] .dj-xiu .dj-genre-chip:hover,
[data-bs-theme="light"] .dj-xiu .dj-genre-chip.is-active,
[data-bs-theme="light"] .dj-xiu .dj-genre-chip:hover {
    background: rgba(29, 185, 84, 0.12);
    color: #169c46;
    border-color: rgba(29, 185, 84, 0.25);
}
[data-theme="light"] .dj-xiu .dj-genre-filter-label,
[data-bs-theme="light"] .dj-xiu .dj-genre-filter-label {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-song-meta .t1 a,
[data-theme="light"] .dj-xiu #f2 .list_play_img_title .t1 a,
[data-theme="light"] .dj-xiu #f2 .isgood_list .list_play_img_title .t1 a,
[data-theme="light"] .dj-xiu #f2 .list_hot_down dd a,
[data-theme="light"] .dj-xiu #f2 .dj-genre-table tbody td a,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-song-meta .t1 a,
[data-bs-theme="light"] .dj-xiu #f2 .list_play_img_title .t1 a,
[data-bs-theme="light"] .dj-xiu #f2 .isgood_list .list_play_img_title .t1 a,
[data-bs-theme="light"] .dj-xiu #f2 .list_hot_down dd a,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-table tbody td a {
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-song-meta .t1 a:hover,
[data-theme="light"] .dj-xiu #f2 .list_play_img_title .t1 a:hover,
[data-theme="light"] .dj-xiu #f2 .list_hot_down dd a:hover,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-song-meta .t1 a:hover,
[data-bs-theme="light"] .dj-xiu #f2 .list_play_img_title .t1 a:hover,
[data-bs-theme="light"] .dj-xiu #f2 .list_hot_down dd a:hover {
    color: #169c46 !important;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-table tbody td,
[data-theme="light"] .dj-xiu #f2 table.list_musiclist tbody td,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-table tbody td,
[data-bs-theme="light"] .dj-xiu #f2 table.list_musiclist tbody td {
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .songItem:hover,
[data-theme="light"] .dj-xiu .songItem.sbg,
[data-theme="light"] .dj-xiu .songItem.dbg,
[data-bs-theme="light"] .dj-xiu .songItem:hover,
[data-bs-theme="light"] .dj-xiu .songItem.sbg,
[data-bs-theme="light"] .dj-xiu .songItem.dbg {
    background: #f3f4f6 !important;
}
[data-theme="light"] .dj-xiu .playlist-card,
[data-bs-theme="light"] .dj-xiu .playlist-card {
    background: #ffffff;
    border-color: #e5e7eb;
}
[data-theme="light"] .dj-xiu .playlist-card:hover,
[data-bs-theme="light"] .dj-xiu .playlist-card:hover {
    background: #f9fafb;
    border-color: rgba(29, 185, 84, 0.35);
}
[data-theme="light"] .dj-xiu .text-gray-400,
[data-bs-theme="light"] .dj-xiu .text-gray-400 {
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu .text-gray-300,
[data-bs-theme="light"] .dj-xiu .text-gray-300 {
    color: #9ca3af !important;
}

/* 浅色 — 分页 */
[data-theme="light"] .dj-xiu .dj-pager,
[data-theme="light"] .dj-xiu .list_split_page,
[data-theme="light"] .dj-xiu #f2 nav.dj-pager,
[data-bs-theme="light"] .dj-xiu .dj-pager,
[data-bs-theme="light"] .dj-xiu .list_split_page,
[data-bs-theme="light"] .dj-xiu #f2 nav.dj-pager {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .dj-xiu .dj-pager__list li a,
[data-theme="light"] .dj-xiu .list_split_page li a,
[data-theme="light"] .dj-xiu .list_split_page .g a,
[data-bs-theme="light"] .dj-xiu .dj-pager__list li a,
[data-bs-theme="light"] .dj-xiu .list_split_page li a,
[data-bs-theme="light"] .dj-xiu .list_split_page .g a {
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
    color: #374151 !important;
}
[data-theme="light"] .dj-xiu .dj-pager__input,
[data-theme="light"] .dj-xiu .list_split_page input[name="p"],
[data-bs-theme="light"] .dj-xiu .dj-pager__input,
[data-bs-theme="light"] .dj-xiu .list_split_page input[name="p"] {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    color: #111827 !important;
}

/* 浅色 — 筛选 / 排序 Tab */
[data-theme="light"] .dj-xiu #f2 > .dj-breadcrumb,
[data-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb,
[data-bs-theme="light"] .dj-xiu #f2 > .dj-breadcrumb,
[data-bs-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.06) 0%, #ffffff 45%);
    border-color: #e5e7eb;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__label,
[data-bs-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__label {
    color: #169c46;
    background: rgba(29, 185, 84, 0.1);
    border-color: rgba(29, 185, 84, 0.2);
}
[data-theme="light"] .dj-xiu #f2 > .dj-breadcrumb a,
[data-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb a,
[data-bs-theme="light"] .dj-xiu #f2 > .dj-breadcrumb a,
[data-bs-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb a {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu #f2 > .dj-breadcrumb span,
[data-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span,
[data-bs-theme="light"] .dj-xiu #f2 > .dj-breadcrumb span,
[data-bs-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span {
    color: #111827;
}
[data-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span,
[data-bs-theme="light"] .dj-xiu #f2 > .xiu-breadcrumb .xiu-breadcrumb__item.is-current span {
    background: rgba(29, 185, 84, 0.1);
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-filter-card,
[data-theme="light"] .dj-xiu #f2 .dj-genre-sort,
[data-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-filter-card,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-sort,
[data-bs-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-filter-row,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-filter-row {
    border-bottom-color: #eef0f3;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-filter-label,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-filter-label {
    color: #169c46;
}
[data-theme="light"] .dj-xiu #f2 .genre-chip,
[data-theme="light"] .dj-xiu #f2 .dj-genre-chip,
[data-bs-theme="light"] .dj-xiu #f2 .genre-chip,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-chip {
    color: #6b7280 !important;
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu #f2 .genre-chip.is-active,
[data-theme="light"] .dj-xiu #f2 .dj-genre-chip.is-active,
[data-bs-theme="light"] .dj-xiu #f2 .genre-chip.is-active,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-chip.is-active {
    color: #ffffff !important;
    background: #1db954 !important;
    border-color: #1db954 !important;
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.22);
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-sort a,
[data-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort a,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-sort a,
[data-bs-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort a {
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu #f2 .dj-genre-sort a.is-active,
[data-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort a.is-active,
[data-bs-theme="light"] .dj-xiu #f2 .dj-genre-sort a.is-active,
[data-bs-theme="light"] .dj-xiu #f2 #hothaomenu.dj-genre-sort a.is-active {
    color: #169c46 !important;
    border-bottom-color: #1db954 !important;
}
[data-theme="light"] .dj-xiu .dj-breadcrumb,
[data-theme="light"] .dj-xiu .dj-breadcrumb a,
[data-bs-theme="light"] .dj-xiu .dj-breadcrumb,
[data-bs-theme="light"] .dj-xiu .dj-breadcrumb a {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .dj-breadcrumb a:hover,
[data-bs-theme="light"] .dj-xiu .dj-breadcrumb a:hover {
    color: #169c46;
}

/* 浅色 — 首页侧栏专辑推荐 */
[data-theme="light"] .dj-xiu .xiu-album-list,
[data-bs-theme="light"] .dj-xiu .xiu-album-list {
    --xiu-album-accent: #1db954;
    --xiu-album-accent-bar: rgba(29, 185, 84, 0.5);
    --xiu-album-accent-bar-hover: rgba(29, 185, 84, 0.85);
    --xiu-album-accent-border: rgba(29, 185, 84, 0.32);
    --xiu-album-accent-soft: rgba(29, 185, 84, 0.12);
    --xiu-album-row-bg: rgba(255, 255, 255, 0.96);
    --xiu-album-row-bg-hover: #f0fdf4;
    --xiu-album-row-border: #e5e7eb;
    --xiu-album-cover-bg: #f3f4f6;
    --xiu-album-cover-border: #e5e7eb;
    --xiu-album-play-bg: #f3f4f6;
    --xiu-album-play-color: #9ca3af;
}
[data-theme="light"] .dj-xiu .xiu-album-row__name,
[data-bs-theme="light"] .dj-xiu .xiu-album-row__name {
    color: #111827;
}
[data-theme="light"] .dj-xiu .xiu-album-row__meta,
[data-bs-theme="light"] .dj-xiu .xiu-album-row__meta {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .xiu-album-row:hover,
[data-bs-theme="light"] .dj-xiu .xiu-album-row:hover {
    box-shadow: inset 3px 0 0 var(--xiu-album-accent-bar-hover), 0 6px 16px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .dj-xiu .xiu-album-row__badge,
[data-bs-theme="light"] .dj-xiu .xiu-album-row__badge {
    color: #fff;
}

/* 浅色 — 首页侧栏推荐舞曲 */
[data-theme="light"] .dj-xiu .hover\:bg-\[\#272727\]:hover,
[data-bs-theme="light"] .dj-xiu .hover\:bg-\[\#272727\]:hover {
    background-color: #f3f4f6 !important;
}
[data-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .section-title,
[data-bs-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .section-title {
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-tab-btn:not(.active),
[data-bs-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-tab-btn:not(.active) {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-tab-btn.active,
[data-bs-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-tab-btn.active {
    background: #1db954 !important;
    color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta,
[data-bs-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta__item i,
[data-bs-theme="light"] .dj-xiu .page-wrapper > .sidebar-right .xiu-sidebar-hot-meta__item i {
    color: #169c46;
}

/* 浅色 — 歌单 / 专辑 / 制作人列表页 */
[data-theme="light"] .dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb),
[data-bs-theme="light"] .dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.06) 0%, #ffffff 45%);
    border-color: #e5e7eb;
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) a,
[data-bs-theme="light"] .dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) a {
    color: #6b7280;
}
[data-theme="light"] .dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) span,
[data-bs-theme="light"] .dj-xiu #f2 > .dj-breadcrumb:not(.xiu-breadcrumb) span {
    color: #111827;
}
[data-theme="light"] .dj-xiu .dj-page-head,
[data-bs-theme="light"] .dj-xiu .dj-page-head {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu .dj-page-tabs,
[data-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs,
[data-bs-theme="light"] .dj-xiu .dj-page-tabs,
[data-bs-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu .dj-page-tabs a,
[data-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs a,
[data-bs-theme="light"] .dj-xiu .dj-page-tabs a,
[data-bs-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs a {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu .dj-page-tabs a:hover,
[data-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs a:hover,
[data-bs-theme="light"] .dj-xiu .dj-page-tabs a:hover,
[data-bs-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs a:hover {
    background: rgba(29, 185, 84, 0.1) !important;
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .dj-page-tabs a.is-active,
[data-theme="light"] .dj-xiu .dj-page-tabs a.pxon,
[data-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs a.is-active,
[data-bs-theme="light"] .dj-xiu .dj-page-tabs a.is-active,
[data-bs-theme="light"] .dj-xiu .dj-page-tabs a.pxon,
[data-bs-theme="light"] .dj-xiu #hothaomenu.dj-page-tabs a.is-active {
    background: rgba(29, 185, 84, 0.14) !important;
    color: #169c46 !important;
}
[data-theme="light"] .dj-xiu .dj-shop-toolbar__flow,
[data-bs-theme="light"] .dj-xiu .dj-shop-toolbar__flow {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
[data-theme="light"] .dj-xiu a.xiu-shop-tab,
[data-bs-theme="light"] .dj-xiu a.xiu-shop-tab {
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu .dj-shop-toolbar,
[data-bs-theme="light"] .dj-xiu .dj-shop-toolbar {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06) !important;
}
[data-theme="light"] .dj-xiu .dj-shop-tabs,
[data-bs-theme="light"] .dj-xiu .dj-shop-tabs {
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu a.xiu-shop-tab:hover,
[data-bs-theme="light"] .dj-xiu a.xiu-shop-tab:hover,
[data-theme="light"] .dj-xiu .dj-shop-tabs > a.xiu-shop-tab:hover,
[data-bs-theme="light"] .dj-xiu .dj-shop-tabs > a.xiu-shop-tab:hover {
    color: #111827 !important;
    background: rgba(0, 0, 0, 0.05) !important;
}
[data-theme="light"] .dj-xiu .xiu-shop-tab--current,
[data-bs-theme="light"] .dj-xiu .xiu-shop-tab--current {
    background: #1db954 !important;
    background-color: #1db954 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(29, 185, 84, 0.28);
}
[data-theme="light"] .dj-xiu .dj-card-grid,
[data-bs-theme="light"] .dj-xiu .dj-card-grid {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu .dj-media-card__title,
[data-bs-theme="light"] .dj-xiu .dj-media-card__title {
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .dj-media-card__meta,
[data-bs-theme="light"] .dj-xiu .dj-media-card__meta {
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu .dj-artist-cards,
[data-bs-theme="light"] .dj-xiu .dj-artist-cards {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05);
}
[data-theme="light"] .dj-xiu .dj-artist-card,
[data-bs-theme="light"] .dj-xiu .dj-artist-card {
    background: #f9fafb !important;
    border-color: #eef0f3 !important;
}
[data-theme="light"] .dj-xiu .dj-artist-card__name,
[data-bs-theme="light"] .dj-xiu .dj-artist-card__name {
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .dj-artist-card__meta,
[data-theme="light"] .dj-xiu .dj-artist-card__song,
[data-theme="light"] .dj-xiu .dj-artist-card__acts a,
[data-bs-theme="light"] .dj-xiu .dj-artist-card__meta,
[data-bs-theme="light"] .dj-xiu .dj-artist-card__song,
[data-bs-theme="light"] .dj-xiu .dj-artist-card__acts a {
    color: #6b7280 !important;
}
[data-theme="light"] .dj-xiu .dj-artist-card__song:hover,
[data-theme="light"] .dj-xiu .dj-artist-card__acts a:hover,
[data-bs-theme="light"] .dj-xiu .dj-artist-card__song:hover,
[data-bs-theme="light"] .dj-xiu .dj-artist-card__acts a:hover {
    color: #169c46 !important;
}
[data-theme="light"] .dj-xiu .dj-sidebar-songs li a,
[data-theme="light"] .dj-xiu .dj-sidebar-songs li a span,
[data-bs-theme="light"] .dj-xiu .dj-sidebar-songs li a,
[data-bs-theme="light"] .dj-xiu .dj-sidebar-songs li a span {
    color: #374151 !important;
}
[data-theme="light"] .dj-xiu .dj-sidebar-songs li a:hover,
[data-bs-theme="light"] .dj-xiu .dj-sidebar-songs li a:hover {
    color: #169c46 !important;
}
[data-theme="light"] .dj-xiu .form-control,
[data-theme="light"] .dj-xiu .form-select,
[data-bs-theme="light"] .dj-xiu .form-control,
[data-bs-theme="light"] .dj-xiu .form-select {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
    color: #111827 !important;
}
[data-theme="light"] .dj-xiu .form-control:focus,
[data-theme="light"] .dj-xiu .form-select:focus,
[data-bs-theme="light"] .dj-xiu .form-control:focus,
[data-bs-theme="light"] .dj-xiu .form-select:focus {
    background: #ffffff !important;
    border-color: #1db954 !important;
    box-shadow: 0 0 0 0.15rem rgba(29, 185, 84, 0.18) !important;
}
[data-theme="light"] .dj-xiu .btn-primary,
[data-bs-theme="light"] .dj-xiu .btn-primary {
    background: #1db954 !important;
    border-color: #1db954 !important;
    color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .list_split_page .btn-outline-primary,
[data-bs-theme="light"] .dj-xiu .list_split_page .btn-outline-primary {
    border-color: #1db954 !important;
    color: #169c46 !important;
    background: transparent !important;
}
[data-theme="light"] .dj-xiu .list_split_page .btn-outline-primary:hover,
[data-bs-theme="light"] .dj-xiu .list_split_page .btn-outline-primary:hover {
    background: #1db954 !important;
    border-color: #1db954 !important;
    color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .list_split_page li.active span,
[data-theme="light"] .dj-xiu .list_split_page #page_active span,
[data-bs-theme="light"] .dj-xiu .list_split_page li.active span,
[data-bs-theme="light"] .dj-xiu .list_split_page #page_active span {
    background: #1db954 !important;
    border-color: #1db954 !important;
    color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .dj-genre-toolbar,
[data-theme="light"] .dj-xiu .list_controllbox.dj-genre-toolbar,
[data-bs-theme="light"] .dj-xiu .dj-genre-toolbar,
[data-bs-theme="light"] .dj-xiu .list_controllbox.dj-genre-toolbar {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
}
[data-theme="light"] .dj-xiu .dj-genre-toolbar .playall,
[data-theme="light"] .dj-xiu .dj-genre-toolbar .addall,
[data-theme="light"] .dj-xiu .list_controllbox .playall,
[data-theme="light"] .dj-xiu .list_controllbox .addall,
[data-bs-theme="light"] .dj-xiu .dj-genre-toolbar .playall,
[data-bs-theme="light"] .dj-xiu .dj-genre-toolbar .addall,
[data-bs-theme="light"] .dj-xiu .list_controllbox .playall,
[data-bs-theme="light"] .dj-xiu .list_controllbox .addall {
    background: #f3f4f6 !important;
    color: #374151 !important;
}
[data-theme="light"] .dj-xiu .dj-genre-toolbar .playall:hover,
[data-theme="light"] .dj-xiu .list_controllbox .playall:hover,
[data-bs-theme="light"] .dj-xiu .dj-genre-toolbar .playall:hover,
[data-bs-theme="light"] .dj-xiu .list_controllbox .playall:hover {
    background: #1db954 !important;
    color: #ffffff !important;
}
[data-theme="light"] .dj-xiu .dj-page,
[data-theme="light"] .dj-xiu #f2.dj-page,
[data-bs-theme="light"] .dj-xiu .dj-page,
[data-bs-theme="light"] .dj-xiu #f2.dj-page {
    color: #111827;
}

/* ===== 手机 / 平板：内页隐藏右侧栏，仅主内容 ===== */
@media (max-width: 991.98px) {
    .dj-xiu #f2 > .row,
    .dj-xiu #f2 > .row.g-3 {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 0.65rem !important;
    }
    .dj-xiu #f2 > .row > aside.col-lg-3,
    .dj-xiu #f2 > .row > .col-lg-3.dj-page-sidebar,
    .dj-xiu #f2 > .row > .col-lg-3.dj-list-sidebar,
    .dj-xiu #f2 > .row > .col-lg-3.xiu-page-sidebar,
    .dj-xiu #f2 > .row > .col-lg-3.dj-ranks-nav,
    .dj-xiu #f2.dj-page--search > .row > aside,
    .dj-xiu #f2 .xiu-page-sidebar,
    .dj-xiu #f2 .dj-page-sidebar,
    .dj-xiu #f2 .dj-list-sidebar,
    .dj-xiu #f2 .xiu-page-sidebar.dj-list-sidebar {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        border: none !important;
        pointer-events: none !important;
    }
    .dj-xiu #f2 > .row > .col-lg-9,
    .dj-xiu #f2 > .row > .dj-page-main,
    .dj-xiu #f2.dj-page--ranks > .dj-ranks-layout > .dj-page-main,
    .dj-xiu #f2.dj-page--ranks-sole > .row > .col-lg-9,
    .dj-xiu #f2.dj-page--album > .row > .col-lg-9,
    .dj-xiu #f2.dj-page--radio > .row > .col-lg-9,
    .dj-xiu #f2.dj-artist-list > .row > .col-lg-9,
    .dj-xiu #f2.dj-songs-page > .row > .col-lg-9,
    .dj-xiu #f2.dj-genre-page > .row > .col-lg-9,
    .dj-xiu #f2.dj-page--search > .row > .dj-page-main,
    .dj-xiu #f2.dj-page--search > .row > .search_list_right {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 0 0 100% !important;
    }
    .dj-xiu #f2 .dj-page-main .dj-genre-table-wrap.dj-song-list-desktop,
    .dj-xiu #f2 .search_list_ct > .dj-genre-table-wrap.dj-song-list-desktop,
    .dj-xiu #f2 .dj-genre-table-wrap.dj-song-list-desktop {
        display: none !important;
    }
    .dj-xiu #f2 .dj-page-main .dj-song-list-wrap.dj-song-list-mobile,
    .dj-xiu #f2 .search_list_ct > .dj-song-list-wrap.dj-song-list-mobile,
    .dj-xiu #f2 .dj-song-list-wrap.dj-song-list-mobile {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .dj-xiu #f2 .dj-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        padding: 0.75rem !important;
    }
}


/* ===== demo pages (merged from xiu-demo-pages.css) ===== */
/* demo 对齐页 — 排行榜 / 专辑 / 分类列表 / 播放页，作用域 .dj-xiu .xiu-demo-page */

.dj-xiu .xiu-demo-page .xiu-demo-panel {
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 1rem 1.25rem 1.25rem;
}

.dj-xiu .xiu-demo-page .xiu-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dj-xiu .xiu-demo-page .xiu-demo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.dj-xiu .xiu-demo-page .xiu-demo-title i {
    color: #39d353;
}

/* ===== 筛选栏 ===== */
.dj-xiu .xiu-demo-page .filter-wrap {
    width: 100%;
    padding: 0.5rem 0 0.75rem;
}

.dj-xiu .xiu-demo-page .filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.5rem;
    padding: 0.2rem 0;
    width: 100%;
}

.dj-xiu .xiu-demo-page .filter-group:not(:last-child) {
    padding-bottom: 0.4rem;
    margin-bottom: 0.3rem;
}

.dj-xiu .xiu-demo-page .filter-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 2.6rem;
}

.dj-xiu .xiu-demo-page a.filter-btn {
    text-decoration: none;
}

.dj-xiu .xiu-demo-page .filter-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: #9ca3af;
    background: rgba(39, 39, 39, 0.3);
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.dj-xiu .xiu-demo-page .filter-btn:hover {
    color: #e0e0e0;
    background: rgba(39, 39, 39, 0.5);
}

.dj-xiu .xiu-demo-page .filter-btn.active {
    color: #39d353 !important;
    background: rgba(57, 211, 83, 0.15) !important;
    background-color: rgba(57, 211, 83, 0.15) !important;
    border-bottom: none !important;
}

.dj-xiu .xiu-demo-page .filter-rank {
    display: grid;
    gap: 0.3rem;
    padding: 0.2rem 0;
    width: 100%;
    align-items: center;
}

.dj-xiu .xiu-demo-page .filter-rank--3 {
    grid-template-columns: repeat(3, 1fr);
}

.dj-xiu .xiu-demo-page .filter-rank--4 {
    grid-template-columns: repeat(4, 1fr);
}

.dj-xiu .xiu-demo-page .filter-rank--5 {
    grid-template-columns: repeat(5, 1fr);
}

.dj-xiu .xiu-demo-page .filter-rank--8 {
    grid-template-columns: repeat(8, 1fr);
}

.dj-xiu .xiu-demo-page .filter-rank .filter-btn {
    font-size: 0.73rem;
    padding: 0.5rem 0.2rem;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== 底部栏 ===== */
.dj-xiu .xiu-demo-page .bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 0 0.25rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dj-xiu .xiu-demo-page .bottom-bar .left-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.dj-xiu .xiu-demo-page .bottom-bar .select-all {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #9ca3af;
    cursor: pointer;
    margin: 0;
}

.dj-xiu .xiu-demo-page .bottom-bar .select-all input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1.5px solid #4a4a4a;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.dj-xiu .xiu-demo-page .bottom-bar .select-all input[type="checkbox"]:checked {
    background: #39d353;
    border-color: #39d353;
}

.dj-xiu .xiu-demo-page .bottom-bar .select-all input[type="checkbox"]:checked::after {
    content: "\eb7b";
    font-family: remixicon !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #121212;
    font-size: 10px;
    font-weight: 700;
}

.dj-xiu .xiu-demo-page .bottom-bar .btn-action {
    padding: 0.25rem 0.9rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    border: 1px solid rgba(57, 211, 83, 0.15);
    cursor: pointer;
    background: rgba(57, 211, 83, 0.12);
    color: #39d353;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.dj-xiu .xiu-demo-page .bottom-bar .btn-action:hover {
    background: rgba(57, 211, 83, 0.25);
    border-color: rgba(57, 211, 83, 0.3);
}

.dj-xiu .xiu-demo-page .bottom-bar .btn-action.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dj-xiu .xiu-demo-page .bottom-bar .btn-action.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
}

.dj-xiu .xiu-demo-page .bottom-bar .selected-count {
    font-size: 0.75rem;
    color: #9ca3af;
}

.dj-xiu .xiu-demo-page .bottom-bar .selected-count b {
    color: #e5e7eb;
    font-weight: 600;
}

.dj-xiu .xiu-demo-page .pagination-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dj-xiu .xiu-demo-page .pagination-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(39, 39, 39, 0.6);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.dj-xiu .xiu-demo-page .pagination-btn:hover {
    border-color: rgba(57, 211, 83, 0.35);
    color: #39d353;
}

.dj-xiu .xiu-demo-page .pagination-btn.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.dj-xiu .xiu-demo-page .pagination-bar .page-info {
    font-size: 0.75rem;
    color: #9ca3af;
    min-width: 3rem;
    text-align: center;
}

.dj-xiu .xiu-demo-page .xiu-demo-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.dj-xiu .xiu-demo-page .xiu-demo-empty i {
    font-size: 2.5rem;
    color: #39d353;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.75rem;
}

.dj-xiu .xiu-demo-page .xiu-demo-pager {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
}

/* ===== 侧栏（热榜 / 下载 — 统一 demo 风格） ===== */
.dj-xiu .xiu-page-sidebar .side-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 1rem;
    padding: 1rem 1rem 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.dj-xiu .xiu-page-sidebar .side-card:last-child {
    margin-bottom: 0;
}

.dj-xiu .xiu-page-sidebar .side-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0;
    background: transparent;
    border-bottom: none;
}

.dj-xiu .xiu-page-sidebar .side-card .card-header h3 {
    font-weight: 600;
    font-size: 0.9rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
}

.dj-xiu .xiu-page-sidebar .xiu-radio-hot-list,
.dj-xiu .xiu-page-sidebar .xiu-radio-dl-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dj-xiu .xiu-page-sidebar a.hot-rank-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.4rem 0.3rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    line-height: normal !important;
    min-height: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
}

.dj-xiu .xiu-page-sidebar a.hot-rank-item:hover {
    background: rgba(39, 39, 39, 0.4);
    color: inherit;
}

.dj-xiu .xiu-page-sidebar .hot-rank-num {
    flex: 0 0 1.4rem !important;
    width: 1.4rem !important;
    min-width: 1.4rem !important;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    color: #6b7280;
    line-height: 1.2 !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.dj-xiu .xiu-page-sidebar .hot-rank-num.top1 { color: #facc15; }
.dj-xiu .xiu-page-sidebar .hot-rank-num.top2 { color: #d1d5db; }
.dj-xiu .xiu-page-sidebar .hot-rank-num.top3 { color: #b45309; }

.dj-xiu .xiu-page-sidebar .hot-rank-cover {
    flex: 0 0 2.2rem !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    min-width: 2.2rem !important;
    max-width: 2.2rem !important;
    border-radius: 0.4rem;
    object-fit: cover;
    display: block !important;
}

.dj-xiu .xiu-page-sidebar .hot-rank-info {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    overflow: hidden;
}

.dj-xiu .xiu-page-sidebar .hot-rank-title {
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #e0e0e0;
    line-height: 1.3;
}

.dj-xiu .xiu-page-sidebar .hot-rank-meta {
    font-size: 0.6rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.05rem;
    line-height: 1.2;
}

.dj-xiu .xiu-page-sidebar .hot-rank-meta .play-count {
    color: #9ca3af;
}

.dj-xiu .xiu-page-sidebar .hot-rank-meta .hot-icon {
    color: #f97316;
}

.dj-xiu .xiu-page-sidebar .dl-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.4rem 0.3rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.dj-xiu .xiu-page-sidebar .dl-item:hover {
    background: rgba(39, 39, 39, 0.3);
}

.dj-xiu .xiu-page-sidebar .dl-cover {
    flex: 0 0 2.2rem !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    min-width: 2.2rem !important;
    max-width: 2.2rem !important;
    border-radius: 0.4rem;
    object-fit: cover;
    display: block !important;
}

.dj-xiu .xiu-page-sidebar .dl-info {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    overflow: hidden;
}

.dj-xiu .xiu-page-sidebar .dl-info .dl-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.3;
}

.dj-xiu .xiu-page-sidebar .dl-info .dl-title:hover {
    color: #39d353;
}

.dj-xiu .xiu-page-sidebar .dl-info .dl-sub {
    font-size: 0.6rem;
    color: #6b7280;
    display: flex;
    gap: 0.4rem;
    margin-top: 0.05rem;
    line-height: 1.2;
}

.dj-xiu .xiu-page-sidebar .dl-badge {
    flex-shrink: 0;
    font-size: 0.6rem;
    padding: 0.2rem 0.45rem;
    border-radius: 9999px;
    background: rgba(57, 211, 83, 0.12);
    color: #39d353;
    border: 1px solid rgba(57, 211, 83, 0.12);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.dj-xiu .xiu-page-sidebar .dl-badge:hover {
    background: rgba(57, 211, 83, 0.25);
}

[data-theme="light"] .dj-xiu .xiu-page-sidebar .side-card,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .side-card {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-page-sidebar .hot-rank-title,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .hot-rank-title,
[data-theme="light"] .dj-xiu .xiu-page-sidebar .dl-info .dl-title,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .dl-info .dl-title,
[data-theme="light"] .dj-xiu .xiu-page-sidebar .side-card .card-header h3,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .side-card .card-header h3 {
    color: #111827;
}

/* ===== cover-box ===== */
.dj-xiu .xiu-demo-page .cover-box {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.dj-xiu .xiu-demo-page .cover-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s;
}

.dj-xiu .xiu-demo-page .cover-box:hover .cover-play-icon,
.dj-xiu .xiu-demo-page .song-row.playing .cover-play-icon,
.dj-xiu .xiu-demo-page .top-rank-item.playing .cover-play-icon {
    opacity: 1;
}

.dj-xiu .xiu-demo-page .cover-play-icon a {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

/* ===== 排行榜行 ===== */
.dj-xiu .xiu-rank-page .top-rank-item {
    padding: 0.6rem 0.5rem;
    margin-bottom: 0.15rem;
    border-radius: 0.5rem;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dj-xiu .xiu-rank-page .top-rank-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0.5rem;
    pointer-events: none;
}

.dj-xiu .xiu-rank-page .top-rank-item:hover {
    background: rgba(39, 39, 39, 0.3);
    border-color: rgba(57, 211, 83, 0.15);
    transform: translateX(2px);
}

.dj-xiu .xiu-rank-page .top-rank-item:hover::before {
    opacity: 1;
}

.dj-xiu .xiu-rank-page .top-rank-item .rank-number {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #6b7280;
    flex-shrink: 0;
    width: 2.2rem;
}

.dj-xiu .xiu-rank-page .top-rank-item .rank-number.top1 { color: #facc15; }
.dj-xiu .xiu-rank-page .top-rank-item .rank-number.top2 { color: #d1d5db; }
.dj-xiu .xiu-rank-page .top-rank-item .rank-number.top3 { color: #b45309; }

.dj-xiu .xiu-rank-page .top-rank-item .cover-box {
    width: 2.8rem;
    height: 2.8rem;
}

.dj-xiu .xiu-rank-page .top-rank-item .cover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-info {
    flex: 1;
    min-width: 0;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-title {
    font-weight: 500;
    font-size: 0.92rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-title .title-text {
    min-width: 0;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: none;
    color: inherit;
    text-decoration: none;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-title .hot-badge {
    margin-left: 0;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-title .title-text:hover {
    color: #39d353;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-meta .artist {
    color: #ef4444;
}

.dj-xiu .xiu-rank-page .top-rank-item .song-meta .duration,
.dj-xiu .xiu-rank-page .top-rank-item .song-meta .hits {
    color: #39d353;
}

.dj-xiu .xiu-rank-page .top-rank-item .rank-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    color: #6b7280;
}

.dj-xiu .xiu-rank-page .top-rank-item .rank-actions a,
.dj-xiu .xiu-rank-page .top-rank-item .rank-actions span {
    cursor: pointer;
    transition: color 0.2s;
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
}

.dj-xiu .xiu-rank-page .top-rank-item .rank-actions a:hover,
.dj-xiu .xiu-rank-page .top-rank-item .rank-actions span:hover {
    color: #39d353;
}

/* ===== 专辑 Tab / 网格 ===== */
.dj-xiu .xiu-album-page .alb-tab-bar {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    flex-shrink: 0;
}

.dj-xiu .xiu-album-page .alb-tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    color: #9ca3af;
    background: transparent;
    white-space: nowrap;
    text-decoration: none;
}

.dj-xiu .xiu-album-page .alb-tab-btn:hover {
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
}

.dj-xiu .xiu-album-page .alb-tab-btn.active {
    color: #39d353;
    background: rgba(57, 211, 83, 0.15);
}

.dj-xiu .xiu-album-page .alb-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.dj-xiu .xiu-album-page .alb-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dj-xiu .xiu-album-page .alb-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.dj-xiu .xiu-album-page .alb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--alb-accent, #39d353);
}

.dj-xiu .xiu-album-page .alb-card:nth-child(8n+1) { --alb-accent: #39d353; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+2) { --alb-accent: #facc15; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+3) { --alb-accent: #f97316; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+4) { --alb-accent: #ef4444; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+5) { --alb-accent: #8b5cf6; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+6) { --alb-accent: #06b6d4; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+7) { --alb-accent: #ec4899; }
.dj-xiu .xiu-album-page .alb-card:nth-child(8n+8) { --alb-accent: #14b8a6; }

.dj-xiu .xiu-album-page .alb-cover {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.dj-xiu .xiu-album-page .alb-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dj-xiu .xiu-album-page .alb-card:hover .alb-cover img {
    transform: scale(1.05);
}

.dj-xiu .xiu-album-page .alb-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.dj-xiu .xiu-album-page .alb-stats span {
    font-size: 11px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dj-xiu .xiu-album-page .alb-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    color: #fff;
    font-size: 3rem;
}

.dj-xiu .xiu-album-page .alb-card:hover .alb-play-overlay {
    opacity: 1;
}

.dj-xiu .xiu-album-page .alb-info {
    padding: 0.6rem 0.75rem 0.75rem;
}

.dj-xiu .xiu-album-page .alb-info .name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .xiu-album-page .alb-info .meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
    font-size: 0.65rem;
    color: #6b7280;
}

.dj-xiu .xiu-album-page .alb-info .meta .count {
    color: var(--alb-accent, #39d353);
}

/* ===== 分类列表 song-row ===== */
.dj-xiu .xiu-list-page .song-check {
    width: 15px;
    height: 15px;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #4a4a4a;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.dj-xiu .xiu-list-page .song-check:checked {
    background: #39d353;
    border-color: #39d353;
}

.dj-xiu .xiu-list-page .song-check:checked::after {
    content: "\eb7b";
    font-family: remixicon !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #121212;
    font-size: 10px;
    font-weight: 700;
}

.dj-xiu .xiu-list-page .song-check:hover {
    border-color: #39d353;
}

.dj-xiu .xiu-list-page .truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .xiu-list-page .song-row {
    padding: 0.5rem 0;
    margin-bottom: 0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.dj-xiu .xiu-list-page .song-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 211, 83, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0.5rem;
    pointer-events: none;
}

.dj-xiu .xiu-list-page .song-row:hover {
    background: rgba(39, 39, 39, 0.3);
    border-color: rgba(57, 211, 83, 0.15);
    transform: translateX(2px);
    padding-inline: 0.5rem;
}

.dj-xiu .xiu-list-page .song-row.playing {
    background: rgba(57, 211, 83, 0.06);
    border-color: rgba(57, 211, 83, 0.18);
}

.dj-xiu .xiu-list-page .song-row:hover::before {
    opacity: 1;
}

.dj-xiu .xiu-list-page .xiu-song-row__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.dj-xiu .xiu-list-page .xiu-song-row__inner .cover-box {
    width: 2.5rem;
    height: 2.5rem;
}

.dj-xiu .xiu-list-page .xiu-song-row__inner .cover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dj-xiu .xiu-list-page .xiu-song-row__body {
    flex: 1;
    min-width: 0;
}

/* ===== 热歌徽章（全站列表统一） ===== */
.dj-xiu .hot-badge {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.6rem;
    line-height: 1.2;
    color: #39d353;
    background: rgba(57, 211, 83, 0.1);
    padding: 0.05rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(57, 211, 83, 0.1);
    margin-left: 0.3rem;
    white-space: nowrap;
    vertical-align: middle;
}

.dj-xiu .xiu-song-title-line {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    max-width: 100%;
}

.dj-xiu .xiu-song-title-line .song-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
}

.dj-xiu .dj-genre-song-meta .t1 {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    margin: 0;
}

.dj-xiu .dj-genre-song-meta .t1 .song-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
}

.dj-xiu .xiu-list-page .xiu-song-row__title {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    margin: 0;
}

.dj-xiu .xiu-list-page .xiu-song-row__title-link {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
}

.dj-xiu .xiu-list-page .xiu-song-row__title-link:hover {
    color: #39d353;
}

.dj-xiu .xiu-list-page .xiu-song-row__title .hot-badge {
    margin-left: 0;
}

.dj-xiu .xiu-list-page .xiu-song-row__meta {
    font-size: 0.72rem;
    color: #9ca3af;
    margin: 0.15rem 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .xiu-list-page .xiu-song-row__meta .artist {
    color: #ef4444;
}

.dj-xiu .xiu-list-page .xiu-song-row__meta .meta-time {
    color: #39d353;
    margin-left: 0.35rem;
}

.dj-xiu .xiu-list-page .xiu-song-row__meta .meta-size {
    color: #6b7280;
    margin-left: 0.5rem;
}

.dj-xiu .xiu-list-page .xiu-song-row__meta .duration {
    color: #39d353;
    margin-left: 0.35rem;
}

.dj-xiu .xiu-list-page .xiu-song-row__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    color: #6b7280;
}

.dj-xiu .xiu-list-page .xiu-song-row__actions a {
    color: inherit;
    font-size: 1rem;
    transition: color 0.2s;
    text-decoration: none;
}

.dj-xiu .xiu-list-page .xiu-song-row__actions a:hover {
    color: #39d353;
}

.dj-xiu .xiu-list-page .dj-genre-table-wrap,
.dj-xiu .xiu-list-page .dj-song-list-wrap {
    display: none !important;
}

/* ===== 单曲 / 串烧分类列表（截图样式，不含套曲/打包） ===== */
.dj-xiu .xiu-genre-song-list {
    --xiu-genre-grid: 28px 48px minmax(0, 1fr) 68px 88px 96px;
    margin: 0;
    padding: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head,
.dj-xiu .xiu-genre-song-list .xiu-genre-song-row__inner {
    display: grid;
    grid-template-columns: var(--xiu-genre-grid);
    column-gap: 0.65rem;
    align-items: center;
    min-width: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head {
    padding: 0.55rem 0 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--xiu-muted);
    line-height: 1.2;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-check {
    grid-column: 1;
    text-align: center;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-head-name {
    grid-column: 2 / 4;
    min-width: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-hot {
    grid-column: 4;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-date {
    grid-column: 5;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-actions {
    grid-column: 6;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-hot,
.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-date,
.dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-actions {
    text-align: center;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-row:last-child {
    border-bottom: none;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-row:hover {
    background: rgba(57, 211, 83, 0.04);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-row.playing {
    background: rgba(57, 211, 83, 0.08);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-check {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-check .song-check {
    width: 16px;
    height: 16px;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 50%;
    border: 1.5px solid #6b7280;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-check .song-check:hover {
    border-color: var(--dj-primary, #39d353);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-check .song-check:checked {
    background: var(--dj-primary, #39d353);
    border-color: var(--dj-primary, #39d353);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-check .song-check:checked::after {
    content: "\eb7b";
    font-family: remixicon !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #121212;
    font-size: 10px;
    font-weight: 700;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-cover {
    width: 48px;
    height: 48px;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-cover-link {
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-cover-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-cover-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-cover-link:hover .xiu-genre-cover-play,
.dj-xiu .xiu-genre-song-list .xiu-genre-song-row.playing .xiu-genre-cover-play {
    opacity: 1;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-cover-play i {
    font-size: 1.15rem;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-info {
    min-width: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-title {
    margin: 0;
    min-width: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-title-link {
    display: block;
    color: var(--xiu-text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-title-link:hover {
    color: var(--xiu-green);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-song-meta {
    margin: 0.2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: var(--xiu-muted);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.05rem 0.45rem;
    border-radius: 9999px;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    font-size: 0.625rem;
    line-height: 1.2;
    white-space: nowrap;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-hot-badge i {
    font-size: 0.7rem;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-hot {
    text-align: center;
    font-size: 0.75rem;
    color: var(--xiu-muted);
    white-space: nowrap;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-date {
    text-align: center;
    font-size: 0.75rem;
    color: var(--xiu-muted);
    white-space: nowrap;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-date .dj-song-update-today {
    color: var(--xiu-green) !important;
    font-weight: 600;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-col-actions {
    min-width: 0;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-action-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: transparent;
    color: var(--xiu-muted);
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-action-btn i {
    font-size: 0.95rem;
    line-height: 1;
}

.dj-xiu .xiu-genre-song-list .xiu-genre-action-btn:hover {
    color: var(--xiu-green);
    border-color: rgba(57, 211, 83, 0.45);
    background: rgba(57, 211, 83, 0.08);
}

.dj-xiu .xiu-genre-song-list .xiu-genre-more-btn {
    display: none;
}

.dj-xiu .xiu-genre-song-list .song-more-bar {
    display: none !important;
}

@media (max-width: 991px) {
    .dj-xiu .xiu-genre-song-list {
        --xiu-genre-grid: 28px 40px minmax(0, 1fr) 96px;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-hot,
    .dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-date,
    .dj-xiu .xiu-genre-song-list .xiu-genre-col-hot,
    .dj-xiu .xiu-genre-song-list .xiu-genre-col-date {
        display: none;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-song-head .xiu-genre-col-actions {
        grid-column: 4;
    }
}

@media (max-width: 767px) {
    .dj-xiu .xiu-genre-song-list {
        --xiu-genre-grid: 24px 40px minmax(0, 1fr) 28px;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-song-head {
        display: none;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-song-row {
        padding: 0.65rem 0;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-song-row__inner {
        column-gap: 0.5rem;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-col-cover,
    .dj-xiu .xiu-genre-song-list .xiu-genre-cover-link {
        width: 40px;
        height: 40px;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-col-actions {
        display: none;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 4;
        width: 28px;
        height: 40px;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--xiu-muted);
        cursor: pointer;
        flex-shrink: 0;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-more-btn i {
        font-size: 1.125rem;
        line-height: 1;
    }

    .dj-xiu .xiu-genre-song-list .xiu-genre-more-btn:hover {
        color: var(--xiu-green);
    }

    .dj-xiu .xiu-genre-song-list .song-more-bar {
        display: flex !important;
        width: 100%;
        height: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 0.65rem;
        background: rgba(39, 39, 39, 0.55);
        border-radius: 0.5rem;
        margin-top: 0;
        transition: height 0.25s ease, margin-top 0.25s ease, padding 0.25s ease;
    }

    .dj-xiu .xiu-genre-song-list .song-more-bar.show {
        height: 44px;
        margin-top: 0.5rem;
        padding: 0 0.65rem;
    }

    .dj-xiu .xiu-genre-song-list .song-more-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        flex: 1;
        min-width: 0;
        font-size: 0.8125rem;
        color: var(--xiu-muted);
        text-decoration: none;
        white-space: nowrap;
    }

    .dj-xiu .xiu-genre-song-list .song-more-action i {
        font-size: 0.95rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .dj-xiu .xiu-genre-song-list .song-more-action:hover {
        color: var(--xiu-green);
    }
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-head,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-head {
    border-bottom-color: #eef0f3;
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-row,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-row {
    border-bottom-color: #eef0f3;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-row:hover,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-row:hover {
    background: rgba(22, 156, 70, 0.04);
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-title-link,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-title-link {
    color: #374151;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-meta,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-song-meta {
    color: #9ca3af;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-col-date,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-col-date {
    color: #9ca3af;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-col-date .dj-song-update-today,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-col-date .dj-song-update-today {
    color: #22c55e !important;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-action-btn,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-action-btn {
    border-color: #e5e7eb;
    color: #6b7280;
    background: #fff;
}

[data-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-action-btn:hover,
[data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .xiu-genre-action-btn:hover {
    color: #169c46;
    border-color: rgba(22, 156, 70, 0.35);
    background: rgba(22, 156, 70, 0.06);
}

@media (max-width: 767px) {
    [data-theme="light"] .dj-xiu .xiu-genre-song-list .song-more-bar,
    [data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .song-more-bar {
        background: #f3f4f6;
    }

    [data-theme="light"] .dj-xiu .xiu-genre-song-list .song-more-action,
    [data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .song-more-action {
        color: #6b7280;
    }

    [data-theme="light"] .dj-xiu .xiu-genre-song-list .song-more-action:hover,
    [data-bs-theme="light"] .dj-xiu .xiu-genre-song-list .song-more-action:hover {
        color: #169c46;
    }
}

/* ===== 首页独家歌曲 ===== */
.dj-xiu .xiu-home-sole-section {
    margin: 0;
}

.dj-xiu .xiu-home-sole-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.dj-xiu .xiu-home-sole-head .section-title i {
    color: var(--xiu-green);
    font-size: 1.05rem;
}

.dj-xiu .xiu-home-sole-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.28rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: var(--xiu-muted);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dj-xiu .xiu-home-sole-more-link:hover {
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.08);
    border-color: rgba(57, 211, 83, 0.22);
}

.dj-xiu .xiu-home-sole-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dj-xiu .xiu-home-sole-list .xiu-home-sole-row {
    margin: 0;
    padding: 0;
    cursor: default;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dj-xiu .xiu-home-sole-list .xiu-home-sole-row:hover {
    padding: 0;
    transform: none;
    background: rgba(57, 211, 83, 0.05);
    border-color: rgba(57, 211, 83, 0.16);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.dj-xiu .xiu-home-sole-list .xiu-home-sole-row.playing {
    background: rgba(57, 211, 83, 0.09);
    border-color: rgba(57, 211, 83, 0.32);
    box-shadow: inset 0 0 0 1px rgba(57, 211, 83, 0.12);
}

.dj-xiu .xiu-home-sole-list .xiu-home-sole-row__inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    min-width: 0;
}

.dj-xiu .xiu-home-sole-rank {
    flex-shrink: 0;
    width: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.dj-xiu .xiu-home-sole-rank--top {
    color: var(--xiu-green);
}

.dj-xiu .xiu-home-sole-cover {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.dj-xiu .xiu-home-sole-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-xiu .xiu-home-sole-body {
    min-width: 0;
    flex: 1;
}

.dj-xiu .xiu-home-sole-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--xiu-text);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.dj-xiu .xiu-home-sole-row:hover .xiu-home-sole-title,
.dj-xiu .xiu-home-sole-title:hover {
    color: var(--xiu-green);
}

.dj-xiu .xiu-home-sole-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.18rem 0 0;
    min-width: 0;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: var(--xiu-muted);
}

.dj-xiu .xiu-home-sole-meta time {
    flex-shrink: 0;
}

.dj-xiu .xiu-home-sole-artist {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(57, 211, 83, 0.82);
}

.dj-xiu .xiu-home-sole-artist::before {
    content: '·';
    margin-right: 0.35rem;
    color: rgba(255, 255, 255, 0.22);
}

.dj-xiu .xiu-home-sole-actions {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}

.dj-xiu .xiu-home-sole-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.45rem;
    color: var(--xiu-muted);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.dj-xiu .xiu-home-sole-action i {
    font-size: 0.95rem;
    line-height: 1;
}

.dj-xiu .xiu-home-sole-action:hover {
    color: var(--xiu-green);
    background: rgba(57, 211, 83, 0.12);
}

.dj-xiu .xiu-home-sole-empty {
    margin: 0;
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--xiu-muted);
}

.dj-xiu .xiu-home-sole-list .xiu-home-sole-more-btn,
.dj-xiu .xiu-home-sole-list .song-more-bar {
    display: none;
}

@media (min-width: 992px) {
    .dj-xiu .xiu-home-sole-list:not(.xiu-home-genre-list) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem 0.75rem;
    }

    .dj-xiu .xiu-home-sole-list:not(.xiu-home-genre-list) .xiu-home-sole-title {
        font-size: 0.84375rem;
    }
}

@media (max-width: 767px) {
    .dj-xiu .xiu-home-sole-list .xiu-home-sole-row {
        padding: 0;
    }

    .dj-xiu .xiu-home-sole-list .xiu-home-sole-row__inner {
        min-width: 0;
        padding: 0.6rem 0.65rem;
    }

    .dj-xiu .xiu-home-sole-list .xiu-home-sole-actions,
    .dj-xiu .xiu-home-sole-list .xiu-list-actions {
        display: none !important;
    }

    .dj-xiu .xiu-home-sole-list .xiu-home-sole-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 40px;
        padding: 0;
        margin: 0;
        border: none;
        background: transparent;
        color: var(--xiu-muted);
        cursor: pointer;
        flex-shrink: 0;
    }

    .dj-xiu .xiu-home-sole-list .xiu-home-sole-more-btn i {
        font-size: 1.125rem;
        line-height: 1;
    }

    .dj-xiu .xiu-home-sole-list .xiu-home-sole-more-btn:hover {
        color: var(--xiu-green);
    }

    .dj-xiu .xiu-home-sole-list .song-more-bar {
        display: flex !important;
        width: 100%;
        height: 0;
        overflow: hidden;
        align-items: center;
        justify-content: space-around;
        padding: 0 0.65rem;
        background: rgba(39, 39, 39, 0.55);
        border-radius: 0.5rem;
        margin-top: 0;
        transition: height 0.25s ease, margin-top 0.25s ease, padding 0.25s ease;
    }

    .dj-xiu .xiu-home-sole-list .song-more-bar.show {
        height: 44px;
        margin-top: 0.5rem;
        padding: 0 0.65rem;
    }

    .dj-xiu .xiu-home-sole-list .song-more-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        flex: 1;
        min-width: 0;
        font-size: 0.8125rem;
        color: var(--xiu-muted);
        text-decoration: none;
        white-space: nowrap;
    }

    .dj-xiu .xiu-home-sole-list .song-more-action i {
        font-size: 0.95rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .dj-xiu .xiu-home-sole-list .song-more-action:hover {
        color: var(--xiu-green);
    }

    [data-theme="light"] .dj-xiu .xiu-home-sole-list .song-more-bar,
    [data-bs-theme="light"] .dj-xiu .xiu-home-sole-list .song-more-bar {
        background: #f3f4f6;
    }

    [data-theme="light"] .dj-xiu .xiu-home-sole-list .song-more-action,
    [data-bs-theme="light"] .dj-xiu .xiu-home-sole-list .song-more-action {
        color: #6b7280;
    }

    [data-theme="light"] .dj-xiu .xiu-home-sole-list .song-more-action:hover,
    [data-bs-theme="light"] .dj-xiu .xiu-home-sole-list .song-more-action:hover {
        color: #169c46;
    }
}

[data-theme="light"] .dj-xiu .xiu-home-sole-list .xiu-home-sole-row,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-list .xiu-home-sole-row {
    background: #fff;
    border-color: #eef0f3;
}

[data-theme="light"] .dj-xiu .xiu-home-sole-list .xiu-home-sole-row:hover,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-list .xiu-home-sole-row:hover {
    background: rgba(22, 156, 70, 0.04);
    border-color: rgba(22, 156, 70, 0.18);
}

[data-theme="light"] .dj-xiu .xiu-home-sole-list .xiu-home-sole-row.playing,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-list .xiu-home-sole-row.playing {
    background: rgba(22, 156, 70, 0.07);
    border-color: rgba(22, 156, 70, 0.28);
}

[data-theme="light"] .dj-xiu .xiu-home-sole-more-link,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-more-link {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-home-sole-more-link:hover,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-more-link:hover {
    color: #169c46;
    background: rgba(22, 156, 70, 0.08);
    border-color: rgba(22, 156, 70, 0.2);
}

[data-theme="light"] .dj-xiu .xiu-home-sole-rank,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-rank {
    color: #d1d5db;
}

[data-theme="light"] .dj-xiu .xiu-home-sole-artist::before,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-artist::before {
    color: #d1d5db;
}

[data-theme="light"] .dj-xiu .xiu-home-sole-action,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-action {
    background: #f3f4f6;
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-home-sole-action:hover,
[data-bs-theme="light"] .dj-xiu .xiu-home-sole-action:hover {
    color: #169c46;
    background: rgba(22, 156, 70, 0.1);
}

/* ===== 首页分类区块（现场串烧等） ===== */
.dj-xiu .xiu-home-genre-grid {
    display: grid;
    gap: 1rem;
}

.dj-xiu .xiu-home-genre-section {
    margin: 0;
    min-width: 0;
}

.dj-xiu .xiu-home-genre-section .section-title .bi {
    color: var(--xiu-green);
    font-size: 1.05rem;
}

.dj-xiu .xiu-home-genre-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.dj-xiu .xiu-home-genre-section .xiu-home-sole-row__inner {
    padding: 0.5rem 0.65rem;
}

.dj-xiu .xiu-home-genre-section .xiu-home-sole-cover {
    width: 2.5rem;
    height: 2.5rem;
}

.dj-xiu .xiu-home-genre-section .xiu-home-sole-title {
    font-size: 0.8125rem;
}

.dj-xiu .xiu-home-genre-grid-empty {
    grid-column: 1 / -1;
}

@media (min-width: 992px) {
    .dj-xiu .xiu-home-genre-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

/* ===== 播放页 demo 布局 ===== */
.dj-xiu .xiu-play-page .dj-mix-box--hero {
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 1.5rem;
}

.dj-xiu .xiu-play-page .xiu-play-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .dj-xiu .xiu-play-page .xiu-play-hero-grid {
        grid-template-columns: minmax(220px, 320px) 1fr;
        gap: 2rem;
        align-items: center;
    }
}

.dj-xiu .xiu-play-page .player-detail-cover {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    aspect-ratio: 1;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.dj-xiu .xiu-play-page .player-detail-cover img#mcover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem !important;
    animation: none !important;
}

.dj-xiu .xiu-play-page #albumCoverWrap {
    width: 100% !important;
    height: auto !important;
    border-radius: 1.5rem !important;
    aspect-ratio: 1;
    max-width: 320px;
}

.dj-xiu .xiu-play-page #albumCoverWrap.is-playing img#mcover {
    animation: xiu-vinyl-spin 20s linear infinite !important;
    animation-play-state: running !important;
    border-radius: 50% !important;
}

.dj-xiu .xiu-play-page .player-detail-cover .vinyl-ring {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    animation: xiu-vinyl-spin 20s linear infinite;
    pointer-events: none;
}

.dj-xiu .xiu-play-page .player-detail-cover .vinyl-ring:nth-child(2) {
    inset: 20%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.dj-xiu .xiu-play-page #albumCoverWrap.is-playing .vinyl-ring {
    display: block;
}

.dj-xiu .xiu-play-page .player-detail-cover .vinyl-ring {
    display: none;
}

@keyframes xiu-vinyl-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dj-xiu .xiu-play-page .xiu-play-status {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.dj-xiu .xiu-play-page .xiu-play-status__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #9ca3af;
}

.dj-xiu .xiu-play-page .xiu-play-status.is-playing .xiu-play-status__dot {
    background: #39d353;
    animation: xiu-pulse 1.5s ease infinite;
}

.dj-xiu .xiu-play-page .xiu-play-status.is-paused .xiu-play-status__dot {
    background: #9ca3af;
    animation: none;
}

@keyframes xiu-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.dj-xiu .xiu-play-page .dj-mix-play-wrap__blur {
    display: none !important;
}

.dj-xiu .xiu-play-page .dj-mix-play-wrap {
    display: block !important;
    position: static !important;
    overflow: visible !important;
}

.dj-xiu .xiu-play-page .player-detail-info .dj-mix-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 0.35rem;
}

.dj-xiu .xiu-play-page .xiu-play-artist {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.dj-xiu .xiu-play-page .xiu-play-artist .name {
    color: #39d353;
}

.dj-xiu .xiu-play-page .xiu-play-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dj-xiu .xiu-play-page .xiu-play-tags .tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.7rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.dj-xiu .xiu-play-page .xiu-play-tags .tag.active {
    color: #39d353;
    background: rgba(57, 211, 83, 0.12);
    border-color: rgba(57, 211, 83, 0.15);
}

.dj-xiu .xiu-play-page .dj-mix-params {
    display: none;
}

.dj-xiu .xiu-play-page .dj-mix-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.dj-xiu .xiu-play-page .dj-mix-btn {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    color: #9ca3af;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s;
}

.dj-xiu .xiu-play-page .dj-mix-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
}

.dj-xiu .xiu-play-page .dj-mix-btn--primary {
    background: rgba(57, 211, 83, 0.15);
    color: #39d353;
    border-color: rgba(57, 211, 83, 0.15);
}

.dj-xiu .xiu-play-page .dj-mix-btn--warn {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.15);
}

.dj-xiu .xiu-play-page .dj-mix-player-slot {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dj-xiu .xiu-play-page .dj-mix-playlist {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
    .dj-xiu .xiu-album-page .alb-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .dj-xiu .xiu-album-page .alb-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .dj-xiu .xiu-demo-page .filter-rank--8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .dj-xiu .xiu-album-page .alb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
    .dj-xiu .xiu-demo-page .filter-rank,
    .dj-xiu .xiu-demo-page .filter-group {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .dj-xiu .xiu-demo-page .filter-rank::-webkit-scrollbar,
    .dj-xiu .xiu-demo-page .filter-group::-webkit-scrollbar {
        display: none;
    }
    .dj-xiu .xiu-demo-page .filter-rank--3,
    .dj-xiu .xiu-demo-page .filter-rank--4,
    .dj-xiu .xiu-demo-page .filter-rank--5,
    .dj-xiu .xiu-demo-page .filter-rank--8 {
        display: flex;
    }
    .dj-xiu .xiu-rank-page .top-rank-item .song-title .title-text {
        max-width: 160px;
    }
    .dj-xiu .xiu-rank-page .top-rank-item .rank-actions {
        gap: 0.35rem;
    }
    .dj-xiu .xiu-list-page .xiu-song-row__actions {
        gap: 0.35rem;
    }
    .dj-xiu .xiu-demo-page .bottom-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .dj-xiu .xiu-demo-page .pagination-bar {
        justify-content: center;
    }
}


/* ===== radio page (merged from radio-page.css) ===== */
/* 歌单列表页 — 对齐 demo/radio.html，作用域 .dj-xiu .xiu-radio-page */

.dj-xiu .xiu-radio-page .xiu-radio-panel {
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 1rem 1.25rem 1.25rem;
}

.dj-xiu .xiu-radio-page .xiu-radio-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dj-xiu .xiu-radio-page .xiu-radio-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.dj-xiu .xiu-radio-page .xiu-radio-title i {
    color: #39d353;
}

.dj-xiu .xiu-radio-page .pl-tab-bar {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    flex-shrink: 0;
}

.dj-xiu .xiu-radio-page .pl-tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    color: #9ca3af;
    background: transparent;
    white-space: nowrap;
    text-decoration: none;
}

.dj-xiu .xiu-radio-page .pl-tab-btn:hover {
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
}

.dj-xiu .xiu-radio-page .pl-tab-btn.active {
    color: #39d353;
    background: rgba(57, 211, 83, 0.15);
}

.dj-xiu .xiu-radio-page .pl-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
}

.dj-xiu .xiu-radio-page .pl-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    isolation: isolate;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid var(--pl-border-color, rgba(26, 26, 26, 0.4));
}

.dj-xiu .xiu-radio-page .pl-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.dj-xiu .xiu-radio-page .pl-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--pl-glow-color, rgba(57, 211, 83, 0.25));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.dj-xiu .xiu-radio-page .pl-card .pl-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, var(--pl-glow-color, rgba(57, 211, 83, 0.15)), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.dj-xiu .xiu-radio-page .pl-card:hover .pl-glow {
    opacity: 1;
}

.dj-xiu .xiu-radio-page .pl-card .pl-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    z-index: 1;
}

.dj-xiu .xiu-radio-page .pl-card .pl-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dj-xiu .xiu-radio-page .pl-card:hover .pl-cover img {
    transform: scale(1.08);
}

.dj-xiu .xiu-radio-page .pl-card .pl-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

.dj-xiu .xiu-radio-page .pl-card .pl-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    background: rgba(57, 211, 83, 0.8);
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dj-xiu .xiu-radio-page .pl-card .pl-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
}

.dj-xiu .xiu-radio-page .pl-card:hover .pl-play-overlay {
    opacity: 1;
}

.dj-xiu .xiu-radio-page .pl-card .pl-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(57, 211, 83, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(57, 211, 83, 0.35);
}

.dj-xiu .xiu-radio-page .pl-card:hover .pl-play-btn {
    transform: scale(1);
}

.dj-xiu .xiu-radio-page .pl-card .pl-play-btn i {
    color: #121212;
    font-size: 1.35rem;
    margin-left: 2px;
}

.dj-xiu .xiu-radio-page .pl-card .pl-cover-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0.65rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.92);
}

.dj-xiu .xiu-radio-page .pl-card .pl-cover-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info {
    position: relative;
    z-index: 1;
    padding: 0.75rem 0.8rem 0.85rem;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f3f4f6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.35rem;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info .creator {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info .creator .avatar {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(57, 211, 83, 0.2);
    color: #39d353;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    flex-shrink: 0;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info .meta-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    color: #6b7280;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info .meta-row .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #4b5563;
}

.dj-xiu .xiu-radio-page .pl-card .pl-info .meta-row .highlight {
    color: #39d353;
}

.dj-xiu .xiu-radio-page .pl-card .pl-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.04);
    z-index: 2;
    overflow: hidden;
}

.dj-xiu .xiu-radio-page .pl-card .pl-progress .bar {
    height: 100%;
    width: 0;
    background: var(--pl-glow-color, #39d353);
    transition: width 0.6s ease;
}

.dj-xiu .xiu-radio-page .pl-card:hover .pl-progress .bar {
    width: 100%;
}

.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+1) { --pl-glow-color: rgba(57, 211, 83, 0.35); --pl-border-color: rgba(57, 211, 83, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+2) { --pl-glow-color: rgba(250, 204, 21, 0.35); --pl-border-color: rgba(250, 204, 21, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+3) { --pl-glow-color: rgba(249, 115, 22, 0.35); --pl-border-color: rgba(249, 115, 22, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+4) { --pl-glow-color: rgba(239, 68, 68, 0.35); --pl-border-color: rgba(239, 68, 68, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+5) { --pl-glow-color: rgba(139, 92, 246, 0.35); --pl-border-color: rgba(139, 92, 246, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+6) { --pl-glow-color: rgba(6, 182, 212, 0.35); --pl-border-color: rgba(6, 182, 212, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+7) { --pl-glow-color: rgba(236, 72, 153, 0.35); --pl-border-color: rgba(236, 72, 153, 0.15); }
.dj-xiu .xiu-radio-page .pl-card:nth-child(8n+8) { --pl-glow-color: rgba(20, 184, 166, 0.35); --pl-border-color: rgba(20, 184, 166, 0.15); }

.dj-xiu .xiu-radio-page .bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 0 0.25rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dj-xiu .xiu-radio-page .bottom-bar .selected-count {
    font-size: 0.75rem;
    color: #9ca3af;
}

.dj-xiu .xiu-radio-page .bottom-bar .selected-count b {
    color: #e5e7eb;
    font-weight: 600;
}

.dj-xiu .xiu-radio-page .pagination-bar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.dj-xiu .xiu-radio-page .pagination-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(39, 39, 39, 0.6);
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.dj-xiu .xiu-radio-page .pagination-btn:hover {
    border-color: rgba(57, 211, 83, 0.35);
    color: #39d353;
}

.dj-xiu .xiu-radio-page .pagination-btn.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.dj-xiu .xiu-radio-page .pagination-bar .page-info {
    font-size: 0.75rem;
    color: #9ca3af;
    min-width: 3rem;
    text-align: center;
}

.dj-xiu .xiu-radio-page .xiu-radio-pager {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
}

.dj-xiu .xiu-radio-page .xiu-radio-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.dj-xiu .xiu-radio-page .xiu-radio-empty i {
    font-size: 2.5rem;
    color: #39d353;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
    .dj-xiu .xiu-radio-page .pl-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .dj-xiu .xiu-radio-page .pl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .dj-xiu .xiu-radio-page .pl-tab-bar {
        gap: 0.15rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        max-width: 100%;
        scrollbar-width: none;
    }

    .dj-xiu .xiu-radio-page .pl-tab-bar::-webkit-scrollbar {
        display: none;
    }

    .dj-xiu .xiu-radio-page .pl-tab-btn {
        padding: 0.25rem 0.6rem;
        font-size: 0.72rem;
        flex-shrink: 0;
    }

    .dj-xiu .xiu-radio-page .xiu-radio-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

[data-theme="light"] .dj-xiu .xiu-radio-page .xiu-radio-panel,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .xiu-radio-panel {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-radio-page .xiu-radio-title,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .xiu-radio-title {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-radio-page .pl-card,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pl-card {
    background: #f9fafb;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-radio-page .pl-card .pl-info .name,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pl-card .pl-info .name {
    color: #111827;
}

/* ===== demo 对齐页 — 浅色主题 ===== */
[data-theme="light"] .dj-xiu .xiu-demo-page .xiu-demo-panel,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .xiu-demo-panel,
[data-theme="light"] .dj-xiu .xiu-musician-page .xiu-demo-panel,
[data-bs-theme="light"] .dj-xiu .xiu-musician-page .xiu-demo-panel,
[data-theme="light"] .dj-xiu .xiu-list-page .xiu-demo-panel,
[data-bs-theme="light"] .dj-xiu .xiu-list-page .xiu-demo-panel,
[data-theme="light"] .dj-xiu .xiu-rank-page .xiu-demo-panel,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .xiu-demo-panel,
[data-theme="light"] .dj-xiu .xiu-album-page .xiu-demo-panel,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .xiu-demo-panel {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-demo-page .xiu-demo-title,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .xiu-demo-title,
[data-theme="light"] .dj-xiu .xiu-musician-page .xiu-demo-title,
[data-bs-theme="light"] .dj-xiu .xiu-musician-page .xiu-demo-title,
[data-theme="light"] .dj-xiu .xiu-list-page .xiu-demo-title,
[data-bs-theme="light"] .dj-xiu .xiu-list-page .xiu-demo-title,
[data-theme="light"] .dj-xiu .xiu-rank-page .xiu-demo-title,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .xiu-demo-title,
[data-theme="light"] .dj-xiu .xiu-album-page .xiu-demo-title,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .xiu-demo-title {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .filter-label,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .filter-label {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .filter-btn,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .filter-btn,
[data-theme="light"] .dj-xiu .xiu-album-page .alb-tab-btn,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .alb-tab-btn,
[data-theme="light"] .dj-xiu .xiu-radio-page .pl-tab-btn,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pl-tab-btn {
    color: #6b7280;
    background: #f3f4f6;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .filter-btn:hover,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .filter-btn:hover,
[data-theme="light"] .dj-xiu .xiu-album-page .alb-tab-btn:hover,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .alb-tab-btn:hover,
[data-theme="light"] .dj-xiu .xiu-radio-page .pl-tab-btn:hover,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pl-tab-btn:hover {
    color: #111827;
    background: #e5e7eb;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .filter-btn.active,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .filter-btn.active,
[data-theme="light"] .dj-xiu .xiu-album-page .alb-tab-btn.active,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .alb-tab-btn.active,
[data-theme="light"] .dj-xiu .xiu-radio-page .pl-tab-btn.active,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pl-tab-btn.active {
    color: #121212 !important;
    background: #39d353 !important;
    background-color: #39d353 !important;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar,
[data-theme="light"] .dj-xiu .xiu-radio-page .bottom-bar,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .bottom-bar {
    background: #f9fafb;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .select-all,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .select-all,
[data-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .selected-count,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .selected-count,
[data-theme="light"] .dj-xiu .xiu-radio-page .bottom-bar .selected-count,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .bottom-bar .selected-count {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .selected-count b,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .selected-count b,
[data-theme="light"] .dj-xiu .xiu-radio-page .bottom-bar .selected-count b,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .bottom-bar .selected-count b {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .btn-action.secondary,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .bottom-bar .btn-action.secondary {
    background: #e5e7eb;
    color: #374151;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .pagination-btn,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .pagination-btn,
[data-theme="light"] .dj-xiu .xiu-radio-page .pagination-btn,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pagination-btn {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.12);
    color: #374151;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .pagination-btn:hover,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .pagination-btn:hover,
[data-theme="light"] .dj-xiu .xiu-radio-page .pagination-btn:hover,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pagination-btn:hover {
    border-color: rgba(57, 211, 83, 0.45);
    color: #16a34a;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .pagination-bar .page-info,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .pagination-bar .page-info,
[data-theme="light"] .dj-xiu .xiu-radio-page .pagination-bar .page-info,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .pagination-bar .page-info {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-list-page .song-row:hover,
[data-bs-theme="light"] .dj-xiu .xiu-list-page .song-row:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(57, 211, 83, 0.2);
}

[data-theme="light"] .dj-xiu .xiu-list-page .xiu-song-row__title-link,
[data-bs-theme="light"] .dj-xiu .xiu-list-page .xiu-song-row__title-link {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-list-page .xiu-song-row__meta,
[data-bs-theme="light"] .dj-xiu .xiu-list-page .xiu-song-row__meta {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-list-page .xiu-song-row__actions a,
[data-bs-theme="light"] .dj-xiu .xiu-list-page .xiu-song-row__actions a {
    color: #9ca3af;
}

[data-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item {
    background: transparent;
}

[data-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item:hover,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item:hover {
    background: rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item .song-title .title-text,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item .song-title .title-text {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item .song-meta,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item .song-meta {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item .rank-actions a,
[data-bs-theme="light"] .dj-xiu .xiu-rank-page .top-rank-item .rank-actions a {
    color: #9ca3af;
}

[data-theme="light"] .dj-xiu .xiu-album-page .alb-card,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .alb-card {
    background: #f9fafb;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-album-page .alb-info .name,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .alb-info .name {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-album-page .alb-info .meta,
[data-bs-theme="light"] .dj-xiu .xiu-album-page .alb-info .meta {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-demo-page .xiu-demo-empty,
[data-bs-theme="light"] .dj-xiu .xiu-demo-page .xiu-demo-empty,
[data-theme="light"] .dj-xiu .xiu-radio-page .xiu-radio-empty,
[data-bs-theme="light"] .dj-xiu .xiu-radio-page .xiu-radio-empty {
    color: #9ca3af;
}

[data-theme="light"] .dj-xiu .xiu-page-sidebar .hot-rank-meta,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .hot-rank-meta,
[data-theme="light"] .dj-xiu .xiu-page-sidebar .dl-info .dl-sub,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .dl-info .dl-sub {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-page-sidebar a.hot-rank-item:hover,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar a.hot-rank-item:hover,
[data-theme="light"] .dj-xiu #f2 .xiu-page-sidebar .hot-rank-item:hover,
[data-bs-theme="light"] .dj-xiu #f2 .xiu-page-sidebar .hot-rank-item:hover {
    background: rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .dj-xiu .xiu-page-sidebar .dl-item:hover,
[data-bs-theme="light"] .dj-xiu .xiu-page-sidebar .dl-item:hover,
[data-theme="light"] .dj-xiu #f2 .xiu-page-sidebar .dl-item:hover,
[data-bs-theme="light"] .dj-xiu #f2 .xiu-page-sidebar .dl-item:hover {
    background: rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .dj-xiu .xiu-play-page .dj-mix-box--hero,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .dj-mix-box--hero,
[data-theme="light"] .dj-xiu .xiu-play-page .dj-mix-playlist,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .dj-mix-playlist {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-play-page .player-detail-info .dj-mix-title,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .player-detail-info .dj-mix-title {
    color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-play-page .xiu-play-artist,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .xiu-play-artist,
[data-theme="light"] .dj-xiu .xiu-play-page .dj-mix-params,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .dj-mix-params {
    color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-play-page .xiu-play-tags .tag,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .xiu-play-tags .tag {
    background: #f3f4f6;
    color: #374151;
}

[data-theme="light"] .dj-xiu .xiu-play-page .dj-mix-btn,
[data-bs-theme="light"] .dj-xiu .xiu-play-page .dj-mix-btn {
    background: #f3f4f6;
    color: #374151;
    border-color: rgba(15, 23, 42, 0.1);
}


/* ===== utilities ===== */
.dj-xiu .is-hidden { display: none; }
.dj-xiu #playhits { display: none; }
.dj-xiu #playhits img { display: none; }
.dj-xiu .xiu-play-page #djPlayBlurBg { display: none; }
.dj-xiu body.dj-play-hero-ready #djPlayBlurBg { display: block; }

/* 侧栏热榜/下载 — 强制横向行布局（覆盖 legacy list_hot_down 等冲突） */
.dj-xiu #f2 .xiu-page-sidebar.dj-list-sidebar .hot-rank-item,
.dj-xiu #f2 .xiu-page-sidebar .hot-rank-item,
.dj-xiu .xiu-page-sidebar .hot-rank-item {
    box-sizing: border-box;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100%;
    max-width: 100%;
    padding: 0.4rem 0.3rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    line-height: normal !important;
    min-height: 0 !important;
    white-space: normal !important;
    overflow: hidden;
}

.dj-xiu #f2 .xiu-page-sidebar .hot-rank-item:hover {
    background: rgba(39, 39, 39, 0.4);
    color: inherit;
}

.dj-xiu #f2 .xiu-page-sidebar .hot-rank-num {
    flex: 0 0 1.4rem !important;
    width: 1.4rem !important;
    min-width: 1.4rem !important;
    max-width: 1.4rem !important;
    height: auto !important;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    color: #6b7280;
    line-height: 1.2 !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    display: block !important;
}

.dj-xiu #f2 .xiu-page-sidebar .hot-rank-cover,
.dj-xiu #f2 .xiu-page-sidebar .dl-cover {
    flex: 0 0 2.2rem !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    min-width: 2.2rem !important;
    max-width: 2.2rem !important;
    border-radius: 0.4rem;
    object-fit: cover;
    display: block !important;
}

.dj-xiu #f2 .xiu-page-sidebar .hot-rank-info,
.dj-xiu #f2 .xiu-page-sidebar .dl-info {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 100%;
    overflow: hidden;
}

.dj-xiu #f2 .xiu-page-sidebar .dl-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100%;
    padding: 0.4rem 0.3rem;
    border-radius: 0.5rem;
}

.dj-xiu #f2 .xiu-page-sidebar .side-card .card-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin-bottom: 0.75rem !important;
    background: transparent !important;
    border-bottom: none !important;
}

.dj-xiu #f2 .xiu-page-sidebar .xiu-radio-hot-list,
.dj-xiu #f2 .xiu-page-sidebar .xiu-radio-dl-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
}

/* CD/U盘 Tab — 与 bundle 同步，硬编码色值避免变量被覆盖 */
body.dj-xiu a.xiu-shop-tab--current,
body.dj-xiu .dj-shop-tabs > a.xiu-shop-tab--current {
    background: #39d353 !important;
    background-color: #39d353 !important;
    color: #121212 !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    box-shadow: 0 2px 12px rgba(57, 211, 83, 0.35) !important;
}

/* 套曲网盘弹窗（外壳透明，间距与 .xiu-download-shell 共用） */
.dj-xiu .xiu-taoqu-layer.layui-layer {
  border-radius: 16px;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  max-width: calc(100vw - 32px);
}
.dj-xiu .xiu-taoqu-layer .layui-layer-content {
  padding: 0 !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
  height: auto !important;
  border-radius: 16px;
  background: transparent !important;
}
.dj-xiu .xiu-taoqu-disk-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--xiu-text, #f3f4f6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(57, 211, 83, 0.12) 0%, transparent 70%);
}
.dj-xiu .xiu-taoqu-disk-topbar__main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.dj-xiu .xiu-taoqu-disk-topbar i {
  font-size: 20px;
  color: #39d353;
}
.dj-xiu .xiu-taoqu-disk-close {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.dj-xiu .xiu-taoqu-disk-close i { font-size: 18px; line-height: 1; }
.dj-xiu .xiu-taoqu-disk-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}
[data-theme="light"] .dj-xiu .xiu-taoqu-disk-close,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-close {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .dj-xiu .xiu-taoqu-disk-close:hover,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-close:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
  color: rgba(0, 0, 0, 0.75);
}
.dj-xiu .xiu-download-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dj-xiu .xiu-download-id {
  font-size: 11px;
  color: var(--xiu-text-muted, #9ca3af);
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 45, 85, 0.12);
  border: 1px solid rgba(255, 45, 85, 0.22);
  white-space: nowrap;
  font-weight: 400;
}
.dj-xiu .xiu-download-id strong {
  color: #ff6b8a;
  font-weight: 700;
}
.dj-xiu .xiu-taoqu-disk-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dj-xiu .xiu-taoqu-disk-cover {
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dj-xiu .xiu-taoqu-disk-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dj-xiu .xiu-taoqu-disk-head-main { min-width: 0; flex: 1; }
.dj-xiu .xiu-taoqu-disk-title {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
  color: var(--xiu-text, #f3f4f6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dj-xiu .xiu-taoqu-disk-sub {
  margin: 0;
  color: var(--xiu-text-muted, #9ca3af);
}
.dj-xiu .xiu-taoqu-price {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.dj-xiu .xiu-taoqu-price.is-free { background: rgba(57, 211, 83, 0.18); color: #39d353; border: 1px solid rgba(57, 211, 83, 0.25); }
.dj-xiu .xiu-taoqu-price.is-paid { background: rgba(245, 188, 0, 0.15); color: #f5bc00; border: 1px solid rgba(245, 188, 0, 0.28); }
.dj-xiu .xiu-taoqu-meta-grid {
  display: grid;
}
.dj-xiu .xiu-taoqu-meta-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s, background 0.2s;
}
.dj-xiu .xiu-taoqu-meta-item:hover {
  border-color: rgba(57, 211, 83, 0.22);
  background: rgba(57, 211, 83, 0.04);
}
[data-theme="light"] .dj-xiu .xiu-taoqu-meta-item,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-meta-item {
  background: #fff;
  border-color: #e8ecf0;
}
.dj-xiu .xiu-taoqu-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 211, 83, 0.12);
  color: #39d353;
}
.dj-xiu .xiu-taoqu-meta-main { min-width: 0; flex: 1; }
.dj-xiu .xiu-taoqu-meta-label {
  display: block;
  color: var(--xiu-text-muted, #9ca3af);
}
.dj-xiu .xiu-taoqu-meta-value {
  display: block;
  font-weight: 700;
  color: var(--xiu-text, #e5e7eb);
  word-break: break-all;
  line-height: 1.3;
}
.dj-xiu .xiu-taoqu-disk-body { padding: 0; }
.dj-xiu .xiu-taoqu-pay-panel {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dj-xiu .xiu-taoqu-pay-panel.is-warn {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.22);
}
[data-theme="light"] .dj-xiu .xiu-taoqu-pay-panel,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-pay-panel {
  background: #fff;
  border-color: #e5e7eb;
}
.dj-xiu .xiu-taoqu-pay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}
.dj-xiu .xiu-taoqu-pay-label { font-size: 13px; color: var(--xiu-text-muted, #9ca3af); }
.dj-xiu .xiu-taoqu-pay-value { font-size: 16px; font-weight: 700; color: var(--xiu-text, #f3f4f6); }
.dj-xiu .xiu-taoqu-pay-value.is-cost { color: #f5bc00; }
.dj-xiu .xiu-taoqu-pay-tip {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--xiu-text, #e5e7eb);
  text-align: center;
}
.dj-xiu .xiu-taoqu-pay-tip.is-muted { margin-bottom: 16px; color: var(--xiu-text-muted, #9ca3af); font-size: 13px; }
.dj-xiu .xiu-taoqu-pay-tip i { margin-right: 4px; vertical-align: -2px; color: #39d353; }
.dj-xiu .xiu-taoqu-pay-panel.is-warn .xiu-taoqu-pay-tip i { color: #f59e0b; }
.dj-xiu .xiu-taoqu-btn-block {
  width: 100%;
  margin-top: 16px;
  min-height: 44px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(57, 211, 83, 0.25);
}
.dj-xiu .xiu-taoqu-btn-block:hover { box-shadow: 0 6px 20px rgba(57, 211, 83, 0.35); }
.dj-xiu .xiu-taoqu-disk-tip {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--xiu-text-muted, #9ca3af);
  background: rgba(57, 211, 83, 0.08);
  border: 1px solid rgba(57, 211, 83, 0.18);
}
.dj-xiu .xiu-taoqu-hours {
  margin: 0 0 12px;
  font-size: 12px;
  color: #39d353;
}
.dj-xiu .xiu-taoqu-field { margin-bottom: 12px; }
.dj-xiu .xiu-taoqu-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--xiu-text-muted, #9ca3af);
}
.dj-xiu .xiu-taoqu-field-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.dj-xiu .xiu-taoqu-field-input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  color: var(--xiu-text, #e5e7eb);
  font-size: 13px;
}
[data-theme="light"] .dj-xiu .xiu-taoqu-field-input,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-field-input {
  background: #fff;
  border-color: #d1d5db;
  color: #111;
}
.dj-xiu .xiu-taoqu-btn-copy,
.dj-xiu .xiu-taoqu-btn-primary,
.dj-xiu .xiu-taoqu-btn-open {
  flex: 0 0 auto;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  line-height: 1;
  min-height: 40px;
}
.dj-xiu .xiu-taoqu-btn-copy {
  background: transparent;
  border: 1px solid rgba(57, 211, 83, 0.45);
  color: #39d353;
}
.dj-xiu .xiu-taoqu-btn-primary,
.dj-xiu .xiu-taoqu-btn-open {
  background: linear-gradient(135deg, #45e06a 0%, #39d353 100%);
  color: #121212;
}
.dj-xiu .xiu-taoqu-btn-primary:hover,
.dj-xiu .xiu-taoqu-btn-open:hover { filter: brightness(1.05); color: #121212; }
.dj-xiu .xiu-taoqu-disk-actions { margin-top: 16px; text-align: center; }
.dj-xiu .xiu-taoqu-btn-open { width: 100%; }
.dj-xiu .xiu-taoqu-state {
  padding: 24px 12px;
  text-align: center;
  color: var(--xiu-text-muted, #9ca3af);
  font-size: 14px;
  line-height: 1.6;
}
.dj-xiu .xiu-taoqu-state .xiu-taoqu-btn-primary { margin-top: 14px; min-width: 180px; }
.dj-xiu .xiu-taoqu-spin { display: inline-block; animation: xiu-taoqu-spin 1s linear infinite; font-size: 22px; vertical-align: middle; margin-right: 6px; }
@keyframes xiu-taoqu-spin { to { transform: rotate(360deg); } }
.dj-xiu .xiu-taoqu-captcha {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.dj-xiu .xiu-taoqu-captcha img {
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
}
.dj-xiu .xiu-taoqu-captcha .xiu-taoqu-field-input { width: 90px; flex: 0 0 90px; text-align: center; }
.dj-xiu .dj-taoqu-page .xiu-taoqu-badge,
.dj-xiu .dj-pack-page .xiu-pack-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #121212;
    background: #39d353;
    box-shadow: 0 2px 10px rgba(57, 211, 83, 0.35);
}

.dj-xiu .dj-pack-page .xiu-pack-badge {
    background: #f59e0b;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}
.dj-xiu .xiu-taoqu-disk-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .dj-xiu .xiu-taoqu-disk-row,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-row {
  background: #f8fafc;
  border-color: #e5e7eb;
}
.dj-xiu .xiu-taoqu-disk-label { flex: 0 0 64px; font-size: 12px; color: var(--xiu-text-muted, #9ca3af); }
.dj-xiu .xiu-taoqu-disk-link,
.dj-xiu .xiu-taoqu-disk-code {
  flex: 1 1 180px;
  min-width: 0;
  word-break: break-all;
  font-size: 13px;
  color: var(--xiu-text, #e5e7eb);
}
.dj-xiu .xiu-taoqu-disk-copy {
  flex: 0 0 auto;
  padding: 4px 10px;
  border: 1px solid rgba(57, 211, 83, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #39d353;
  font-size: 12px;
  cursor: pointer;
}
@media (max-width: 520px) {
  .dj-xiu .xiu-taoqu-field-row { flex-direction: column; }
  .dj-xiu .xiu-taoqu-btn-copy { width: 100%; }
}

/* 下载 / 网盘弹窗共用壳层（上下间距、网格、封面尺寸） */
.dj-xiu .xiu-download-shell {
  --xiu-text: #f3f4f6;
  --xiu-text-muted: #9ca3af;
  --xiu-green: #39d353;
  color: var(--xiu-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
.dj-xiu .xiu-download-shell .xiu-download-modal {
  padding-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #222428 0%, #18191c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(57, 211, 83, 0.06);
}
[data-theme="light"] .dj-xiu .xiu-download-shell .xiu-download-modal,
[data-bs-theme="light"] .dj-xiu .xiu-download-shell .xiu-download-modal {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

[data-theme="light"] .dj-xiu .xiu-download-shell,
[data-bs-theme="light"] .dj-xiu .xiu-download-shell,
[data-theme="light"] .dj-xiu.xiu-download-shell,
[data-bs-theme="light"] .dj-xiu.xiu-download-shell {
  --xiu-text: #111827;
  --xiu-text-muted: #6b7280;
  --xiu-green: #169c46;
  color: var(--xiu-text);
}

[data-theme="light"] .dj-xiu .xiu-taoqu-disk-topbar,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-topbar {
  color: #111827;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: linear-gradient(90deg, rgba(22, 156, 70, 0.1) 0%, transparent 70%);
}

[data-theme="light"] .dj-xiu .xiu-taoqu-disk-topbar i,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-topbar i {
  color: #169c46;
}

[data-theme="light"] .dj-xiu .xiu-download-shell .xiu-taoqu-disk-head,
[data-bs-theme="light"] .dj-xiu .xiu-download-shell .xiu-taoqu-disk-head {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dj-xiu .xiu-taoqu-disk-title,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-title,
[data-theme="light"] .dj-xiu .xiu-taoqu-meta-value,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-meta-value,
[data-theme="light"] .dj-xiu .xiu-taoqu-pay-value,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-pay-value,
[data-theme="light"] .dj-xiu .xiu-taoqu-pay-tip,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-pay-tip {
  color: #111827;
}

[data-theme="light"] .dj-xiu .xiu-taoqu-disk-sub,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-sub,
[data-theme="light"] .dj-xiu .xiu-taoqu-meta-label,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-meta-label,
[data-theme="light"] .dj-xiu .xiu-taoqu-pay-label,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-pay-label,
[data-theme="light"] .dj-xiu .xiu-taoqu-pay-tip.is-muted,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-pay-tip.is-muted,
[data-theme="light"] .dj-xiu .xiu-taoqu-field-label,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-field-label,
[data-theme="light"] .dj-xiu .xiu-taoqu-disk-tip,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-tip,
[data-theme="light"] .dj-xiu .xiu-taoqu-state,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-state {
  color: #6b7280;
}

[data-theme="light"] .dj-xiu .xiu-taoqu-meta-item:hover,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-meta-item:hover {
  border-color: rgba(22, 156, 70, 0.28);
  background: rgba(22, 156, 70, 0.04);
}

[data-theme="light"] .dj-xiu .xiu-taoqu-meta-icon,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-meta-icon {
  background: rgba(22, 156, 70, 0.12);
  color: #169c46;
}

[data-theme="light"] .dj-xiu .xiu-taoqu-meta-value.is-coin,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-meta-value.is-coin,
[data-theme="light"] .dj-xiu .xiu-taoqu-pay-value.is-cost,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-pay-value.is-cost {
  color: #d97706;
}

[data-theme="light"] .dj-xiu .xiu-download-id,
[data-bs-theme="light"] .dj-xiu .xiu-download-id {
  color: #6b7280;
  background: rgba(255, 45, 85, 0.08);
  border-color: rgba(255, 45, 85, 0.18);
}

[data-theme="light"] .dj-xiu .xiu-download-id strong,
[data-bs-theme="light"] .dj-xiu .xiu-download-id strong {
  color: #e11d48;
}

[data-theme="light"] .dj-xiu .xiu-taoqu-disk-cover,
[data-bs-theme="light"] .dj-xiu .xiu-taoqu-disk-cover {
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.dj-xiu .xiu-download-shell .xiu-download-topbar,
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-topbar.xiu-download-topbar {
  padding: 12px 14px 12px 16px;
}
.dj-xiu .xiu-download-shell .xiu-download-close {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-head {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  margin: 10px 18px 10px;
  padding-bottom: 10px;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-head-main {
  width: auto;
  flex: 1;
  min-width: 0;
  padding-right: 0;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-cover {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-title {
  font-size: 14px;
  margin-bottom: 4px;
  -webkit-line-clamp: 2;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-sub {
  font-size: 11px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 18px 10px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-meta-item {
  padding: 8px 8px;
  gap: 6px;
  border-radius: 10px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-meta-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  font-size: 14px;
  border-radius: 8px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-meta-label {
  font-size: 10px;
  margin-bottom: 1px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-meta-value {
  font-size: 12px;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-meta-value.is-coin {
  color: #f5bc00;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-title a {
  color: inherit;
  text-decoration: none;
}
.dj-xiu .xiu-download-shell .xiu-taoqu-disk-title a:hover {
  color: var(--xiu-green);
}
.dj-xiu .xiu-download-shell .xiu-download-body {
  padding: 0 18px 12px;
}
@media (max-width: 480px) {
  .dj-xiu .xiu-download-shell .xiu-taoqu-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 14px 10px;
  }
  .dj-xiu .xiu-download-shell .xiu-download-body {
    padding: 0 14px 12px;
  }
  .dj-xiu .xiu-download-shell .xiu-taoqu-disk-head {
    margin: 8px 14px 10px;
  }
  .dj-xiu .xiu-download-shell .xiu-download-topbar,
  .dj-xiu .xiu-download-shell .xiu-taoqu-disk-topbar.xiu-download-topbar {
    padding: 10px 12px;
  }
  .dj-xiu .xiu-download-shell .xiu-download-topbar__actions {
    gap: 6px;
  }
  .dj-xiu .xiu-download-shell .xiu-download-close {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
}

/* 默认歌曲下载弹窗（layer + iframe 内页） */
body .xiu-download-layer.layui-layer {
  border-radius: 16px;
  overflow: hidden !important;
  background: #18191c !important;
  border: none !important;
  box-shadow: none !important;
  max-width: calc(100vw - 32px);
}
[data-theme="light"] body .xiu-download-layer.layui-layer,
[data-bs-theme="light"] body .xiu-download-layer.layui-layer {
  background: #f4f6f8 !important;
  border: none !important;
  box-shadow: none !important;
}
body .xiu-download-layer .layui-layer-title {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  border: none !important;
}
body .xiu-download-layer .layui-layer-content {
  padding: 0 !important;
  overflow: hidden !important;
  min-height: 0;
  border-radius: 16px;
  background: #18191c !important;
}
[data-theme="light"] body .xiu-download-layer .layui-layer-content,
[data-bs-theme="light"] body .xiu-download-layer .layui-layer-content {
  background: #f4f6f8 !important;
}
body .xiu-download-layer .layui-layer-content iframe {
  display: block;
  border: 0;
  background: #18191c;
}
[data-theme="light"] body .xiu-download-layer .layui-layer-content iframe,
[data-bs-theme="light"] body .xiu-download-layer .layui-layer-content iframe {
  background: #f4f6f8;
}
body .xiu-download-layer .layui-layer-setwin {
  display: none !important;
}

.dj-xiu.xiu-download-page {
  background: transparent;
}
html:has(body.dj-down-page .xiu-download-page),
body.dj-down-page:has(.xiu-download-page) {
  background: transparent !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body.dj-down-page {
  background: transparent !important;
  margin: 0;
  min-width: 0;
}
.dj-xiu.xiu-download-page .dl-wrapper,
.dj-xiu.xiu-download-page .xiu-download-shell {
  max-width: 100%;
  margin: 0;
  width: 100%;
}
.dj-xiu.xiu-download-page .xiu-download-action {
  padding: 0 0 8px;
}
.dj-xiu.xiu-download-page #dl-downstr:has(>:nth-child(3)),
.dj-xiu.xiu-download-page #dl-downstr:has(> span:first-child + a + span:last-child),
.dj-xiu.xiu-download-page #dl-downstr:has(> a:first-child + span:last-child),
.dj-xiu.xiu-download-page #dl-downstr:has(> span:first-child + a:last-child) {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100% !important;
}
.dj-xiu.xiu-download-page #dl-downstr:has(>:nth-child(3)) > :first-child,
.dj-xiu.xiu-download-page #dl-downstr:has(> span:first-child + a + span:last-child) > span:first-child {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}
.dj-xiu.xiu-download-page #dl-downstr:has(> .dl-code-group + .upanstyle) {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.dj-xiu.xiu-download-page .xiu-download-notice,
.dj-xiu.xiu-download-page .dl-notice.xiu-download-notice {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  color: var(--xiu-text-muted);
  font-size: 11px;
  line-height: 1.55;
  max-height: 108px;
  overflow-y: auto;
  scrollbar-width: thin;
}
[data-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice,
[data-bs-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #4b5563;
}

[data-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice a,
[data-bs-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice a {
  color: #169c46;
}

[data-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice font,
[data-bs-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice font {
  color: #d97706;
}

[data-theme="light"] .dj-xiu.xiu-download-page #dl-downstr > span:first-child,
[data-bs-theme="light"] .dj-xiu.xiu-download-page #dl-downstr > span:first-child,
[data-theme="light"] .dj-xiu.xiu-download-page #dl-downstr > div > span,
[data-bs-theme="light"] .dj-xiu.xiu-download-page #dl-downstr > div > span {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #374151;
}

[data-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice .dl-divider,
[data-bs-theme="light"] .dj-xiu.xiu-download-page .xiu-download-notice .dl-divider {
  border-top-color: #e5e7eb;
}
.dj-xiu.xiu-download-page .xiu-download-notice a {
  color: var(--xiu-green);
  text-decoration: none;
}
.dj-xiu.xiu-download-page .xiu-download-notice font {
  color: #f5bc00;
}
.dj-xiu.xiu-download-page #dl-downstr > span:first-child,
.dj-xiu.xiu-download-page #dl-downstr > div > span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--xiu-text-muted);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 12px;
}
.dj-xiu.xiu-download-page .xiu-download-notice .dl-divider {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dj-xiu.xiu-download-page #dl-downstr .dl-btn-ok,
.dj-xiu.xiu-download-page #dl-downstr .dl-btn-login,
.dj-xiu.xiu-download-page #dl-downstr .dl-btn-pay,
.dj-xiu.xiu-download-page #dl-downstr .dl-btn-disk {
  padding: 11px 14px;
  font-size: 13px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* 压缩包分类列表 — 对齐 fkdjs build.html vip-featured 布局，配色沿用站点绿色 */
.dj-xiu .dj-genre-disk-list-page .xiu-demo-panel {
  padding: 0.65rem 0.65rem 0.75rem;
  --pack-grid-gap: 10px;
}
.dj-xiu .dj-genre-disk-list-page .xiu-demo-head {
  margin-bottom: 0.6rem;
}
.dj-xiu .dj-genre-disk-list-page .filter-wrap {
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}
.dj-xiu .dj-genre-disk-list-page .filter-group:not(:last-child) {
  padding-bottom: 0.25rem;
  margin-bottom: 0.2rem;
}
.dj-xiu .dj-genre-disk-list-page .filter-rank {
  padding-top: 0;
  padding-bottom: 0;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-grid,
.dj-xiu .dj-genre-disk-list-page .dj-pack-grid.list_musiclist {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--pack-grid-gap);
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-grid__item {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-grid__item--empty {
  grid-column: 1 / -1;
}
@media (min-width: 992px) {
  .dj-xiu .dj-genre-disk-list-page .dj-pack-grid,
  .dj-xiu .dj-genre-disk-list-page .dj-pack-grid.list_musiclist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-grid > [class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  flex: none;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  width: 100%;
  min-height: 170px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(38, 38, 38, 0.95);
  border: 1px solid rgba(57, 211, 83, 0.38);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured::after {
  content: "";
  display: table;
  clear: both;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured:hover {
  border-color: rgba(57, 211, 83, 0.62);
  box-shadow: 0 6px 20px rgba(57, 211, 83, 0.12);
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__price.marker {
  position: absolute;
  top: 10px;
  left: 8px;
  z-index: 3;
  display: inline-block;
  box-sizing: border-box;
  max-width: calc(100% - 16px);
  height: 25px;
  padding: 2px 10px;
  border-radius: 6px 0 6px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #121212 !important;
  background: linear-gradient(90deg, rgba(198, 255, 210, 0.96), rgba(57, 211, 83, 0.88)) !important;
  pointer-events: none;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__thumb-link {
  float: none;
  flex: 0 0 170px;
  display: block;
  width: 170px;
  min-width: 170px;
  min-height: 170px;
  align-self: stretch;
  text-decoration: none;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__cover {
  display: block;
  float: none;
  width: 100%;
  height: 100%;
  min-height: 170px;
  border-radius: 0;
  object-fit: cover;
  background: url('/public/static/images/df_scover.png') center center / cover no-repeat;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__body.featured-detail {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  float: none;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 170px;
  height: auto;
  padding: 10px 11px 12px 15px;
  position: relative;
  line-height: 1.35;
  box-sizing: border-box;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-bottom: 4px;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__date {
  display: block;
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--xiu-text-muted, #9ca3af);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__genre-badge {
  flex-shrink: 0;
  max-width: 46%;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--xiu-green);
  background: rgba(57, 211, 83, 0.12);
  border: 1px solid rgba(57, 211, 83, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__date i {
  margin-right: 4px;
  color: rgba(57, 211, 83, 0.85);
  font-size: 14px;
  vertical-align: -1px;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__title-link {
  display: inline-block;
  text-decoration: none;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__title-link:hover,
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__title-link:focus {
  text-decoration: none;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--xiu-green);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__title-link:hover .dj-pack-card__title {
  color: #9ef5b0;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__desc {
  margin: 0;
  width: 98%;
  font-size: 15px;
  line-height: 1.45;
  color: #bbb;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__desc.is-muted {
  font-size: 14px;
  opacity: 0.9;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions.apply-btn {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 30px;
  padding-top: 5px;
  padding-left: 30px;
  box-sizing: border-box;
  gap: 12px;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1;
  font-weight: 400 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a:last-child {
  margin-right: 0;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a .dj-pack-card__icon {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 400 !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a.playnow .dj-pack-card__icon {
  background: none;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a:hover {
  color: var(--xiu-green);
  transform: none;
}
.dj-xiu .dj-genre-disk-list-page .bottom-bar--pack {
  justify-content: center;
  margin-top: var(--pack-grid-gap, 10px);
  padding-top: 0.45rem;
}
.dj-xiu .dj-genre-disk-list-page .dj-pack-grid::after {
  display: none;
}
[data-theme="light"] .dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured,
[data-bs-theme="light"] .dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured {
  background: #f8fafc;
  border-color: rgba(29, 185, 84, 0.28);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}
[data-theme="light"] .dj-xiu .dj-genre-disk-list-page .dj-pack-card__desc,
[data-bs-theme="light"] .dj-xiu .dj-genre-disk-list-page .dj-pack-card__desc {
  color: #64748b;
}
[data-theme="light"] .dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a,
[data-bs-theme="light"] .dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a {
  color: rgba(15, 23, 42, 0.62);
}
@media (max-width: 991px) {
  .dj-xiu .dj-genre-disk-list-page .dj-pack-grid,
  .dj-xiu .dj-genre-disk-list-page .dj-pack-grid.list_musiclist {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured {
    min-height: 120px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__thumb-link {
    flex-basis: 120px;
    width: 120px;
    min-width: 120px;
    min-height: 120px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__cover {
    min-height: 120px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__body.featured-detail {
    min-height: 120px;
    padding: 8px 10px 8px 12px;
    line-height: 1.25;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__title {
    font-size: 16px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__desc {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .dj-xiu .dj-genre-disk-list-page .xiu-demo-panel {
    padding: 0.55rem 0.55rem 0.65rem;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-grid,
  .dj-xiu .dj-genre-disk-list-page .dj-pack-grid.list_musiclist {
    --pack-grid-gap: 8px;
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card.vip-featured {
    min-height: 112px;
    border-radius: 8px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__price.marker {
    top: 8px;
    left: 8px;
    height: 22px;
    padding: 1px 8px;
    font-size: 12px;
    line-height: 20px;
    max-width: calc(100% - 16px);
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__thumb-link {
    flex-basis: 112px;
    width: 112px;
    min-width: 112px;
    min-height: 112px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__cover {
    min-height: 112px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__body.featured-detail {
    min-height: 112px;
    padding: 6px 8px 6px 10px;
    line-height: 1.3;
    justify-content: flex-start;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__date {
    font-size: 11px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__genre-badge {
    font-size: 10px;
    max-width: 42%;
    padding: 1px 6px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__title {
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    margin-top: 2px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__desc {
    display: none;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions.apply-btn {
    margin-top: auto;
    min-height: 0;
    height: auto;
    padding-top: 2px;
    padding-left: 0;
    gap: 10px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a {
    width: 24px;
    height: 24px;
  }
  .dj-xiu .dj-genre-disk-list-page .dj-pack-card__actions a .dj-pack-card__icon {
    font-size: 20px;
  }
}
