/* Taoqu Index页面独立样式 - 使用taoqu-前缀避免冲突 */

/* 确保HTML和body都有背景色，防止白色闪烁 */
body.taoqu-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 50%, #1a1a1a 100%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    color: #f0f0f0 !important;
    font-family: 'Oswald', sans-serif !important;
    min-height: 100vh !important;
    position: relative !important;
}

/* 滚动时禁用动画，防止白色闪烁 */
@media (prefers-reduced-motion: no-preference) {
    .taoqu-body.scrolling * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 移除重複的樣式定義 */

/* 移除动态背景效果 */

/* 移除背景流动动画 */

/* 頁面包裝器 - 限制整體寬度 */
.taoqu-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* 容器样式 - 增加玻璃效果 */
.taoqu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    /* 优化滚动性能 */
    will-change: auto;
    transform: translateZ(0);
}

/* 个性轮播图样式 - 增强视觉效果 */
.taoqu-carousel {
    position: relative !important;
    margin: 20px auto 40px auto !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(170, 60, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    height: 500px !important;
    max-width: 1200px !important;
    width: 100% !important;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.95), rgba(20, 20, 30, 0.98)) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(170, 60, 255, 0.3) !important;
    /* 確保輪播圖容器可見 */
    display: block !important;
    /* 支持觸摸和滑鼠拖動 */
    touch-action: pan-y pinch-zoom !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    cursor: grab !important;
}

.taoqu-carousel:active {
    cursor: grabbing !important;
}

/* 移除轮播图滑入动画 */

.taoqu-carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: all 0.5s ease-in-out !important;
    transform: translateX(100%) !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: none !important;
    z-index: 1 !important;
    will-change: transform, opacity !important;
}

.taoqu-carousel-slide.taoqu-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

.taoqu-carousel-slide.taoqu-prev {
    transform: translateX(-100%) !important;
    z-index: 1 !important;
}

.taoqu-carousel-slide.taoqu-next {
    transform: translateX(100%) !important;
    z-index: 1 !important;
}

.taoqu-carousel-slide.taoqu-active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 10 !important;
    visibility: visible !important;
    /* 只有活動的輪播項可以交互 */
    pointer-events: auto !important;
}

.taoqu-carousel-slide.taoqu-prev {
    opacity: 0 !important;
    transform: translateX(-100%) scale(0.9) !important;
    z-index: 1 !important;
    visibility: hidden !important;
    /* 完全隱藏前一個輪播項 */
    pointer-events: none !important;
}

.taoqu-carousel-slide.taoqu-next {
    opacity: 0 !important;
    transform: translateX(100%) scale(0.9) !important;
    z-index: 1 !important;
    visibility: hidden !important;
    /* 完全隱藏下一個輪播項 */
    pointer-events: none !important;
}

.taoqu-carousel-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* 移除颜色动画效果 */
    display: block !important;
}

.taoqu-carousel-slide.taoqu-active .taoqu-carousel-bg {
    /* 移除颜色动画效果 */
}

.taoqu-carousel-content {
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 60px !important;
    z-index: 20 !important;
    max-width: 700px !important;
    /* 確保內容正確顯示 */
    color: white !important;
}

.taoqu-carousel-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, 
        rgba(25, 25, 35, 0.9) 0%, 
        rgba(20, 20, 30, 0.7) 50%, 
        rgba(15, 15, 25, 0.4) 100%) !important;
    z-index: 15 !important;
}

.taoqu-carousel-category {
    display: inline-block !important;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.9), rgba(255, 107, 157, 0.8)) !important;
    color: white !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.4) !important;
    max-width: 180px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    /* 移除颜色动画效果 */
}

/* 移除分类发光动画 */

.taoqu-carousel-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(170, 60, 255, 0.5) !important;
    color: #ffffff !important;
    /* 移除颜色动画效果 */
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 50%, #8e24aa 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* 移除标题滑入动画 */

.taoqu-carousel-description {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 500px !important;
    /* 移除颜色动画效果 */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* 移除描述滑入动画 */

.taoqu-carousel-actions {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.taoqu-carousel-btn {
    display: inline-flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 100%) !important;
    color: white !important;
    padding: 16px 32px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 
        0 8px 25px rgba(170, 60, 255, 0.4),
        0 4px 15px rgba(255, 107, 157, 0.3) !important;
    /* 移除颜色动画效果 */
    position: relative !important;
    overflow: hidden !important;
}

.taoqu-carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.taoqu-carousel-btn:hover::before {
    left: 100%;
}

.taoqu-carousel-btn-primary {
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 100%) !important;
}

.taoqu-carousel-btn-secondary {
    background: linear-gradient(135deg, #aa3cff 0%, #8e24aa 100%) !important;
    border: none !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.4), 0 4px 15px rgba(142, 36, 170, 0.3) !important;
}

/* 移除按钮滑入动画 */

.taoqu-carousel-btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 
        0 15px 40px rgba(170, 60, 255, 0.6),
        0 8px 25px rgba(255, 107, 157, 0.4) !important;
}

.taoqu-carousel-btn-primary:hover {
    background: linear-gradient(135deg, #bb4dff 0%, #ff7cad 100%) !important;
}

.taoqu-carousel-btn-secondary:hover {
    background: linear-gradient(135deg, #bb4dff 0%, #9e35ba 100%) !important;
    box-shadow: 0 15px 40px rgba(170, 60, 255, 0.6), 0 8px 25px rgba(142, 36, 170, 0.4) !important;
}

.taoqu-carousel-btn i {
    margin-right: 10px !important;
    font-size: 1.1rem !important;
    transition: transform 0.3s ease !important;
}

.taoqu-carousel-btn:hover i {
    transform: translateX(5px) scale(1.1) !important;
}

/* 轮播指示器 - 居中显示并增强效果 */
.taoqu-carousel-indicators {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 15px !important;
    z-index: 25 !important;
    /* 確保指示器居中 */
    justify-content: center !important;
    align-items: center !important;
}

.taoqu-carousel-dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid transparent !important;
    position: relative !important;
}

.taoqu-carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(170, 60, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.taoqu-carousel-dot.taoqu-active {
    background: rgba(170, 60, 255, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 20px rgba(170, 60, 255, 0.6) !important;
}

.taoqu-carousel-dot.taoqu-active::before {
    width: 100%;
    height: 100%;
}

.taoqu-carousel-dot:hover {
    background: rgba(170, 60, 255, 0.6) !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 15px rgba(170, 60, 255, 0.4) !important;
}

/* 页面标题区域 - 增强视觉效果 */
.taoqu-page-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px 0;
    border-bottom: 2px solid rgba(170, 60, 255, 0.3);
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(20, 20, 30, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(170, 60, 255, 0.1) !important;
    /* 移除动画效果 */
}

.taoqu-section-title-group h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 50%, #8e24aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.taoqu-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.taoqu-hidden-text {
    display: none;
}

.taoqu-view-more-link {
    color: #aa3cff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(170, 60, 255, 0.1);
    border: 1px solid rgba(170, 60, 255, 0.3);
    backdrop-filter: blur(10px);
}

.taoqu-view-more-link:hover {
    color: #ff6b9d;
    transform: translateX(5px) scale(1.05);
    background: rgba(170, 60, 255, 0.2);
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.4);
}

/* 标签页样式 - 增强视觉效果 */
.taoqu-release-tabs-wrapper {
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(20, 20, 30, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(170, 60, 255, 0.1) !important;
    /* 移除动画效果 */
}

.taoqu-nav-tabs {
    border: none;
    display: flex;
    gap: 15px;
}

.taoqu-nav-item {
    margin: 0;
}

.taoqu-nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 28px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.taoqu-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.taoqu-nav-link:hover::before {
    left: 100%;
}

.taoqu-nav-link.taoqu-active,
.taoqu-nav-link:hover {
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(170, 60, 255, 0.5),
        0 0 20px rgba(170, 60, 255, 0.3) !important;
}

/* 音乐卡片容器 - 增强视觉效果 */
.taoqu-music-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
    /* 性能优化 */
    will-change: auto;
    contain: layout style;
}

/* 音乐人卡片容器特殊布局 */
.taoqu-container:last-child .taoqu-music-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* 音乐卡片样式 - 性能优化 */
.taoqu-music-card {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.9), rgba(20, 20, 30, 0.95));
    border-radius: 16px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    /* 移除backdrop-filter以提高性能 */
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* 性能优化 */
    will-change: auto;
    contain: layout style;
    transform: translateZ(0);
    /* 防止重绘 */
    backface-visibility: hidden;
    perspective: 1000px;
    max-height: 420px;
}

.taoqu-music-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(170, 60, 255, 0.1) 0%, 
        rgba(255, 107, 157, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  
    /* 性能优化 */
    will-change: opacity;
}

.taoqu-music-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(170, 60, 255, 0.5);
}

.taoqu-music-card:hover::before {
    opacity: 1;
}

/* 編號播放按鈕樣式 */
/* 移除编号相关样式 */

/* 卡片头部（封面区域） - 性能优化 */
.taoqu-card-header {
    position: relative;
    height: 240px;
    overflow: hidden;
    /* 性能优化 */
    contain: layout style;
    border-radius: 16px 16px 0 0;
}

.taoqu-cover-container {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important; /* 確保播放按鈕不被裁剪 */
    pointer-events: auto !important;
}

.taoqu-album-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
    filter: brightness(0.9) contrast(1.1) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    /* 性能優化 */
    will-change: transform;
    transform: translateZ(0);
    /* 防止佈局偏移 */
    background-color: rgba(25, 25, 35, 0.5);
    min-height: 240px;
    /* 確保圖片始終可見 */
    pointer-events: auto !important;
}

.taoqu-music-card:hover .taoqu-album-cover {
    transform: scale(1.08) !important;
    filter: brightness(1.05) contrast(1.15) !important;
}

.taoqu-default-cover {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 3rem !important;
    z-index: 0 !important;
}

.taoqu-default-cover span {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

.taoqu-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* 性能優化 */
    will-change: opacity;
    /* 確保不阻擋播放按鈕 */
    pointer-events: none !important;
    z-index: 1 !important;
}

.taoqu-music-card:hover .taoqu-cover-overlay {
    opacity: 1;
}

.taoqu-play-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #af4cff !important;
    font-size: 22px !important;
    opacity: 0.8 !important; /* 默認稍微透明 */
    transition: all 0.3s ease !important;
    z-index: 10000 !important; /* 最高層級 */
    cursor: pointer !important;
    box-shadow: 0 0 12px rgba(170, 60, 255, 0.8) !important;
    pointer-events: auto !important;
    /* 確保可以點擊 */
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.taoqu-play-button i.flaticon-play-button {
    margin-left: 2px;
    font-size: 22px;
}

.taoqu-music-card:hover .taoqu-play-button {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 0 20px rgba(170, 60, 255, 1) !important;
    z-index: 10000 !important; /* 確保懸停時最高層級 */
}

/* 移除价格标签样式 */

.taoqu-genre-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.9), rgba(170, 60, 255, 0.8));
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    /* 移除backdrop-filter */
    box-shadow: 0 3px 10px rgba(170, 60, 255, 0.4);
}

/* 卡片内容 - 增强视觉效果 */
.taoqu-card-content {
    padding: 15px 12px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.taoqu-music-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    height: 38px;
    max-height: 38px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 20;
}

.taoqu-music-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: 100%;
    text-align: center;
}

.taoqu-music-title a:hover {
    color: #aa3cff;
    text-shadow: 0 0 20px rgba(170, 60, 255, 0.5);
}

.taoqu-full-title-tooltip {
    display: none;
    position: absolute;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.95), rgba(20, 20, 30, 0.98));
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(170, 60, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.taoqu-music-title:hover .taoqu-full-title-tooltip {
    display: block;
}

.taoqu-artist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    z-index: 15;
}

.taoqu-artist-info i {
    color: #aa3cff;
    font-size: 16px;
}

.taoqu-artist-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.taoqu-artist-info a:hover {
    color: #aa3cff;
    text-shadow: 0 0 15px rgba(170, 60, 255, 0.5);
}

.taoqu-music-meta {
    display: flex;
    justify-content: space-between;
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.taoqu-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.taoqu-meta-item i {
    color: #aa3cff;
    font-size: 14px;
}

/* 移除音乐卡片操作按钮 */
.taoqu-music-actions {
    display: none;
}

.taoqu-music-actions a {
    display: none;
}

.taoqu-music-actions a:hover {
    display: none;
}

/* 添加下载按钮样式 */
.taoqu-download-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10000;
    pointer-events: auto;
}

.taoqu-download-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #aa3cff;
    text-decoration: none;
    font-size: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.taoqu-download-button a:hover {
    transform: scale(1.1);
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* 排行榜样式 - 增强视觉效果 */
.taoqu-music-chart-container {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.9), rgba(20, 20, 30, 0.95));
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 60, 255, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(170, 60, 255, 0.2) !important;
    /* 移除动画效果 */
}

.taoqu-music-chart-header {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 100px 100px 120px;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.15), rgba(255, 107, 157, 0.1));
    font-weight: 800;
    color: #ffffff;
    border-bottom: 2px solid rgba(170, 60, 255, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.taoqu-music-chart-row {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 100px 100px 120px;
    gap: 20px;
    padding: 25px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.taoqu-music-chart-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(170, 60, 255, 0.05) 0%, 
        rgba(255, 107, 157, 0.03) 50%, 
        transparent 100%);
        opacity: 0;
    transition: opacity 0.4s ease;
}

.taoqu-music-chart-row:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.taoqu-music-chart-row:hover::before {
        opacity: 1;
}

.taoqu-music-chart-row:last-child {
    border-bottom: none;
}

.taoqu-chart-rank {
    text-align: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.taoqu-chart-rank.taoqu-top-1 {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.taoqu-chart-rank.taoqu-top-2 {
    color: #c0c0c0;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
}

.taoqu-chart-rank.taoqu-top-3 {
    color: #cd7f32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.5);
}

.taoqu-chart-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.taoqu-chart-cover-container {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px !important;
    overflow: visible !important; /* 確保播放按鈕不被裁剪 */
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.9), rgba(20, 20, 30, 0.95)) !important;
    border: 1px solid rgba(170, 60, 255, 0.2) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    pointer-events: auto !important;
}

.taoqu-chart-cover-container .taoqu-default-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.taoqu-chart-cover-container .taoqu-default-cover span {
    font-size: 0.6rem;
    margin-top: 5px;
    opacity: 0.8;
}

.taoqu-chart-album-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    filter: brightness(0.9) contrast(1.1) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    /* 確保圖片始終可見 */
    pointer-events: auto !important;
}

.taoqu-chart-play-button {
    position: absolute !important;
    bottom: 5px !important;
    right: 5px !important;
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(170, 60, 255, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 16px !important;
    opacity: 1 !important; /* 完全可見 */
    transition: all 0.3s ease !important;
    z-index: 9999 !important; /* 最高層級 */
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(170, 60, 255, 0.6) !important;
    pointer-events: auto !important;
    /* 確保可以點擊 */
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

.taoqu-chart-cover-container:hover .taoqu-chart-play-button {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 15px rgba(170, 60, 255, 1) !important;
}

.taoqu-chart-play-button i.flaticon-play-button {
    margin-left: 1px;
}

.taoqu-chart-title-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.taoqu-chart-title-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taoqu-chart-title-link:hover {
    color: #aa3cff;
    text-shadow: 0 0 20px rgba(170, 60, 255, 0.5);
}

.taoqu-chart-artist-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.taoqu-chart-artist-link:hover {
    color: #aa3cff;
    text-shadow: 0 0 15px rgba(170, 60, 255, 0.5);
}

.taoqu-chart-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.taoqu-chart-tag {
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.25), rgba(170, 60, 255, 0.2));
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(170, 60, 255, 0.3);
}

.taoqu-chart-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

.taoqu-chart-price {
    text-align: center;
}

.taoqu-chart-price-value {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.25), rgba(255, 107, 157, 0.2));
    color: #ff6b9d;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.taoqu-chart-action {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.taoqu-chart-action-btn {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.taoqu-chart-action-btn:hover {
    color: #aa3cff;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.15), rgba(170, 60, 255, 0.1));
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(170, 60, 255, 0.3);
}

/* 音乐人卡片样式 - 增强视觉效果 */
.taoqu-artist-card {
    position: relative;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.9), rgba(20, 20, 30, 0.95));
    border-radius: 16px;
    padding: 10px 15px 10px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* 確保藝術家卡片始終可見和可點擊 */
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 5 !important;
    overflow: visible;
}

.taoqu-artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(170, 60, 255, 0.1) 0%, 
        rgba(255, 107, 157, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.taoqu-artist-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(170, 60, 255, 0.3) !important;
    border-color: rgba(170, 60, 255, 0.5);
    cursor: pointer;
}

.taoqu-artist-card:hover .taoqu-artist-actions {
    bottom: 8px;
}

.taoqu-artist-card:hover::before {
    opacity: 1;
}

.taoqu-artist-card:hover .taoqu-artist-name {
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taoqu-artist-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    border: 2px solid rgba(170, 60, 255, 0.3);
    box-shadow: 0 5px 15px rgba(170, 60, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* 確保圖片始終可見 */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 10 !important;
}

.taoqu-artist-default-cover {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    flex-shrink: 0;
}

.taoqu-artist-default-cover span {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

.taoqu-artist-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.taoqu-artist-info {
    padding: 5px 15px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
}

.taoqu-artist-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.25), rgba(170, 60, 255, 0.2));
    color: #aa3cff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(170, 60, 255, 0.3);
    box-shadow: 0 3px 8px rgba(170, 60, 255, 0.3);
}

.taoqu-artist-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #aa3cff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    max-width: 100%;
    /* 確保藝術家名字始終可見 */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 20 !important;
    position: relative;
}

.taoqu-artist-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 5;
}

.taoqu-artist-actions a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.taoqu-artist-actions a:hover {
    color: #aa3cff;
    background: linear-gradient(135deg, rgba(170, 60, 255, 0.15), rgba(170, 60, 255, 0.1));
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(170, 60, 255, 0.3);
    z-index: 10;
}

/* 备用内容样式 - 增强视觉效果 */
.taoqu-fallback-content {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8), rgba(20, 20, 30, 0.9));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(170, 60, 255, 0.1) !important;
}

.taoqu-fallback-content i {
    font-size: 5rem;
    margin-bottom: 25px;
    color: rgba(170, 60, 255, 0.4);
    animation: taoqu-pulse 2s ease-in-out infinite;
}

.taoqu-fallback-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.taoqu-fallback-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* 播放状态样式 - 增强视觉效果 */
/* 当前播放状态 - 完全按照參考文件 */
.taoqu-music-card.taoqu-playing {
    border-color: rgba(170, 60, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(170, 60, 255, 0.4);
    transform: translateY(-5px);
}

.taoqu-music-card.taoqu-playing .taoqu-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background-color: #af4cff;
    color: white;
    box-shadow: 0 0 18px rgba(170, 60, 255, 1);
}

.taoqu-music-card.taoqu-playing .taoqu-cover-overlay {
    opacity: 0.7;
}

.taoqu-music-card.taoqu-playing .taoqu-music-title a {
    color: #af4cff;
    font-weight: bold;
}

@keyframes taoqu-playingGlow {
    0% {
        box-shadow: 0 0 30px rgba(170, 60, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 50px rgba(170, 60, 255, 0.6);
    }
}

.taoqu-music-card.taoqu-playing .taoqu-play-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff7cad 100%);
    animation: taoqu-pulse 2s infinite;
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.6);
}

.taoqu-music-title a.taoqu-playing {
    color: #aa3cff;
    text-shadow: 0 0 20px rgba(170, 60, 255, 0.8);
    animation: taoqu-textGlow 2s ease-in-out infinite alternate !important;
}

@keyframes taoqu-textGlow {
    0% {
        text-shadow: 0 0 5px rgba(170, 60, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 15px rgba(170, 60, 255, 0.8);
    }
}

.taoqu-chart-title-link.taoqu-playing {
    color: #aa3cff !important;
    animation: taoqu-textGlow 2s ease-in-out infinite alternate;
}

@keyframes taoqu-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 157, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0);
    }
}

/* 响应式设计 */
/* 中等屏幕布局 */
@media (min-width: 1200px) and (max-width: 1599px) {
    .taoqu-page-wrapper {
        max-width: 1100px;
        padding: 0 15px;
    }
    
    .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .taoqu-container:last-child .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 20px;
    }
}

/* 大屏幕布局 */
@media (min-width: 1600px) and (max-width: 1919px) {
    .taoqu-page-wrapper {
        max-width: 1400px;
        padding: 0 20px;
    }
    
    .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 22px;
    }
    
    .taoqu-container:last-child .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 22px;
    }
    
    .taoqu-container {
        max-width: 1400px;
    }
}

/* 超大屏幕布局 */
@media (min-width: 1920px) and (max-width: 2559px) {
    .taoqu-page-wrapper {
        max-width: 1600px;
        padding: 0 25px;
    }
    
    .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }
    
    .taoqu-container:last-child .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 24px;
    }
    
    .taoqu-container {
        max-width: 1600px;
    }
}

/* 4K屏幕布局 */
@media (min-width: 2560px) {
    .taoqu-page-wrapper {
        max-width: 1800px;
        padding: 0 30px;
    }
    
    .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 26px;
    }
    
    .taoqu-container:last-child .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 26px;
    }
    
    .taoqu-container {
        max-width: 1800px;
    }
}

/* 平板布局 */
@media (max-width: 768px) {
    .taoqu-page-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .taoqu-carousel {
        height: 400px !important;
        margin: 10px auto 20px auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .taoqu-carousel-content {
        padding: 40px 30px !important;
    }
    
    .taoqu-carousel-title {
        font-size: 2.5rem !important;
    }
    
    .taoqu-carousel-description {
        font-size: 1rem !important;
    }
    
    .taoqu-carousel-btn {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }
    
    .taoqu-carousel-indicators {
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
    
    .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .taoqu-music-chart-header,
    .taoqu-music-chart-row {
        grid-template-columns: 50px 1fr 80px 80px 100px;
        gap: 15px;
        padding: 15px;
    }
    
    .taoqu-chart-tags {
        display: none;
    }
    
    .taoqu-section-title-group h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .taoqu-page-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .taoqu-carousel {
        height: 350px !important;
        margin: 10px auto 20px auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .taoqu-carousel-content {
        padding: 30px 20px !important;
    }
    
    .taoqu-carousel-title {
        font-size: 2rem !important;
    }
    
    .taoqu-carousel-description {
        font-size: 0.9rem !important;
    }
    
    .taoqu-carousel-indicators {
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
    
    .taoqu-music-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .taoqu-music-chart-header,
    .taoqu-music-chart-row {
        grid-template-columns: 40px 1fr 60px 80px;
        gap: 10px;
        padding: 10px;
    }
    
    .taoqu-chart-duration {
        display: none;
    }
    
    .taoqu-section-title-group h2 {
        font-size: 1.5rem;
    }
    
    .taoqu-page-section-title {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
} 