/* ========================================
   小蜜蜂音乐 - 首页样式 (清新明亮版)
   ======================================== */

/* 首页第一屏 - 精选歌单 + 热门榜单 */
.featured-section {
    margin-bottom: 48px;
    padding: 24px 0;
}

.featured-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* 区块头部 */
.block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.block-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.block-more {
    font-size: 13px;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.block-more:hover {
    color: var(--primary-color);
}

/* 精选歌单 - 混合布局 */
.playlist-mixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* 大卡片 */
.playlist-large {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.playlist-cover-large {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 8px;
    flex: 1;
    pointer-events: none;
}

.playlist-large .playlist-cover-large img,
.playlist-large .play-count {
    pointer-events: auto;
}

.playlist-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.playlist-large:hover .playlist-cover-large img {
    transform: scale(1.03);
}

.play-count {
    height: 20px;
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 3px 8px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 11px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 3px;
}

.playlist-name {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 小卡片网格 */
.playlist-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: space-between;
}

.playlist-small {
    text-decoration: none;
    color: inherit;
    display: block;
}

.playlist-small {
    cursor: pointer;
}

.playlist-cover-small {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 6px;
    pointer-events: none;
}

.playlist-small .playlist-cover-small img,
.playlist-small .play-count-small {
    pointer-events: auto;
}

.playlist-cover-small img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.playlist-small:hover .playlist-cover-small img {
    transform: scale(1.03);
}

.play-count-small {
    position: absolute;
    bottom: 4px;
    right: 4px;
    padding: 2px 5px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 2px;
}

.playlist-name-small {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 热门歌曲列表 */
.hot-songs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-song-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.hot-song-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.hot-song-num {
    width: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.hot-song-item:nth-child(1) .hot-song-num { color: #FF6B6B; }
.hot-song-item:nth-child(2) .hot-song-num { color: #4ECDC4; }
.hot-song-item:nth-child(3) .hot-song-num { color: #45B7D1; }
.hot-song-item:nth-child(4) .hot-song-num { color: #96CEB4; }

.hot-song-cover {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.hot-song-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-song-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.hot-song-item:hover .hot-song-play {
    opacity: 1;
}

.hot-song-info {
    flex: 1;
    min-width: 0;
}

.hot-song-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-song-singer {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 音波动画 */
.hot-song-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    margin-left: auto;
    padding-left: 8px;
}

.hot-song-wave span {
    width: 3px;
    background: linear-gradient(to top, var(--primary-color), #2dd4a8);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.hot-song-wave span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.hot-song-wave span:nth-child(2) {
    height: 14px;
    animation-delay: 0.2s;
}

.hot-song-wave span:nth-child(3) {
    height: 10px;
    animation-delay: 0.4s;
}

.hot-song-wave span:nth-child(4) {
    height: 16px;
    animation-delay: 0.1s;
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(0.6);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* 悬停时动画加速 */
.hot-song-item:hover .hot-song-wave span {
    animation-duration: 0.6s;
}

/* 歌单网格 - 卡片式，带阴影 */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.playlist-card {
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-sm);
}

.playlist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.playlist-cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}

.playlist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.playlist-card:hover .playlist-cover img {
    transform: scale(1.05);
}

.play-count {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(61, 50, 41, 0.8);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: white;
    font-weight: 500;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 212, 160, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.playlist-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.playlist-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 歌曲列表 - 更轻盈 */
.song-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
}

.song-item:hover {
    background: var(--bg-hover);
    border-color: var(--border-color);
    transform: translateX(4px);
}

.song-item .song-num {
    width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-tertiary);
}

.song-item:nth-child(1) .song-num { color: #FF6B6B; }
.song-item:nth-child(2) .song-num { color: #4ECDC4; }
.song-item:nth-child(3) .song-num { color: #45B7D1; }

.song-item .song-cover-sm {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-right: 16px;
}

.song-item .song-cover-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-item .song-detail {
    flex: 1;
    min-width: 0;
}

.song-item .song-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-item .song-meta {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.song-item .song-album {
    width: 200px;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-item .song-duration {
    width: 60px;
    text-align: right;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* 歌手网格 - 圆形卡片 */
.singer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.singer-card {
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 16px;
    border-radius: var(--radius-lg);
}

.singer-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.singer-avatar {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
    border: 3px solid var(--border-light);
    transition: all var(--transition-fast);
}

.singer-card:hover .singer-avatar {
    border-color: var(--primary-color);
}

.singer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.singer-card:hover .singer-avatar img {
    transform: scale(1.05);
}

.singer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* 广告位 - 清新渐变 */
.ad-section {
    margin: 48px 0;
}

.ad-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ad-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-label {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    background: rgba(61, 50, 41, 0.7);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: white;
}

.ad-content {
    height: 120px;
    border-radius: 15px;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background: linear-gradient(135deg, rgba(216, 255, 243, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
}

.ad-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white ;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ad-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

.ad-btn {
    width: fit-content;
    padding: 12px 32px;
    background: white;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ad-btn:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-2px);
}

/* 顶部横幅广告 */
.ad-banner-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2dd4a8 50%, #14b8a6 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(45, 212, 160, 0.3);
    margin-bottom: 32px;
}

.ad-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ad-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    color: white;
    width: fit-content;
}

.ad-left h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.ad-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.ad-action-btn {
    padding: 12px 28px;
    background: white;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ad-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 侧边悬浮广告 */
.side-ad {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.side-ad-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    width: 160px;
    transition: all 0.3s ease;
}

.side-ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.side-ad-card img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin: 8px 0;
}

.side-ad-info {
    text-align: center;
    margin-bottom: 12px;
}

.side-ad-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 4px 0;
}

.side-ad-info p {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
}

.side-ad-btn {
    width: 100%;
    padding: 8px 0;
    background: linear-gradient(135deg, var(--primary-color), #2dd4a8);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-ad-btn:hover {
    transform: scale(1.05);
}

/* 中部横幅广告 */
.ad-banner-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ad-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background: linear-gradient(135deg, rgba(45, 212, 160, 0.95) 0%, rgba(34, 184, 138, 0.85) 50%, transparent 100%);
}

.ad-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ad-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

/* 底部广告 */
.ad-section-bottom {
    margin: 48px 0;
}

.ad-banner-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ad-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ad-icon {
    font-size: 32px;
}

.ad-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-message {
    text-align: center;
}

.ad-message h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 6px 0;
}

.ad-message p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.download-btn {
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-color), #2dd4a8);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 212, 160, 0.4);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 212, 160, 0.5);
}

/* 左侧下方广告 */
.playlist-ad {
    margin-top: 16px;
}

.ad-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.ad-card:hover {
    box-shadow: var(--shadow-lg);
}

.ad-card .ad-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.ad-image-wrapper {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.ad-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-card:hover .ad-image-wrapper img {
    transform: scale(1.05);
}

.ad-text {
    padding: 16px;
}

.ad-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.ad-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.ad-cta {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color), #2dd4a8);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 212, 160, 0.4);
}

/* 右侧中间广告 */
.ranking-ad {
    margin-top: 16px;
}

.ad-card-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.ad-card-vertical:hover {
    box-shadow: var(--shadow-lg);
}

.ad-card-vertical .ad-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}

.ad-card-vertical img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-card-vertical:hover img {
    transform: scale(1.05);
}

.ad-card-vertical .ad-content {
    padding: 12px;
}

.ad-card-vertical .ad-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.ad-card-vertical .ad-content p {
    font-size: 12px;
    color: #fff;
    margin: 0 0 10px 0;
}

.ad-action {
    width: 100%;
    padding: 8px;
    background: rgba(45, 212, 160, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-action:hover {
    background: var(--primary-color);
    color: white;
}

/* 全局广告容器 - 左右分布 */
.global-ads-container {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.global-ads-container > div {
    pointer-events: auto;
}

/* 左侧广告 */
.global-ads-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ad-left-1 {
    width: 160px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.ad-left-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.ad-left-1 .ad-image-wrap {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.ad-left-1 .ad-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-left-1 .ad-text-content {
    padding: 10px 12px;
    background: var(--bg-card);
}

.ad-left-1 .ad-text-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.ad-left-1 .ad-text-content p {
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0;
}

.ad-left-2 {
    width: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.ad-left-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.ad-left-2 .ad-image-wrap-small {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.ad-left-2 .ad-image-wrap-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-left-2 .ad-text-content-small {
    flex: 1;
    min-width: 0;
}

.ad-left-2 .ad-text-content-small h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-left-2 .ad-text-content-small p {
    font-size: 10px;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右侧广告 - 三个不同高度 */
.global-ads-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ad-card-right {
    width: 140px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.ad-card-right:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* 右侧广告不同高度 */
.ad-right-1 {
    height: 130px;
}

.ad-right-2 {
    height: 110px;
}

.ad-right-3 {
    height: 100px;
}

.ad-card-right .ad-image-wrap-right {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden;
}

.ad-right-2 .ad-image-wrap-right {
    height: 60%;
}

.ad-right-3 .ad-image-wrap-right {
    height: 55%;
}

.ad-card-right .ad-image-wrap-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-card-right .ad-text-content-right {
    padding: 8px 10px;
    background: var(--bg-card);
}

.ad-card-right .ad-text-content-right h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-card-right .ad-text-content-right p {
    font-size: 10px;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 广告标签 */
.ad-left-1 .ad-image-wrap .ad-tag,
.ad-left-2 .ad-image-wrap-small .ad-tag-small,
.ad-card-right .ad-image-wrap-right .ad-tag {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 2px 6px;
    background: rgba(61, 50, 41, 0.7);
    border-radius: var(--radius-sm);
    font-size: 9px;
    color: white;
    z-index: 1;
}

.ad-left-2 .ad-image-wrap-small .ad-tag-small {
    font-size: 8px;
    padding: 1px 4px;
}

/* 响应式 - 小屏幕隐藏 */
@media (max-width: 1024px) {
    .global-ads-container {
        display: none;
    }
}

/* 专辑网格 - 卡片式 */
.album-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.album-card {
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-sm);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.album-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-artist {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .playlist-grid,
    .album-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .singer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .banner-slider {
        height: 300px;
    }
    
    .banner-info h2 {
        font-size: 28px;
    }
    
    .playlist-grid,
    .album-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .singer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* VIP 标识样式 */
.song-vip {
    display: inline-block;
    padding: 2px 6px;
    background: var(--vip-color);
    color: #3D3229;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-left: 6px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .banner-slider {
        height: 200px;
    }
    
    .banner-info {
        padding: 40px 20px 20px;
    }
    
    .banner-info h2 {
        font-size: 20px;
    }
    
    .banner-info p {
        font-size: 13px;
    }
    
    .playlist-grid,
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .singer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .song-item .song-album {
        display: none;
    }
    
    .ad-content {
        padding: 0 24px;
    }
    
    .ad-content h3 {
        font-size: 20px;
    }
    
    .ad-content p {
        font-size: 13px;
    }
}
