@charset "UTF-8";

/* 基础样式 */
/* 默认深色主题 */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'PingFang SC', 'RobotoDraft', 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', 'STHeiti', '华文黑体', 'Microsoft YaHei', '微软雅黑', sans-serif;
    color: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    overflow: hidden;
    position: relative;
    /* 添加背景动画效果 */
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    transition: background 0.5s ease, color 0.5s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 动态背景粒子效果 */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000%) translateX(1000%) rotate(720deg);
        opacity: 0;
    }
}

p {
    margin: 50;
}

a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

/* 自定义光标 */
body, li, span, p {
    cursor: url(https://cdn.jsdelivr.net/gh/honjun/cdn@1.6/img/cursor/texto.cur), auto;
}

a {
    cursor: url(https://cdn.jsdelivr.net/gh/honjun/cdn@1.6/img/cursor/ayuda.cur), auto;
}

/* 内容容器 */
.content-container {
    position: relative;
    text-align: center;
    background: rgba(30, 30, 46, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
    width: 600px;
    /* 添加装饰性元素 */
    overflow: hidden;
    /* 添加入场动画 */
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    animation: containerEnter 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
    transition: background 0.5s ease, border 0.5s ease, box-shadow 0.5s ease;
}

/* 内容容器入场动画 */
@keyframes containerEnter {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 内容容器装饰性光芒效果 */
.content-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
    animation: shine 6s infinite linear;
}

@keyframes shine {
    0% { transform: rotate(30deg) translate(-10%, -10%); }
    100% { transform: rotate(30deg) translate(10%, 10%); }
}

/* 标题区域 */
.content-container h1 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    font-weight: 300;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
    color: #f8f8f8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    /* 添加发光效果 */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    /* 添加打字机效果 */
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #ffd166;
    animation: typing 2s steps(40, end), blink-caret 0.75s step-end infinite;
    animation-fill-mode: both;
}

/* 打字机效果 */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* 光标闪烁效果 */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ffd166; }
}

.content-container h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd166, transparent);
    border-radius: 2px;
    /* 添加动画效果 */
    animation: expandLine 1s ease-out 0.8s forwards;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
}

@keyframes expandLine {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

.content-container h1.ready {
    opacity: 1;
    transform: translateY(0);
}

.content-container h1 a {
    color: #f8f8f8;
    transition: all 0.3s ease;
}

.content-container h1 a:hover {
    color: #ffd166;
    text-shadow: 0 0 25px rgba(255, 209, 102, 0.8);
}

/* 个人简介文本 */
.bio {
    color: rgba(230, 230, 230, 0.95);
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    min-height: 60px;
    transition: color 0.5s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 个人简介文本动画 */
.bio > span {
    font-weight: 300;
    letter-spacing: 1.4px;
    opacity: 0;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 5px;
    display: inline-block;
    transform: translateY(20px) scale(0.8);
}

/* 弹入动画 */
@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bio > span.emphasis {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #ffd166;
    font-weight: 400;
    /* 添加发光效果 */
    text-shadow: 0 0 15px rgba(255, 209, 102, 0.7);
    /* 添加脉冲动画 */
    animation: emphasisPulse 2s infinite;
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

/* 强调文本脉冲效果 */
@keyframes emphasisPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}

.bio.ready > span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 导航链接列表 */
.content-container .intro-list {
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 30px 0;
    gap: 15px;
    /* 添加容器入场动画 */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.content-container .intro-list li {
    list-style: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    flex: 1 1 120px;
    max-width: 150px;
    min-width: 120px;
    /* 添加悬停动画效果 */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* 添加浮动动画 */
    animation: floatItem 3s ease-in-out infinite;
}

/* 浮动动画 */
@keyframes floatItem {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.content-container .intro-list li.ready {
    opacity: 1;
    transform: translateY(0);
}

.content-container .intro-list li a {
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 12px 20px;
    background: rgba(40, 40, 60, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* 添加内阴影效果 */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    /* 添加光泽效果 */
    background: linear-gradient(135deg, rgba(60, 60, 90, 0.3) 0%, rgba(40, 40, 60, 0.2) 100%);
}

.content-container .intro-list li a:hover {
    background: rgba(60, 60, 90, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    color: #ffd166;
    /* 添加脉冲效果 */
    animation: pulse 2s infinite;
    /* 停止浮动动画 */
    animation: none;
}

.content-container .intro-list li a:active {
    transform: translateY(-1px);
}

/* 添加链接图标效果 */
.content-container .intro-list li a::before {
    content: '↗';
    margin-right: 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.content-container .intro-list li a:hover::before {
    opacity: 1;
    transform: translateX(2px);
    color: #ffd166;
}

/* 脉冲动画 */
@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
}

/* 音乐按钮特殊样式 */
.content-container .intro-list li:last-child a {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-container .intro-list li:last-child a:hover {
    background: linear-gradient(45deg, #ff5252, #ff9f1a);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
    color: white;
}

/* 简约音乐播放器样式 */
#simple-music-player {
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    position: fixed;
    left: 20px;
    bottom: 20px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* 添加渐变边框效果 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) padding-box, 
                linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) border-box;
    border: 1px solid transparent;
}

@media (max-width: 768px) {
    #simple-music-player {
        width: 180px;
        left: 15px;
        bottom: 80px; /* 抬高一点避免与页脚冲突 */
    }
}

@media (max-width: 480px) {
    #simple-music-player {
        width: 160px;
        left: 10px;
        bottom: 100px; /* 在小屏幕上进一步抬高 */
    }
}

.player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

#simple-player-cover {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    user-drag: none;
    -webkit-user-drag: none;
    object-fit: cover;
    /* 添加封面阴影效果 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    /* 添加旋转动画 */
    animation: rotateAlbum 10s linear infinite;
    animation-play-state: paused;
}

#simple-player-cover:hover {
    transform: scale(1.05);
}

/* 专辑封面旋转动画 */
@keyframes rotateAlbum {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.song-info {
    flex: 1;
    min-width: 0;
}

#simple-player-song-title {
    font-size: 14px;
    color: white;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

#simple-player-song-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#simple-player-play-pause-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzJjM2U1MCI+PHBhdGggZD0iTTggNXYxNGwxMS03eiIvPjwvc3ZnPg==') center center / 16px 16px no-repeat;
    cursor: pointer;
    flex-shrink: 0;
    /* 添加按钮悬停效果 */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* 确保图标垂直居中 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 添加背景色使按钮更明显 */
    background-color: rgba(255, 255, 255, 0.1);
    /* 精确调整图标位置 */
    background-position: center center;
    background-repeat: no-repeat;
    /* 微调内边距 */
    padding: 0;
    margin: 0;
    /* 强制硬件加速以避免渲染问题 */
    transform: translateZ(0);
    will-change: background-position;
    /* 确保内容不溢出 */
    overflow: hidden;
    /* 添加抗锯齿 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* 确保背景尺寸正确 */
    background-size: 16px 16px;
}

#simple-player-play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
}

#simple-player-progress-bar {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    /* 添加进度条悬停效果 */
    transition: height 0.2s ease;
}

#simple-player-progress-bar:hover {
    height: 6px;
}

#simple-player-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s;
    /* 添加进度条发光效果 */
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* 底部链接样式 */
b {
    -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
    border-bottom: dotted 1px rgba(224, 224, 224, 0.5);
    text-decoration: none;
    color: rgba(224, 224, 224, 0.8);
}

b:hover {
    border-bottom-color: transparent;
    color: #ffd166;
}

/* 页脚 */
#footer {
    -moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
    -webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
    -ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
    transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
    width: 100%;
    max-width: 100%;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

#footer .copyright {
    letter-spacing: 0.2rem;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-bottom: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* 主题切换按钮 */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle svg path,
.theme-toggle svg line,
.theme-toggle svg circle {
    stroke: white;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

/* 社交媒体图标 */
.social-links {
    margin: 15px 0;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffeb3b;
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-container {
        padding: 30px 20px;
        width: 90%;
        margin: 0 5%;
    }
    
    .content-container h1 {
        font-size: 2.5rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    
    .content-container .intro-list {
        gap: 10px;
    }
    
    .content-container .intro-list li {
        min-width: 100px;
        max-width: 120px;
    }
    
    .content-container .intro-list li a {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 20px 15px;
    }
    
    .content-container h1 {
        font-size: 2rem;
    }
    
    .bio {
        font-size: 0.9rem;
    }
    
    .content-container .intro-list {
        gap: 5px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 25px;
    }
    
    .content-container .intro-list li {
        min-width: 70px;
        max-width: 100px;
        width: auto;
        margin-bottom: 0;
    }
    
    .content-container .intro-list li a {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    #footer .copyright {
        font-size: 0.6rem;
    }
}

/* 音乐控制卡片 */
.music-card {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transform: translateX(-300px);
    transition: transform 0.3s ease;
    color: white;
}

.music-card.active {
    transform: translateX(0);
}

.music-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.music-card-header span {
    font-size: 1.1rem;
    font-weight: 500;
}

.close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.music-info {
    margin-bottom: 20px;
}

.music-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.music-artist {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.music-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.control-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.volume-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.volume-control label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

#volumeSlider {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

/* 加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 浅色主题 */
body.light-theme {
    background: linear-gradient(135deg, #fafafa 0%, #e0e0e0 100%);
    color: #2c3e50;
}

body.light-theme .content-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

body.light-theme .content-container h1 {
    color: #2c3e50;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-theme .content-container h1 a {
    color: #2c3e50;
}

body.light-theme .content-container h1 a:hover {
    color: #3498db;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

body.light-theme .bio {
    color: rgba(44, 62, 80, 0.9);
}

body.light-theme .bio > span.emphasis {
    color: #3498db;
    text-shadow: 0 0 8px rgba(52, 152, 219, 0.4);
}

body.light-theme .content-container .intro-list li a {
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.light-theme .content-container .intro-list li a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #3498db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .content-container .intro-list li:last-child a {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
}

body.light-theme .content-container .intro-list li:last-child a:hover {
    background: linear-gradient(45deg, #2980b9, #2573a7);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

body.light-theme b {
    border-bottom: dotted 1px rgba(44, 62, 80, 0.5);
    color: rgba(44, 62, 80, 0.8);
}

body.light-theme b:hover {
    color: #3498db;
}

body.light-theme #footer .copyright {
    color: rgba(44, 62, 80, 0.7);
}

body.light-theme .particle {
    background: rgba(0, 0, 0, 0.05);
}

body.light-theme #theme-toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme #theme-toggle svg path,
body.light-theme #theme-toggle svg line,
body.light-theme #theme-toggle svg circle {
    stroke: #2c3e50;
}

/* 浅色主题下的音乐播放器 */
body.light-theme #simple-music-player {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme #simple-player-cover {
    /* 保持图片比例，避免拉伸 */
    object-fit: cover;
}

body.light-theme #simple-player-song-title {
    color: #2c3e50 !important;
}

body.light-theme #simple-player-song-artist {
    color: rgba(44, 62, 80, 0.8) !important;
}

body.light-theme #simple-player-play-pause-btn {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzJjM2U1MCI+PHBhdGggZD0iTTggNXYxNGwxMS03eiIvPjwvc3ZnPg==') center center / 24px 24px no-repeat;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    filter: invert(100%) hue-rotate(180deg);
}

body.light-theme #simple-player-play-pause-btn:hover {
    background-color: rgba(44, 62, 80, 0.2);
}

body.light-theme #simple-player-progress-bar {
    background-color: rgba(0, 0, 0, 0.1);
}

body.light-theme #simple-player-progress {
    background-color: #3498db;
}
