/* 全局变量 */
:root {
    --primary-color: #4a6cf7;
    --primary-hover: #3b5ae0;
    --secondary-color: #6c7ae0;
    --text-color: #333;
    --text-secondary: #666;
    --bg-color: #f5f7fa;
    --card-bg: #ffffff;
    --border-color: #e1e5eb;
    --hover-color: #eef1f8;
    --shadow-light: 0 2px 8px rgba(74, 108, 247, 0.08);
    --shadow-medium: 0 4px 16px rgba(74, 108, 247, 0.12);
    --shadow-heavy: 0 8px 32px rgba(74, 108, 247, 0.16);
    --border-radius: 12px;
    --border-radius-small: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

/* 暗黑模式 */
[data-theme="dark"] {
    --primary-color: #5d7bf9;
    --primary-hover: #4c6ae8;
    --secondary-color: #7d89e4;
    --text-color: #e1e1e1;
    --text-secondary: #a0a0a0;
    --bg-color: #1a1a2e;
    --card-bg: #242442;
    --border-color: #2d2d52;
    --hover-color: #2a2a4a;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全局样式 */
body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--hover-color) 100%);
    color: var(--text-color);
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* 确保body子元素垂直排列，页脚在底部 */
    justify-content: space-between; /* 主要内容推向顶部，页脚推向底部（如果内容不足） */
    align-items: center;
    padding: 20px;
    /* padding-bottom: 60px; */ /* 移除为固定页脚预留空间 */
    line-height: 1.6;
}

/* 加载指示器 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.loading-overlay p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

/* 播放器容器 */
.player-container {
    width: 100%;
    max-width: 1000px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    overflow: hidden; /* 保持 overflow: hidden 以处理圆角和内部元素 */
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    max-height: calc(100vh - 95px); 
}

/* 搜索容器 */
.search-container {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(90deg, var(--card-bg) 0%, var(--hover-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.04);
    border: 1.5px solid var(--border-color);
    transition: box-shadow 0.2s, border-color 0.2s;
}

#search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 15px;
    background: transparent;
    color: var(--text-color);
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    min-width: 0;
}

#search-input:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
    border-color: var(--primary-color);
    background: var(--card-bg);
}

#search-btn {
    padding: 0 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 48px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

#search-btn:hover {
    background: var(--primary-hover);
}

.clear-search-btn {
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--border-radius-small);
    transition: background 0.2s, color 0.2s;
    display: none;
    font-size: 18px;
    z-index: 2;
}

.clear-search-btn.show,
.clear-search-btn[style*="block"] {
    display: block !important;
}

.clear-search-btn:hover {
    background: var(--hover-color);
    color: var(--text-color);
    transform: translateY(-50%); /* 保持垂直居中，覆盖通用按钮的 scale 效果 */
}

.clear-search-btn i {
    transition: color 0.2s;
}

/* 播放器主体 */
.player-main {
    display: flex;
    padding: 32px;
    gap: 32px;
    background: transparent;
    /* min-height: 400px; */ /* 移除固定的最小高度 */
    flex-grow: 1; /* 允许此区域在播放器容器内增长以填充可用空间 */
    min-height: 0; /* 重要：允许flex子项在空间不足时正确缩小 */
    overflow: hidden; /* 防止子元素溢出导致不必要的滚动 */
}

/* 专辑信息区域 */
.album-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 280px;
}

.album-cover {
    position: relative;
    width: 220px;   /* 调整为更适合整体布局的正方形尺寸 */
    height: 220px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 24px;
    border: 2px solid var(--border-color);
    background: var(--hover-color);
    transition: var(--transition);
    aspect-ratio: 1 / 1; /* 保证始终为正方形，兼容性好时可用 */
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* 保证图片为正方形 */
    transition: var(--transition);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.album-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* 歌曲信息 */
.song-info {
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
}

#song-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

#song-artist {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.song-meta {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.separator {
    opacity: 0.5;
}

/* 进度条 */
.progress-container {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding: 8px 0; /* 增加点击区域 */
}

.progress-bar {
    position: relative;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    overflow: visible; /* 允许滑块溢出 */
    transition: var(--transition);
}

.progress-bar:hover {
    height: 8px; /* 悬停时稍微增大 */
    transform: none; /* 移除之前的scaleY变换 */
}

#progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-handle {
    position: absolute;
    top: 50%;
    right: -8px; /* 定位在进度条右端 */
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    cursor: grab;
}

.progress-handle:active {
    cursor: grabbing;
}

.progress-bar:hover .progress-handle,
.progress-container:hover .progress-handle {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Progress Tooltip */
.progress-tooltip {
    position: absolute;
    bottom: 32px; /* 调整位置避免与进度条重叠 */
    left: 0;
    transform: translateX(-50%);
    background-color: var(--text-color);
    color: var(--card-bg);
    padding: 6px 10px;
    border-radius: var(--border-radius-small);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
    pointer-events: none;
    box-shadow: var(--shadow-light);
}

.progress-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--text-color);
}

.progress-container:hover .progress-tooltip {
    opacity: 1;
    visibility: visible;
}


/* 播放列表 */
.playlist-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* max-height: 440px; */ /* 移除固定的最大高度，让其通过flex适应 */
    border-radius: var(--border-radius);
    background: var(--bg-color);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    gap: 12px;
}

.playlist-header h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    flex-shrink: 0;
}

.playlist-controls {
    display: flex;
    gap: 4px; /* 更紧凑 */
    align-items: center;
    margin-left: 12px;
    flex-wrap: wrap; /* 允许换行 */
}

.playlist-controls button {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center; /* 确保图标居中 */
    gap: 4px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0; /* 防止按钮被压缩 */
}

.playlist-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.playlist-controls button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px) scale(1.08);
}

/* 定位按钮特殊状态 */
.playlist-controls button.search-mode {
    background: rgba(255, 255, 255, 0.35);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        background: rgba(255, 255, 255, 0.35); 
    }
    50% { 
        background: rgba(255, 255, 255, 0.5); 
    }
}

.playlist-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
}

#playlist {
    list-style: none;
    overflow-y: auto;
    flex: 1;
    padding: 0;
}

#playlist li {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid transparent;
}

#playlist li:hover {
    background: var(--hover-color);
    transform: translateX(2px);
}

#playlist li.active {
    background: var(--hover-color);
    border-left-color: var(--primary-color);
}

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

.song-title {
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.song-duration {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 40px;
    text-align: right;
}

.playlist-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.playlist-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--border-color);
}

.playlist-empty p {
    margin-bottom: 16px;
    font-size: 16px;
}

.add-music-prompt {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: var(--transition);
}

/* 控制栏 */
.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-top: 1px solid var(--border-color);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.control-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-group.left {
    flex: 1;
    justify-content: flex-start;
}

.control-group.right {
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.main-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 按钮样式 */
button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 18px;
    transition: var(--transition);
    outline: none;
    padding: 8px;
    border-radius: var(--border-radius-small);
}

button:hover {
    background: var(--hover-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

.play-pause-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-light);
    font-size: 24px;
    border: none;
    transition: var(--transition);
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    color: white;
    transform: scale(1.05);
}

/* 音量控制 - 极简美观滑动条 */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 90px;
    margin: 0 4px;
    display: flex;
    align-items: center;
    position: relative;
    height: 18px;
}

.volume-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 4px rgba(74, 108, 247, 0.06);
    display: flex;
    align-items: center;
}

/* 隐藏音量滑块小圆圈 */
.volume-handle {
    display: none !important;
}

#volume-level {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 100%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.volume-btn {
    min-width: 32px;
    min-height: 32px;
    background: none;
    border: none;
    color: var(--text-color);
    padding: 0;
    font-size: 20px;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
}

.volume-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.volume-btn:hover {
    background: var(--hover-color);
    color: var(--primary-color);
}

/* 新增音量调节按钮样式 */
.volume-adjust-btn {
    min-width: 28px; /* 调整大小以适应布局 */
    min-height: 28px;
    padding: 0;
    font-size: 14px; /* 调整图标大小 */
    margin: 0 2px; /* 添加一些间距 */
}

/* 移动端控制按钮区域 */
.mobile-controls {
    display: none; /* 默认隐藏，只在移动端显示 */
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mobile-control-btn {
    min-width: 44px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.mobile-control-btn:hover,
.mobile-control-btn:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
}

.mobile-play-pause-btn {
    min-width: 56px;
    min-height: 56px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-light);
}

.mobile-play-pause-btn:hover,
.mobile-play-pause-btn:active {
    background: white;
    transform: scale(0.95);
}

.mobile-volume-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.mobile-volume-controls .mobile-control-btn {
    min-width: 36px;
    min-height: 36px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
}

/* 响应式布局优化 */
@media (max-width: 768px) {
    body {
        padding: 8px; /* 调整body内边距 */
        /* padding-bottom: 50px; */ /* 移除，因为页脚不再固定 */
    }

    .player-container {
        max-width: 100vw; /* 容器占满视口宽度 */
        border-radius: 0; /* 移除圆角，实现边缘到边缘的效果 */
        box-shadow: none; /* 移除阴影 */
        border: none; /* 秮除边框 */
        max-height: none; /* 在移动端移除最大高度限制，让其自然流动 */
    }

    .search-container {
        padding: 12px 16px; /* 调整搜索容器内边距 */
    }
    
    .player-main {
        flex-direction: column; /* 主内容区域垂直排列 */
        gap: 16px; /* 调整元素间距 */
        padding: 16px 12px; /* 调整主内容区域内边距 */
        min-height: auto; /* 移除最小高度限制 */
    }
    
    .album-section {
        min-width: auto;
        width: 100%;
        padding-bottom: 16px; /* 调整专辑区域底部内边距 */
        display: flex;
        flex-direction: column;
        align-items: center; /* 确保专辑区域内容居中 */
        justify-content: center;
    }

    .album-cover {
        width: 140px;
        height: 140px;
        aspect-ratio: 1 / 1;
        margin-bottom: 16px;
        margin-left: auto; /* 确保专辑封面居中 */
        margin-right: auto;
    }

    .song-info {
        margin-bottom: 16px; /* 调整歌曲信息下方外边距 */
    }

    #song-title {
        font-size: 20px; /* 调整歌曲标题字号 */
    }

    #song-artist {
        font-size: 14px; /* 调整歌手名字号 */
    }
    
    .playlist-container {
        /* max-height: 250px; */ /* 此处也移除，让flex控制 */
        min-height: 150px; /* 保留一个合理的最小高度 */
        border-radius: var(--border-radius-small); /* 为播放列表添加小圆角 */
        margin-bottom: 12px; /* 调整播放列表下方外边距 */
        flex-grow: 1; /* 确保在移动端垂直布局时也能正确分配空间 */
    }

    .playlist-header {
        padding: 12px 16px;
        flex-wrap: wrap; /* 允许标题和控制按钮换行 */
        gap: 8px; /* 添加换行时的间距 */
    }

    .playlist-header h2 {
        font-size: 16px;
        flex: 1; /* 标题优先占用空间 */
        min-width: 120px; /* 最小宽度确保标题可读 */
    }
    
    .playlist-controls {
        margin-left: 0; /* 移除左边距 */
        gap: 6px; /* 稍微增加按钮间距 */
        flex: 0 0 auto; /* 控制按钮组不伸缩 */
        justify-content: flex-end; /* 右对齐 */
    }

    .playlist-controls button {
        min-width: 30px; /* 减小最小宽度 */
        min-height: 30px;
        font-size: 14px;
        padding: 5px 8px;
    }
    
    .controls {
        flex-wrap: wrap;
        gap: 12px; /* 调整控制按钮组间距 */
        padding: 12px 16px; /* 调整控制栏内边距 */
    }

    .progress-container {
        padding: 12px 0; /* 移动端增大触摸区域 */
        margin-bottom: 16px;
    }
    
    .progress-bar {
        height: 8px; /* 移动端默认更粗 */
    }
    
    .progress-bar:hover {
        height: 8px; /* 移动端保持一致 */
    }
    
    .progress-handle {
        width: 20px; /* 移动端更大的滑块 */
        height: 20px;
        right: -10px;
    }
    
    .progress-tooltip {
        bottom: 40px;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    /* 显示移动端控制按钮 */
    .mobile-controls {
        display: block;
    }
    
    /* 隐藏底部控制栏 */
    .controls {
        display: none;
    }
    
    .playlist-container {
        /* max-height: 250px; */ /* 此处也移除，让flex控制 */
        min-height: 150px; /* 保留一个合理的最小高度 */
        border-radius: var(--border-radius-small); /* 为播放列表添加小圆角 */
        margin-bottom: 12px; /* 调整播放列表下方外边距 */
        flex-grow: 1; /* 确保在移动端垂直布局时也能正确分配空间 */
    }

    .playlist-header {
        padding: 12px 16px;
        flex-wrap: wrap; /* 允许标题和控制按钮换行 */
        gap: 8px; /* 添加换行时的间距 */
    }

    .playlist-header h2 {
        font-size: 16px;
        flex: 1; /* 标题优先占用空间 */
        min-width: 120px; /* 最小宽度确保标题可读 */
    }
    
    .playlist-controls {
        margin-left: 0; /* 移除左边距 */
        gap: 6px; /* 稍微增加按钮间距 */
        flex: 0 0 auto; /* 控制按钮组不伸缩 */
        justify-content: flex-end; /* 右对齐 */
    }

    .playlist-controls button {
        min-width: 30px; /* 减小最小宽度 */
        min-height: 30px;
        font-size: 14px;
        padding: 5px 8px;
    }
    
    .controls {
        flex-wrap: wrap;
        gap: 12px; /* 调整控制按钮组间距 */
        padding: 12px 16px; /* 调整控制栏内边距 */
    }

    /* 移动端控制按钮优化 */
    .mobile-controls {
        padding: 12px 16px;
    }
    
    .mobile-main-controls {
        gap: 12px;
    }
    
    .mobile-control-btn {
        min-width: 40px;
        min-height: 40px;
        font-size: 16px;
    }
    
    .mobile-play-pause-btn {
        min-width: 48px;
        min-height: 48px;
        font-size: 20px;
    }
    
    .mobile-volume-controls {
        gap: 6px;
        padding: 6px 10px;
    }
    
    .mobile-volume-controls .mobile-control-btn {
        min-width: 32px;
        min-height: 32px;
        font-size: 12px;
    }
    
    .playlist-empty {
        padding: 24px 12px; /* 调整空播放列表提示内边距 */
    }
    .playlist-empty i {
        font-size: 40px; /* 调整空播放列表图标大小 */
    }
    .playlist-empty p {
        font-size: 14px; /* 调整空播放列表文字大小 */
    }
}

@media (max-width: 480px) {
    body {
        padding: 4px; /* 进一步减小body内边距 */
        /* padding-bottom: 45px; */ /* 移除 */
    }

    .search-container {
        padding: 10px 12px; /* 进一步调整搜索容器内边距 */
    }
    
    .search-input-wrapper {
        max-width: 100%; /* 搜索框占满可用宽度 */
        border-radius: var(--border-radius-small); /* 统一使用小圆角 */
    }
    
    #search-input {
        font-size: 14px; /* 防止iOS缩放，同时调整字号 */
        padding: 10px 12px; /* 调整搜索输入框内边距 */
    }

    #search-btn {
        min-width: 40px; /* 调整搜索按钮大小 */
        height: 38px;
        font-size: 16px;
    }

    .clear-search-btn {
        right: 48px; /* 调整清除搜索按钮位置 */
        font-size: 16px;
    }
    
    .player-main {
        padding: 12px 8px; /* 进一步调整主内容区域内边距 */
        gap: 12px;
    }
    
    .album-cover {
        width: 90px;
        height: 90px;
        aspect-ratio: 1 / 1;
        margin-bottom: 12px;
        margin-left: auto; /* 确保居中 */
        margin-right: auto;
    }

    #song-title {
        font-size: 18px; /* 进一步调整歌曲标题字号 */
    }

    #song-artist {
        font-size: 13px; /* 进一步调整歌手名字号 */
    }

    .progress-container {
        padding: 16px 0; /* 小屏幕进一步增大触摸区域 */
        margin-bottom: 12px;
    }
    
    .progress-bar {
        height: 10px; /* 小屏幕更粗的进度条便于操作 */
    }
    
    .progress-handle {
        width: 24px; /* 小屏幕更大的滑块 */
        height: 24px;
        right: -12px;
    }
    
    .progress-tooltip {
        bottom: 45px;
        font-size: 16px;
        padding: 10px 14px;
    }
    
    .album-section {
        display: flex;
        flex-direction: column;
        align-items: center; /* 强制居中对齐 */
        justify-content: center;
        text-align: center; /* 文本也居中 */
    }
    
    .playlist-container {
        /* max-height: 200px; */ /* 此处也移除 */
        min-height: 100px; /* 保留一个合理的最小高度 */
        flex-grow: 1;
    }

    .playlist-header {
        padding: 10px 12px;
        flex-direction: column; /* 小屏幕垂直布局 */
        align-items: stretch; /* 拉伸对齐 */
        gap: 8px;
    }

    .playlist-header h2 {
        font-size: 15px;
        text-align: center; /* 标题居中 */
        margin-bottom: 4px;
    }
    
    .playlist-controls {
        justify-content: center; /* 按钮组居中 */
        gap: 8px; /* 增加按钮间距便于触摸 */
        margin: 0; /* 重置边距 */
    }
    
    .playlist-controls button {
        min-width: 36px; /* 增大触摸目标 */
        min-height: 36px;
        font-size: 14px;
        padding: 8px;
        border-radius: 8px; /* 增大圆角 */
    }

    /* 优化主控制按钮区域 */
    .main-controls {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 12px; /* 增加与下方的间距 */
        gap: 16px; /* 增加按钮间距 */
    }
    
    .control-group.left,
    .control-group.right {
        flex: 0 0 auto;
        gap: 12px; /* 增加控制组内部按钮间距 */
    }
    
    /* 确保所有控制按钮都有足够的触摸目标 */
    .controls button {
        min-width: 44px; /* iOS推荐的最小触摸目标 */
        min-height: 44px;
        padding: 10px;
        font-size: 18px;
    }
    
    .play-pause-btn {
        width: 50px; /* 主播放按钮更大 */
        height: 50px;
        font-size: 20px;
    }

    .volume-btn {
        min-width: 40px;
        min-height: 40px;
        font-size: 18px;
    }

    .control-group.right .volume-adjust-btn {
        display: inline-flex !important;
        min-width: 40px;
        min-height: 40px;
        font-size: 18px;
        padding: 8px;
        border-radius: 8px; /* 增大圆角便于视觉识别 */
    }
    
    .floating-buttons {
        bottom: 12px;
        right: 12px;
        gap: 10px;
        flex-direction: row; /* 小屏幕改为水平布局 */
    }

    .theme-toggle,
    .fullscreen-btn {
        width: 44px; /* 增大触摸目标 */
        height: 44px;
        font-size: 18px;
    }

    .playlist-empty {
        padding: 24px 12px; /* 调整空播放列表提示内边距 */
    }
    .playlist-empty i {
        font-size: 40px; /* 调整空播放列表图标大小 */
    }
    .playlist-empty p {
        font-size: 14px; /* 调整空播放列表文字大小 */
    }
}

/* 新增：触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    /* 针对触摸设备的特殊优化 */
    button {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }
    
    .playlist-controls button {
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
        gap: 2px;
    }
    
    /* 增强按钮反馈 */
    button:active {
        transform: scale(0.92);
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    .playlist-controls button:active {
        background: rgba(255, 255, 255, 0.4) !important;
        transform: scale(0.92);
    }
    
    .play-pause-btn:active {
        transform: scale(0.95);
    }
    
    /* 移动端控制按钮触摸反馈 */
    .mobile-control-btn:active {
        transform: scale(0.92);
        background: rgba(255, 255, 255, 0.35) !important;
    }
    
    .mobile-play-pause-btn:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.95) !important;
    }
}

/* 超小屏幕（宽度小于360px）的特殊优化 */
@media (max-width: 360px) {
    .playlist-header {
        padding: 8px 10px;
    }
    
    .playlist-controls {
        gap: 6px;
    }
    
    .playlist-controls button {
        min-width: 32px;
        min-height: 32px;
        font-size: 13px;
        padding: 6px;
    }
    
    .controls {
        padding: 8px 10px;
        gap: 8px;
    }
    
    .control-group.left,
    .control-group.right {
        gap: 8px;
    }
    
    .main-controls {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .play-pause-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .controls button {
        min-width: 40px;
        min-height: 40px;
        font-size: 16px;
    }
}

/* 音量控制 - 移动端优化：显示加减按钮，隐藏滑动条和百分比 */
/* 这些规则已包含在上面的 768px 和 480px 媒体查询中，此处可视为冗余或确认 */
/* @media (max-width: 768px) { */
/* .control-group.right .volume-slider, */
/* .control-group.right .volume-text { */
/* display: none; */
/* } */
/* .control-group.right .volume-adjust-btn { */
/* display: inline-flex !important; */
/* } */
/* } */

/* @media (max-width: 480px) { */
/* .control-group.right .volume-slider, */
/* .control-group.right .volume-text { */
/* display: none; */
/* } */
/* .control-group.right .volume-adjust-btn { */
/* display: inline-flex !important; */
/* } */
/* } */

/* 修复loading动画性能 */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-spinner {
    will-change: transform;
}

/* 修复进度条交互 */
.progress-bar,
.volume-bar {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.progress-bar:active .progress-handle {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

/* 修复浮动按钮层级 */
.floating-buttons {
    z-index: 999;
}

/* 修复主题切换动画 */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* 修复文本选择 */
.song-title,
.song-artist {
    user-select: none;
}

#search-input {
    user-select: text;
}

#playlist li.locate-highlight {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateX(4px) !important;
    box-shadow: var(--shadow-medium);
    animation: locateHighlight 2s ease-out;
}

#playlist li.locate-highlight .song-title,
#playlist li.locate-highlight .song-artist,
#playlist li.locate-highlight .song-duration {
    color: white !important;
}

@keyframes locateHighlight {
    0% {
        background: var(--primary-color);
        transform: translateX(4px) scale(1.02);
    }
    50% {
        background: var(--secondary-color);
        transform: translateX(6px) scale(1.02);
    }
    100% {
        background: var(--primary-color);
        transform: translateX(4px) scale(1);
    }
}

/* 搜索建议框修复 */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.04);
    border: 1.5px solid var(--border-color);
    transition: box-shadow 0.2s, border-color 0.2s;
}

#search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--hover-color);
}

.suggestion-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.suggestion-title {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

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

/* 搜索高亮优化 */
mark {
    background: var(--primary-color);
    color: white;
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: 500;
}

/* 暗黑模式搜索建议 */
[data-theme="dark"] #search-suggestions {
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .suggestion-item:hover {
    background: var(--hover-color);
}

[data-theme="dark"] mark {
    background: var(--primary-color);
    color: var(--card-bg);
}

