/* ========================================
   DJMIX风格 - 深色主题 (完全复刻)
   ======================================== */
:root {
    --box-color: #1C1C1C;
    --font-color: #fff;
    --bg-color: #262626;
    --row-bg-color: #303030;
    --heading-color: #fcfcfc;
    --para-color: rgba(255, 255, 255, 0.9);
    --border-color: rgba(255, 255, 255, 0.3);
    --default-color: #191919;
    --hover-color: #fe3355;
    --side-color: #1E1E1E;
    
    /* 覆盖 Bootstrap 默认变量 */
    --bs-body-bg: #262626;
    --bs-body-color: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', Roboto, sans-serif;
    font-size: 14px;
    line-height: 24px;
    background-color: var(--bg-color);
    color: var(--font-color);
    min-height: 100vh;
}

a { color: #fff; text-decoration: none; transition: all 0.5s; }
a:hover { color: #fe3355; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-weight: 400; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 15px; }

/* ========================================
   登录弹窗 - DJMIX深色风格
   ======================================== */
.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.login-popup-overlay.open {
    display: flex;
}

.login-popup {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 16px;
    width: 450px;
    max-width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(254, 51, 85, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10;
}

.login-popup-close i {
    font-size: 36px;
    color: #fe3355;
    filter: drop-shadow(0 0 8px rgba(254, 51, 85, 0.5));
}

.login-popup-close:hover i {
    color: #ff5070;
    filter: drop-shadow(0 0 12px rgba(254, 51, 85, 0.8));
}

.login-popup-content {
    padding: 40px;
}

.login-popup-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(254, 51, 85, 0.3);
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
}

.login-agree {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.login-agree input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #fe3355;
}

.login-agree a {
    color: #39c1de;
}

.login-agree a:hover {
    text-decoration: underline;
    color: #5dd5f0;
}

.login-input-group {
    margin-bottom: 20px;
}

.login-input-group input {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.login-input-group input:focus {
    outline: none;
    border-color: #fe3355;
    background: rgba(254, 51, 85, 0.05);
    box-shadow: 0 0 15px rgba(254, 51, 85, 0.2);
}

.login-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-code-group {
    display: flex;
    gap: 10px;
}

.login-code-group input {
    flex: 1;
}

.send-code-btn {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #39c1de;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 10px;
}

.send-code-btn:hover {
    color: #fe3355;
}

.send-code-btn:disabled {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.login-other {
    text-align: right;
    margin-bottom: 25px;
}

.login-other a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s;
}

.login-other a:hover {
    color: #fe3355;
}

.login-buttons {
    display: flex;
    gap: 15px;
}

.login-submit-btn {
    flex: 1;
    height: 50px;
    background: linear-gradient(135deg, #fe3355 0%, #ff5070 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(254, 51, 85, 0.3);
}

.login-submit-btn:hover {
    background: linear-gradient(135deg, #ff5070 0%, #fe3355 100%);
    box-shadow: 0 6px 20px rgba(254, 51, 85, 0.5);
    transform: translateY(-2px);
}

.login-cancel-btn {
    flex: 1;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.login-cancel-btn:hover {
    border-color: #fe3355;
    color: #fe3355;
    background: rgba(254, 51, 85, 0.1);
}

/* ========================================
   侧边抽屉菜单 (drawer) - DJMIX风格
   ======================================== */
.drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #1c1c1c;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.drawer.open {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.drawer-overlay.open {
    display: block;
}

.drawer-content {
    padding: 0;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-head .logo-link {
    display: flex;
    align-items: center;
}

.drawer-head .logo-link img {
    height: 40px;
}

.drawer-head .logo-text {
    color: #fe3355;
    font-size: 24px;
    font-weight: bold;
}

.drawer-head .drawer-close {
    color: var(--para-color);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.drawer-head .drawer-close:hover {
    color: #fe3355;
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-menu li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--font-color);
    font-size: 16px;
    transition: all 0.3s;
}

.drawer-menu li a:hover {
    background: var(--row-bg-color);
    color: #fe3355;
}

.drawer-menu li a i:first-child {
    width: 30px;
    font-size: 18px;
    color: #fe3355;
}

.drawer-menu li a i:last-child {
    margin-left: auto;
    color: var(--para-color);
    font-size: 14px;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    background: #fe3355;
    border-radius: 25px;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s;
}

.drawer-btn:hover {
    background: #dc3545;
}

.drawer-btn i {
    margin-right: 8px;
}

/* 菜单按钮 */
.toggle-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fe3355;
    font-size: 24px;
    cursor: pointer;
    margin-left: 15px;
}

.toggle-link:hover {
    color: #dc3545;
}

/* ========================================
   顶部导航栏 (fx-appbar) - DJMIX完全复刻
   ======================================== */
.fx-appbar {
    background-color: #1c1c1c;
    color: var(--font-color);
    height: 64px;
    line-height: 64px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

.fx-appbar .toolbar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 64px;
    box-sizing: border-box;
}

.fx-appbar .logo-wrapper {
    margin-left: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fx-appbar .logo-wrapper .logo-link {
    display: flex;
    align-items: center;
    color: var(--font-color);
}

.fx-appbar .logo-wrapper .logo-link img {
    height: 64px;
    width: auto;
}

.fx-appbar .logo-wrapper .logo-text {
    color: #fe3355;
    font-size: 24px;
    font-weight: bold;
}

.fx-appbar .header-Wrapper {
    display: flex;
    align-items: center;
    height: 64px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.fx-appbar .header-Wrapper .navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

.fx-appbar .header-Wrapper .navigation .nav-link {
    color: var(--font-color);
    display: block;
    font-size: 15px;
    padding: 0 15px;
    position: relative;
    text-transform: capitalize;
    line-height: 64px;
    white-space: nowrap;
}

.fx-appbar .header-Wrapper .navigation .nav-link:hover {
    color: #fe3355;
}

.fx-appbar .search-wrapper {
    position: relative;
    width: 200px;
    flex-shrink: 0;
    margin-right: 20px;
}

.fx-appbar .search-wrapper .searchTreeInputBox {
    background: #49494d;
    border: 1px solid #49494d;
    border-radius: 40px;
    color: #fff;
    font-size: 14px;
    height: 40px;
    padding-left: 47px;
    width: 100%;
}

.fx-appbar .search-wrapper .searchTreeInputBox:focus {
    outline: none;
    border-color: #fe3355;
}

.fx-appbar .search-wrapper .icon-sousuo {
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    height: 40px;
    left: 5px;
    line-height: 40px;
    position: absolute;
    text-align: center;
    width: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.fx-appbar .user-Wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    flex-shrink: 0;
}

.fx-appbar .user-Wrapper .user-nav {
    padding: 0 20px;
}

.fx-appbar .user-Wrapper .login-modal {
    background: #fe3355;
    border-radius: 20px;
    line-height: 40px;
    text-align: center;
    width: 100px;
}

.fx-appbar .user-Wrapper .login-modal a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Bootstrap下拉菜单适配 */
.dropdown-menu {
    background-color: var(--row-bg-color);
    border: 1px solid var(--border-color);
    padding: 15px;
}

.dropdown-item {
    color: var(--para-color);
    padding: 10px 15px;
}

.dropdown-item:hover {
    background-color: #242424;
    color: #ededed;
}


/* ========================================
   热门推荐滑块 (hot_slider) - DJMIX风格
   ======================================== */
.hot_slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.hot_slider::-webkit-scrollbar {
    height: 6px;
}

.hot_slider::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.hot_slider .slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 245px;
    min-width: 245px;
    margin-right: 20px;
}

.hot_slider .slider-item .item-row {
    font-size: 0;
    overflow: hidden;
    padding-top: 26px;
    position: relative;
    width: 100%;
}

.hot_slider .slider-item .item-row .headmc {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: inline-block;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.hot_slider .slider-item .item-row .imgae {
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.hot_slider .slider-item .item-row .imgae img {
    border-radius: 10px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    vertical-align: middle;
}

/* MARKER标签 */
.marker {
    position: absolute;
    font-weight: 500;
    text-align: center;
    box-sizing: border-box;
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #fe3355;
    border-radius: 6px 0 6px 0;
    font-size: 14px;
    height: 25px;
    padding: 2px 10px;
    z-index: 10;
}

.marker.pink {
    background-image: linear-gradient(90deg, #ff1493, #ff53a0);
}

.marker.red {
    background-image: linear-gradient(90deg, #8d0000, #dc3545);
}

/* 播放覆盖层 */
.hot_slider .slider-item .item-row .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.hot_slider .slider-item .item-row .overlay .mask {
    background-image: linear-gradient(0deg, red, rgba(255,0,0,0));
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    transition: all 0.5s;
    width: 100%;
}

.hot_slider .slider-item .item-row .overlay .play-btn {
    height: 60px;
    width: 60px;
    position: absolute;
    text-align: center;
    z-index: 2;
}

.hot_slider .slider-item .item-row .overlay .play-btn i {
    color: #fff;
    font-size: 50px;
}

.hot_slider .slider-item .item-row:hover .mask {
    border-radius: 10px;
    top: 0;
}

.hot_slider .slider-item .item-row:hover .overlay {
    opacity: 1;
}

/* 滑块信息 */
.hot_slider .slider-item .slider-item-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 10px 0;
}

.hot_slider .slider-item .slider-item-info .SongTitle {
    font-size: 20px !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.hot_slider .slider-item .slider-item-info .SongTitle a {
    color: var(--font-color);
}

/* notes标签 */
.hot_slider .slider-item .notes {
    background-image: linear-gradient(90deg, #8d0000, #dc3545);
    border-radius: 6px 0 6px 0;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    height: 25px;
    left: 30px;
    max-width: 80%;
    overflow: hidden;
    padding: 2px 10px;
    text-overflow: ellipsis;
    top: 32px;
    white-space: nowrap;
    width: auto;
    position: absolute;
    z-index: 5;
}


/* ========================================
   歌曲列表 (song-col-time) - DJMIX风格
   ======================================== */
.song-col-time {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #1c1c1c;
    border-radius: 10px;
    box-shadow: 0 4px 15px 0 rgba(0,0,0,0.05);
    margin-bottom: 12px;
    padding: 10px;
}

.song-col-time:hover .song-name {
    color: #dc3545;
}

.song-col-time:hover .overlay {
    opacity: 1 !important;
}

.song-col-time:hover .mask {
    border-radius: 10px;
    top: 0 !important;
}

.song-col-time .list_left {
    display: flex;
    align-items: center;
    position: relative;
    width: 70%;
}

.song-col-time .list_left .song-intro {
    display: block;
    align-items: center;
    width: 100%;
}

.song-col-time .list_left .song-intro .song-cover {
    border-radius: 10px;
    float: left;
    height: 60px;
    overflow: hidden;
    position: relative;
    width: 60px;
}

.song-col-time .list_left .song-intro .song-cover img {
    height: 100% !important;
    object-fit: cover;
    width: 100% !important;
}

.song-col-time .list_left .song-intro .song-cover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.song-col-time .list_left .song-intro .song-cover .overlay .mask {
    background-image: linear-gradient(0deg, red, rgba(255,0,0,0));
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    transition: all 0.5s;
    width: 100%;
}

.song-col-time .list_left .song-intro .song-cover .overlay .play-btn {
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    width: 30px;
    z-index: 2;
}

.song-col-time .list_left .song-intro .song-cover .overlay .play-btn i {
    color: #fff;
    font-size: 30px;
}

.song-col-time .list_left .song-intro .intro-text {
    float: left;
    padding: 5px 0 0 25px;
    width: calc(100% - 60px);
}

.song-col-time .list_left .song-intro .intro-text .song-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    text-transform: capitalize;
    width: 90%;
    color: var(--font-color);
}

.song-col-time .list_left .song-intro .intro-text .song-tags .song-style {
    color: #39c1de;
    font-size: 14px;
}

.song-col-time .list_left .song-intro .intro-text .song-tags .song-singer {
    color: #ff53a0;
    cursor: pointer;
    font-size: 14px;
}

.song-col-time .list_left .song-intro .intro-text .song-tags .song-time {
    color: #fff;
    font-size: 14px;
}

.song-col-time .list_left .coinCount {
    color: #ffd800;
    float: right;
    font-size: 16px;
    padding: 16px 0 12px 10px;
    position: absolute;
    right: 20px;
}

/* 价格标签样式 */
.coinCount.free {
    color: #3cff00 !important;
}

.coinCount.vip {
    color: #ff53a0 !important;
}

.song-col-time .list_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 35%;
}

.song-col-time .list_right .song-info {
    color: #39c1de;
    font-size: 14px;
}

.song-col-time .list_right .song-action {
    margin-right: 10px;
}

.song-col-time .list_right .song-action .song-btn {
    padding: 16px 0 12px 10px;
    color: var(--para-color);
}

.song-col-time .list_right .song-action .song-btn:hover {
    color: #fe3355;
}

.song-col-time .list_right .song-action .song-btn i {
    font-size: 18px;
}


/* ========================================
   排行榜/侧边栏 (pricing) - DJMIX风格
   ======================================== */
.pricing {
    background: var(--box-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px 0 rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 20px;
}

.pricing .head-wrapper {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.5s;
    background: linear-gradient(90deg, #931313 20%, #dc3545);
}

.pricing .head-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    transition: all 0.5s;
    margin: 0;
}

.pricing .five-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2d2d;
    border-radius: 5px;
    box-shadow: 0 4px 15px 0 rgba(0,0,0,0.05);
    height: 50px;
    margin-top: -25px;
    position: relative;
    text-align: center;
    width: 180px;
}

.pricing .five-wrapper span {
    font-size: 16px;
    font-weight: 500;
    color: var(--font-color);
}

.pricing .list-wrapper {
    margin-top: 10px;
    text-align: left;
    padding: 0 10px;
}

.pricing .list-wrapper .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing .list-wrapper .list li {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 5px 10px;
}

.pricing .list-wrapper .list li:hover {
    background: var(--row-bg-color);
    border-radius: 5px;
}

.pricing .list-wrapper .list li .list-item-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    text-align: left;
    width: 100%;
    color: var(--para-color);
}

.pricing .list-wrapper .list li .list-item-link:hover {
    color: #fe3355 !important;
}

.pricing .list-wrapper .list li .list-item-link .list-item-icon {
    font-size: 16px;
    font-style: normal;
    margin-right: 10px;
    text-align: center;
    width: 20px;
    color: #ffd800;
    font-weight: bold;
}

.pricing .list-wrapper .list li .list-item-link .list-item-icon.top3 {
    color: #fe3355;
}

.pricing .list-wrapper .list li .list-item-link .list-item-content {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.pricing .list-btn {
    padding: 15px;
}

.pricing .list-btn .fx-btn {
    background-image: linear-gradient(90deg, #fe3355, #dc3545, #dc3545, green);
    background-size: 280% 100%;
    border: none;
    border-radius: 15px;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    width: 120px;
    transition: all 0.2s ease-in-out;
}

.pricing .list-btn .fx-btn:hover {
    background-position: 100% 0;
    color: #fff !important;
}


/* ========================================
   VIP特色卡片 (vip-featured/slider) - DJMIX风格
   ======================================== */
.slider {
    background: #262626;
    border-radius: 10px;
    box-shadow: 0 4px 15px 0 rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.slider .marker {
    background-image: linear-gradient(90deg, #ff1493, #ff53a0);
    border-radius: 6px 0 6px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 25px;
    left: 10px;
    padding: 2px 10px;
    position: absolute;
    top: 16px;
    width: auto;
    z-index: 5;
}

.slider img {
    border-radius: 0;
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.slider .content-artist {
    background: rgba(0,0,0,0.74);
    bottom: 0;
    padding: 10px;
    position: absolute;
    width: 100%;
}

.slider .content-artist p {
    font-size: 16px;
    margin: 0;
}

.slider .content-artist p.artist-text {
    font-size: 14px;
}

.slider .content-artist p.artist-text a {
    color: #888;
}

.slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.slider .overlay .mask {
    background-image: linear-gradient(0deg, red, rgba(255,0,0,0));
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    transition: all 0.5s;
    width: 100%;
}

.slider .overlay .play_icon {
    position: relative;
    z-index: 2;
}

.slider .overlay .play_icon i {
    font-size: 50px;
    color: #fff;
}

.slider:hover .overlay {
    opacity: 1;
}

.slider:hover .mask {
    top: 0;
}

/* VIP Featured 样式 */
.vip-featured {
    background: var(--box-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.vip-featured img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.vip-featured .marker {
    background-image: linear-gradient(90deg, #ff1493, #ff53a0);
    border-radius: 6px 0 6px 0;
    color: #fff;
    font-size: 14px;
    height: 25px;
    left: 10px;
    padding: 2px 10px;
    position: absolute;
    top: 16px;
    z-index: 5;
}

.vip-featured .featured-detail {
    padding: 15px;
    min-height: 120px;
}

.vip-featured .featured-detail span {
    color: #39c1de;
    font-size: 12px;
}

.vip-featured .featured-detail h5 {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
}

.vip-featured .featured-detail h5 a {
    color: var(--font-color);
}

.vip-featured .featured-detail .apply-btn {
    display: flex;
    gap: 10px;
    padding-top: 10px;
}

.vip-featured .featured-detail .apply-btn a {
    color: var(--para-color);
}

.vip-featured .featured-detail .apply-btn a:hover {
    color: #fe3355;
}

.vip-featured .featured-detail .apply-btn a i {
    font-size: 20px;
}


/* ========================================
   区块标题 - DJMIX风格
   ======================================== */
.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
}

.block-title {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.block-title small {
    color: var(--para-color);
    font-size: 14px;
    margin-left: 10px;
}

.block-tabs {
    display: flex;
    gap: 10px;
}

.block-tab {
    background: transparent;
    border: 2px solid #dc3545;
    border-radius: 2px;
    color: var(--font-color);
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.block-tab:hover,
.block-tab.active {
    background-color: #dc3545 !important;
    color: #fff;
}

.block-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.block-arrow {
    width: 32px;
    height: 32px;
    background: var(--box-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--para-color);
    cursor: pointer;
    transition: all 0.3s;
}

.block-arrow:hover {
    background: #fe3355;
    border-color: #fe3355;
    color: #fff;
}

/* ========================================
   按钮样式 - DJMIX风格
   ======================================== */
.btn-primary {
    background-color: #fe3355;
    border-color: #fe3355;
    color: #fff;
}

.btn-primary:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-primary {
    color: #fe3355;
    border-color: #fe3355;
}

.btn-outline-primary:hover {
    background-color: #fe3355;
    border-color: #fe3355;
    color: #fff;
}

.fx-btn {
    background-image: linear-gradient(90deg, #fe3355, #dc3545, #dc3545, green);
    background-size: 280% 100%;
    border: none;
    border-radius: 15px;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    width: 120px;
    transition: all 0.2s ease-in-out;
}

.fx-btn:hover {
    background-position: 100% 0;
    color: #fff !important;
}

/* ========================================
   表单样式
   ======================================== */
.form-control {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--font-color);
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    height: 50px;
    padding: 0 20px;
}

.form-control:focus {
    background: var(--bg-color);
    border-color: #fe3355;
    color: var(--font-color);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--para-color);
}

/* ========================================
   卡片/下拉菜单
   ======================================== */
.card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
}

.card-header {
    background: rgba(254, 51, 85, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.card-body {
    color: rgba(255, 255, 255, 0.5);
}

.card h5, .card h6 {
    color: #fff;
}

.card .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* 深色表格样式 */
.table {
    color: #fff;
}

.table thead {
    background: rgba(254, 51, 85, 0.15);
    border-bottom: 2px solid rgba(254, 51, 85, 0.3);
}

.table thead th {
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px;
}

.table tbody tr {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table tbody td {
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px;
    vertical-align: middle;
}

.table tbody td a {
    color: #39c1de;
}

.table tbody td a:hover {
    color: #fe3355;
}

.table-hover tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* 深色卡片样式 */
.card-dark {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    overflow: hidden;
}

.card-dark .card-header {
    background: rgba(254, 51, 85, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



/* 深色表格样式 */
.table-dark-custom {
    background: transparent !important;
    color: #fff;
}

.table-dark-custom thead {
    background: rgba(254, 51, 85, 0.15);
    border-bottom: 2px solid rgba(254, 51, 85, 0.3);
}

.table-dark-custom thead th {
    color: #fff;
    font-weight: 600;
    padding: 15px 12px;
    border: none;
}

.table-dark-custom tbody tr {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.table-dark-custom tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-dark-custom tbody td {
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 12px;
    border: none;
    vertical-align: middle;
}

.table-dark-custom tbody td a {
    color: #39c1de;
}

.table-dark-custom tbody td a:hover {
    color: #fe3355;
}

.table-dark-custom tbody td .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.table-dark-custom tbody td .fw-medium {
    color: #fff;
}

.table-dark-custom tbody td code {
    background: rgba(255, 255, 255, 0.1);
    color: #39c1de;
    padding: 2px 6px;
    border-radius: 4px;
}

.dropdown-menu {
    background-color: var(--row-bg-color);
    border: 1px solid var(--border-color);
    padding: 15px;
}

.dropdown-item {
    color: var(--para-color);
    padding: 10px 15px;
}

.dropdown-item:hover {
    background-color: #242424;
    color: #ededed;
}

/* ========================================
   页脚
   ======================================== */
footer {
    background: #000;
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer a {
    color: var(--para-color);
}

footer a:hover {
    color: #fe3355;
}

footer h5, footer h6 {
    color: var(--font-color);
    margin-bottom: 15px;
}

/* ========================================
   全局播放器
   ======================================== */
#global-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c1c1c;
    z-index: 1000;
}

/* ========================================
   响应式
   ======================================== */
@media (max-width: 1199px) {
    .fx-appbar .header-Wrapper .navigation {
        display: none !important;
    }
    
    .fx-appbar .search-wrapper {
        flex: 1;
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .hot_slider .slider-item {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .hot_slider .slider-item .item-row .imgae img {
        height: 200px;
    }
    
    .song-col-time .list_left {
        width: 100%;
    }
    
    .song-col-time .list_right {
        width: 100%;
        margin-top: 10px;
    }
    
    .song-col-time {
        flex-wrap: wrap;
    }
    
    .fx-appbar .logo-wrapper {
        margin-left: 15px;
    }
    
    .fx-appbar .user-Wrapper {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hot_slider .slider-item {
        flex: 0 0 160px;
        min-width: 160px;
    }
    
    .hot_slider .slider-item .item-row .imgae img {
        height: 160px;
    }
    
    .vip-featured img {
        height: 120px;
    }
    
    .fx-appbar .search-wrapper {
        width: 120px;
    }
}

/* ========================================
   滚动条
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--para-color);
}

/* 主内容区域 */
.main {
    min-height: 80vh;
    padding-top: 80px;
}

/* ========================================
   全屏轮播图 Banner - DJMIX风格
   ======================================== */
.swiper-index-full {
    height: 500px;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.swiper-index-full .swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-index-full .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.swiper-index-full .swiper-pagination {
    bottom: 20px;
}

.swiper-index-full .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #333;
    border-radius: 10px;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s;
}

.swiper-index-full .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fe3355;
    border-color: #fe3355;
    width: 30px;
}

.swiper-index-full .swiper-button-prev,
.swiper-index-full .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-index-full .swiper-button-prev:hover,
.swiper-index-full .swiper-button-next:hover {
    background: #fe3355;
}

.swiper-index-full .swiper-button-prev::after,
.swiper-index-full .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .swiper-index-full {
        height: 350px;
    }
    .swiper-index-full .swiper-slide img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .swiper-index-full {
        height: 250px;
    }
    .swiper-index-full .swiper-slide img {
        height: 250px;
    }
    .swiper-index-full .swiper-button-prev,
    .swiper-index-full .swiper-button-next {
        display: none;
    }
}


/* ========================================
   底部播放器 - DJMIX风格
   ======================================== */
.dj-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c1c1c;
    z-index: 1000;
    display: none;
}

.dj-player-bar.active {
    display: block;
}

/* 进度条 */
.dj-progress-bar {
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(182, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
}

.dj-progress-bar:hover {
    height: 12px;
    top: -6px;
}

.dj-progress-played {
    height: 100%;
    background: linear-gradient(135deg, #b1152f, #fe3355 86%);
    width: 0%;
    position: relative;
    border-radius: 0 5px 5px 0;
    transition: width 0.1s linear;
}

.dj-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fe3355;
    border-radius: 50%;
    box-shadow: 2px 2px 16px 0 rgba(254, 121, 69, 0.2);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 11;
}

.dj-progress-bar:hover .dj-progress-handle {
    opacity: 1;
}

/* 播放器内容 */
.dj-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    height: 70px;
}

/* 左侧信息 */
.dj-player-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.dj-player-cover {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.dj-player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-player-text {
    min-width: 0;
    flex: 1;
}

.dj-player-title {
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.dj-player-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
}

.dj-player-artist {
    color: #39c1de;
}

.dj-player-separator {
    color: rgba(255, 255, 255, 0.3);
}

.dj-player-bpm {
    color: rgba(255, 255, 255, 0.7);
}

.dj-player-bpm strong {
    color: #8b5cf6;
    font-weight: 600;
}

.dj-player-key {
    color: rgba(255, 255, 255, 0.7);
}

.dj-player-key strong {
    color: #ec4899;
    font-weight: 600;
}

.dj-player-bpm i,
.dj-player-key i {
    margin-right: 3px;
    font-size: 11px;
}

/* 中间控制按钮 */
.dj-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dj-ctrl-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-ctrl-btn:hover {
    color: #fe3355;
}

.dj-ctrl-btn.active {
    color: #fe3355;
}

.dj-play-btn {
    width: 50px;
    height: 50px;
    background: #fe3355;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}

.dj-play-btn:hover {
    background: #dc3545;
    color: #fff;
    transform: scale(1.05);
}

/* 右侧时间和音量 */
.dj-player-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.dj-player-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
}

.dj-player-time span:first-child {
    color: #fff;
}

/* 音量控制 */
.dj-volume-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dj-volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.dj-volume-bar {
    height: 100%;
    background: linear-gradient(135deg, #fe3355, #a9011d 86%);
    border-radius: 2px;
    width: 70%;
    position: relative;
}

.dj-volume-bar::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fe3355;
    border-radius: 50%;
}

/* 响应式 */
@media (max-width: 991px) {
    .dj-player-content {
        padding: 10px 15px;
    }
    
    .dj-player-info {
        max-width: 200px;
    }
    
    .dj-volume-slider {
        display: none;
    }
}

@media (max-width: 767px) {
    .dj-player-content {
        height: 60px;
        padding: 8px 10px;
    }
    
    .dj-player-cover {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .dj-player-info {
        max-width: 120px;
    }
    
    .dj-player-title {
        font-size: 12px;
    }
    
    .dj-player-artist {
        font-size: 10px;
    }
    
    .dj-ctrl-btn {
        font-size: 16px;
        padding: 5px;
    }
    
    .dj-play-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .dj-player-controls {
        gap: 5px;
    }
    
    #btn-shuffle,
    #btn-repeat {
        display: none;
    }
    
    .dj-player-time {
        display: none;
    }
}


/* 播放器收起/关闭按钮 */
.dj-toggle-btn,
.dj-close-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-left: 5px;
}

.dj-toggle-btn:hover,
.dj-close-btn:hover {
    border-color: #fe3355;
    background: rgba(254, 51, 85, 0.1);
}

.dj-close-btn:hover {
    color: #fe3355;
}

/* 播放器收起状态 */
.dj-player-bar.minimized {
    height: auto;
}

.dj-player-bar.minimized .dj-player-content {
    display: none;
}

.dj-player-bar.minimized .dj-progress-bar {
    position: relative;
    top: 0;
    height: 6px;
    cursor: pointer;
}

.dj-player-bar.minimized .dj-progress-bar:hover {
    height: 10px;
}

/* 收起状态下的迷你控制栏 */
.dj-mini-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    background: #1c1c1c;
}

.dj-player-bar.minimized .dj-mini-bar {
    display: flex;
}

.dj-mini-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.dj-mini-cover {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
}

.dj-mini-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-mini-text {
    min-width: 0;
    flex: 1;
}

.dj-mini-title {
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.dj-mini-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
}

.dj-mini-artist {
    color: #39c1de;
}

.dj-mini-separator {
    color: rgba(255, 255, 255, 0.3);
}

.dj-mini-bpm strong {
    color: #8b5cf6;
    font-weight: 600;
}

.dj-mini-key strong {
    color: #ec4899;
    font-weight: 600;
}

.dj-mini-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dj-mini-controls .dj-ctrl-btn {
    font-size: 18px;
    padding: 5px;
}

.dj-mini-controls .dj-play-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.dj-mini-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
    font-family: monospace;
}


/* ========================================
   全宽歌曲列表 - DJMIX风格
   ======================================== */
.song-list-full {
    background: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
}

.song-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.song-row:last-child {
    border-bottom: none;
}

.song-row:hover {
    background: #262626;
}

.song-row:hover .song-row-title {
    color: #fe3355;
}

.song-row:hover .overlay {
    opacity: 1;
}

.song-row:hover .mask {
    top: 0;
}

/* 封面 */
.song-row-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin-right: 15px;
}

.song-row-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-row-cover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.song-row-cover .overlay .mask {
    background: linear-gradient(0deg, rgba(254, 51, 85, 0.8), rgba(254, 51, 85, 0.3));
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    transition: top 0.3s;
    border-radius: 8px;
}

.song-row-cover .overlay .play-btn {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.song-row-cover .overlay .play-btn i {
    font-size: 28px;
    color: #fff;
}

/* 歌曲信息 */
.song-row-info {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.song-row-title {
    font-size: 15px;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.song-row-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.song-row-meta span {
    white-space: nowrap;
}

.song-row-artist {
    color: #ff53a0 !important;
}

/* 价格 */
.song-row-price {
    width: 80px;
    text-align: center;
    font-size: 14px;
    color: #ffd800;
    flex-shrink: 0;
}

.song-row-price.free {
    color: #3cff00;
}

.song-row-price.vip {
    color: #ff53a0;
}

/* 详情 */
.song-row-detail {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.detail-time {
    color: #39c1de;
    font-size: 13px;
}

.detail-tag {
    color: #39c1de;
    font-size: 13px;
    padding: 2px 8px;
    background: rgba(57, 193, 222, 0.1);
    border-radius: 3px;
}

/* 操作按钮 */
.song-row-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.action-btn {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.action-btn:hover {
    color: #fe3355;
}

.action-btn i {
    margin-right: 3px;
}

/* 响应式 */
@media (max-width: 991px) {
    .song-row-detail {
        display: none;
    }
    
    .song-row-price {
        width: 60px;
    }
}

@media (max-width: 767px) {
    .song-row {
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .song-row-cover {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    .song-row-info {
        width: calc(100% - 130px);
        padding-right: 10px;
    }
    
    .song-row-title {
        font-size: 14px;
    }
    
    .song-row-meta {
        font-size: 11px;
        gap: 5px;
    }
    
    .song-row-price {
        width: 60px;
        font-size: 12px;
    }
    
    .song-row-actions {
        width: 100%;
        margin-top: 10px;
        padding-left: 60px;
        gap: 20px;
    }
}


/* ========================================
   排名数字样式
   ======================================== */
.song-row-rank {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #ffd800;
    flex-shrink: 0;
    margin-right: 10px;
}

.song-row-rank.top3 {
    color: #fe3355;
    font-size: 22px;
}

/* ========================================
   音乐人横向滑块
   ======================================== */
.artist-slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    gap: 20px;
}

.artist-slider::-webkit-scrollbar {
    height: 6px;
}

.artist-slider::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.artist-card {
    flex: 0 0 180px;
    min-width: 180px;
    text-align: center;
}

.artist-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-avatar .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.artist-avatar .overlay .mask {
    background: rgba(254, 51, 85, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.artist-avatar:hover .overlay {
    opacity: 1;
}

.artist-avatar:hover .mask {
    opacity: 1;
}

.artist-avatar .play_icon {
    position: relative;
    z-index: 2;
}

.artist-avatar .play_icon i {
    font-size: 50px;
    color: #fff;
}

.artist-info {
    text-align: center;
}

.artist-name {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.artist-name:hover {
    color: #fe3355;
}

.artist-count {
    font-size: 13px;
    color: #888;
}

/* 响应式 */
@media (max-width: 767px) {
    .artist-card {
        flex: 0 0 140px;
        min-width: 140px;
    }
    
    .artist-avatar {
        width: 100px;
        height: 100px;
    }
    
    .artist-avatar .play_icon i {
        font-size: 36px;
    }
    
    .song-row-rank {
        width: 30px;
        font-size: 14px;
    }
    
    .song-row-rank.top3 {
        font-size: 16px;
    }
}

/* ========================================
   签到页面样式
   ======================================== */
.checkin-btn {
    background: linear-gradient(135deg, #fe3355 0%, #ff6b6b 100%);
    border: none;
    color: #fff;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(254, 51, 85, 0.4);
}

.checkin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 51, 85, 0.5);
}

.checkin-btn:disabled {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    cursor: not-allowed;
    box-shadow: none;
}

.checkin-btn:disabled:hover {
    transform: none;
}

/* Toast 提示 */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-message {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease;
}

.toast-message.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.toast-message.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ========================================
   用户中心页面样式
   ======================================== */
.user-sidebar {
    background: var(--box-color);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 80px;
}

.user-sidebar .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--hover-color);
}

.user-sidebar .vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.user-stats {
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    margin: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.user-stats .stat-item {
    text-align: center;
}

.user-stats .stat-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--hover-color);
}

.user-stats .stat-label {
    font-size: 12px;
    color: var(--para-color);
    margin-top: 4px;
}

.checkin-btn {
    background: linear-gradient(135deg, #fe3355, #ff6b6b);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.checkin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 51, 85, 0.4);
    color: #fff;
}

.checkin-btn:disabled {
    background: #444;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.user-sidebar .nav {
    margin-top: 16px;
}

.user-sidebar .nav-link {
    color: var(--para-color);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.user-sidebar .nav-link:hover,
.user-sidebar .nav-link.active {
    color: var(--hover-color);
}

.user-sidebar .nav-link i {
    width: 24px;
}

/* 用户中心卡片 */
.user-center .card {
    background: var(--box-color);
    border: none;
    border-radius: 12px;
}

.user-center .card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}

.user-center .card-body {
    padding: 20px;
}

.user-center .table {
    color: var(--font-color);
    margin-bottom: 0;
}

.user-center .table th {
    border-color: var(--border-color);
    color: var(--para-color);
    font-weight: normal;
}

.user-center .table td {
    border-color: var(--border-color);
    vertical-align: middle;
}

/* 快捷入口卡片 */
.user-center .card.text-decoration-none {
    transition: all 0.3s;
}

.user-center .card.text-decoration-none:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 48px;
    color: var(--para-color);
}

.empty-state p {
    margin-top: 16px;
    color: var(--para-color);
}

/* 个人中心容器 */
.container.py-4 {
    padding-top: 100px !important;
}


/* ========================================
   上传区域样式
   ======================================== */
.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: #fe3355;
    background: rgba(254, 51, 85, 0.1);
}

.upload-zone .upload-icon {
    font-size: 64px;
    color: #fe3355;
    margin-bottom: 20px;
    display: block;
}

.upload-zone h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.upload-zone p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.upload-zone label.btn {
    cursor: pointer;
}

/* 上传列表 */
.upload-list {
    margin-top: 20px;
}

.upload-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-item .file-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fe3355, #dc3545);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.upload-item .file-icon i {
    font-size: 24px;
    color: #fff;
}

.upload-item .file-info {
    flex: 1;
    min-width: 0;
}

.upload-item .file-name {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.upload-item .file-size {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.upload-item .progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 8px;
}

.upload-item .progress-bar {
    background: linear-gradient(135deg, #fe3355, #dc3545);
}

.upload-item .status-icon {
    margin-left: 15px;
}

.upload-item.border-success {
    border-color: #28a745;
}

.upload-item.border-danger {
    border-color: #dc3545;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.85);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.empty-state h5 {
    color: #fff;
    margin-bottom: 10px;
}

.empty-state p {
    color: rgba(255, 255, 255, 0.85);
}

/* 用户侧边栏 */
.user-sidebar {
    background: var(--box-color);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.user-sidebar .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fe3355;
}

.user-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.user-sidebar .nav-link:hover {
    background: rgba(254, 51, 85, 0.1);
    color: #fe3355;
}

.user-sidebar .nav-link.active {
    background: #fe3355;
    color: #fff;
}

.user-sidebar .user-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 15px 0;
}

.user-sidebar .stat-item {
    text-align: center;
}

.user-sidebar .stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #fff !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.user-sidebar .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* 资源卡片 */
.resource-card {
    background: var(--box-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.resource-card .cover-wrap {
    position: relative;
    overflow: hidden;
}

.resource-card .cover-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.resource-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.resource-card:hover .play-overlay {
    opacity: 1;
}

.resource-card .play-btn {
    width: 50px;
    height: 50px;
    background: #fe3355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.resource-card .play-btn:hover {
    transform: scale(1.1);
}

.resource-card .play-btn i {
    color: #fff;
    font-size: 24px;
}

.resource-card .vip-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fe3355;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.resource-card .card-body {
    padding: 15px;
}

.resource-card .title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-card .price-tag {
    color: #ffd800;
    font-weight: bold;
}

.resource-card .price-tag.free {
    color: #28a745;
}

.resource-card .download-count {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

/* 加载动画 */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fe3355;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ========================================
   覆盖 Bootstrap 浅灰色文字
   ======================================== */
.text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.85) !important;
}

.form-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

small, .small {
    color: rgba(233, 5, 5, 0.85);
}

.card-text {
    color: rgba(255, 255, 255, 0.9);
}

/* 表单标签和提示文字 */
.form-label {
    color: #fff;
}

label {
    color: #fff;
}

/* 下拉选择框 */
.form-select {
    background-color: var(--bg-color);
    border-color: var(--border-color);
    color: #fff;
}

.form-select:focus {
    background-color: var(--bg-color);
    border-color: #fe3355;
    color: #fff;
    box-shadow: none;
}

.form-select option {
    background-color: var(--bg-color);
    color: #fff;
}

/* 输入框占位符 */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* 表格文字 */
.table {
    color: #fff;
}

.table th,
.table td {
    color: rgba(255, 255, 255, 0.9);
    border-color: var(--border-color);
}

/* 徽章 */
.badge {
    font-weight: normal;
}

/* 分页 */
.pagination .page-link {
    background-color: var(--box-color);
    border-color: var(--border-color);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: #fe3355;
    border-color: #fe3355;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: #fe3355;
    border-color: #fe3355;
}

.pagination .page-item.disabled .page-link {
    background-color: var(--box-color);
    border-color: var(--border-color);
    color: rgba(255, 255, 255, 0.5);
}


/* 霓虹按钮样式 */
.btn-neon,
.btn-neon:link,
.btn-neon:visited,
.btn-neon:active,
.btn-neon:focus {
    background: linear-gradient(135deg, #fe3355, #dc3545) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    background: linear-gradient(135deg, #dc3545, #fe3355) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(254, 51, 85, 0.4);
}

/* 确保所有按钮文字可见 */
.btn-outline-secondary {
    color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-secondary:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   VIP页面样式
   ======================================== */
.vip-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border: 1px solid rgba(240, 177, 3, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vip-card.popular {
    border: 2px solid #fe3355;
    box-shadow: 0 0 30px rgba(254, 51, 85, 0.3);
}

.vip-card.popular::before {
    content: "推荐";
    position: absolute;
    top: 15px;
    right: -25px;
    background: #fe3355;
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 51, 85, 0.2);
}

.vip-name {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vip-price {
    color: #fe3355;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.vip-price small {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.original-price {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 14px;
}

.benefits-list li i {
    color: #fe3355;
    margin-right: 8px;
}

.btn-vip {
    background: linear-gradient(135deg, #fe3355 0%, #ff5070 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(254, 51, 85, 0.3);
}

.btn-vip:hover {
    background: linear-gradient(135deg, #ff5070 0%, #fe3355 100%);
    box-shadow: 0 6px 20px rgba(254, 51, 85, 0.5);
    transform: translateY(-2px);
    color: #fff;
}
