/* 基础样式 */
body {
    margin: 0;
    padding: 0;
    background-image: url('https://xu219.cn/bing.php');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* 响应式调整 */
@media (max-width: 768px) {
    #musicPlayer {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 280px !important;
    }
}

@media (min-width: 769px) {
    #musicPlayer {
        height: 260px !important;
    }
}

/* 屏保样式 */
#screensaver {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://xu219.cn/bing.php');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

#screensaver.active {
    display: flex;
}

#screensaver .clock {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#screensaver .date {
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#screensaver .lunar-date {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#screensaver .message {
    font-size: 18px;
    opacity: 0.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#screensaver .screensaver-player {
    margin-top: 40px;
    width: 300px;
    height: 300px;
}

/* 歌词容器样式 */
#externalLyrics {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 24px;
    color: white;
    max-width: 600px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    z-index: 9998;
    padding-bottom: 20px;
    display: none;
}

/* 屏保歌词样式 */
#screensaverLyrics {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 24px;
    color: white;
    max-width: 600px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    z-index: 9999999;
    padding-bottom: 20px;
    display: block;
}
