/*
Theme Name: 极简音乐播放器
Theme URI: https://example.com/
Author: 极简开发
Author URI: https://example.com/
Description: 简洁风 WordPress 音乐播放器主题
Version: 1.0
License: GPL2
Text Domain: simple-music
*/

/* ========== 全局重置 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
body {
  background: #f8f9fa;
  color: #222;
  padding-bottom: 120px; /* 给播放器留位置 */
}
a {
  text-decoration: none;
  color: #222;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* ========== 顶部标题 ========== */
.music-header {
  text-align: center;
  padding: 40px 20px;
  font-size: 22px;
  font-weight: bold;
  color: #111;
}

/* ========== 音乐列表 ========== */
.music-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.music-item {
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.2s;
}
.music-item:hover {
  background: #f1f3f5;
}
.music-title {
  font-size: 16px;
  font-weight: 500;
}
.music-desc {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

/* ========== 底部固定播放器 ========== */
.music-player-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 15px 20px;
  z-index: 999;
}
.music-player-fixed audio {
  width: 100%;
  outline: none;
}