body {
    user-select: none
}

#header h1 {
    font-size: 48px;
    /* 调整字体大小 */
    color: #ffffff;
    /* 设置文字颜色 */
    text-transform: uppercase;
    /* 文字大写 */
    letter-spacing: 4px;
    /* 字母间距 */
    margin-top: 10px;
    /* 上边距 */
}

#header p {
    font-size: 18px;
    /* 副标题字体大小 */
    color: #cccccc;
    /* 副标题文字颜色 */
    margin-top: 10px;
    /* 上边距 */
}

.nav-container {
    display: flex;
    justify-content: center;
    /* 横向居中 */
    align-items: center;
    /* 垂直居中 */
    margin-top: 20px;
    /* 调整顶部间距 */
}

.nav-link {
    text-decoration: none;
    color: #87CEEB;
    /* 浅蓝色文本颜色 */
    font-weight: bold;
    margin: 0 10px;
    /* 调整链接之间的间距 */
    display: flex;
    align-items: center;
    /* 垂直居中 */
}

.nav-link i {
    margin-right: 5px;
    /* 调整图标与文本之间的间距 */
}

/* 整段话的字体样式 */
.custom-paragraph {
    text-align: center;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFCC;
}

/* 超链接的字体样式 */
.custom-link {
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: normal;
    color: #ADD8E6;
}

/* 鼠标悬停在超链接上时的样式 */
.custom-link:hover {
    color: #ff4500;
    /* 更改鼠标悬停时的颜色 */
}

/* 自定义播放器样式 */
#audio-player-wrapper {
    /* 播放器容器样式 */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: rgba(30, 30, 40, 0.85);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    /* 重置可能被影响的属性 */
    margin: 0;
    line-height: normal;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
}

#audio-player-wrapper.show {
    display: block;
}

#audio-player-wrapper .player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

#audio-player-wrapper .player-title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    /* 重置可能被影响的属性 */
    margin: 0;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
}

#audio-player-wrapper .player-album {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    /* 重置可能被影响的属性 */
    display: block;
    position: relative;
}

#audio-player-wrapper .player-album img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 重置可能被影响的属性 */
    display: block;
    border: none;
    max-width: none;
}

#audio-player-wrapper .player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    /* 重置可能被影响的属性 */
    padding: 0;
    list-style: none;
}

#audio-player-wrapper .control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    /* 重置可能被影响的属性 */
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    outline: none;
}

#audio-player-wrapper .control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#audio-player-wrapper .control-btn.play-pause {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

#audio-player-wrapper .control-btn.play-pause:hover {
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

#audio-player-wrapper .progress-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 8px;
    /* 重置可能被影响的属性 */
    position: relative;
    display: block;
}

#audio-player-wrapper .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9c27b0, #e91e63);
    border-radius: 3px;
    transition: width 0.1s linear;
    position: relative;
    /* 重置可能被影响的属性 */
    display: block;
}

#audio-player-wrapper .progress-bar:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 5px rgba(156, 39, 176, 0.8);
}

#audio-player-wrapper .time-display {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    /* 重置可能被影响的属性 */
    padding: 0;
    line-height: 1;
}

#audio-player-wrapper .volume-control {
    display: flex;
    align-items: center;
    margin-top: 8px;
    /* 重置可能被影响的属性 */
    padding: 0;
    list-style: none;
}

#audio-player-wrapper .volume-slider {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-left: 8px;
    position: relative;
    cursor: pointer;
    /* 重置可能被影响的属性 */
    display: block;
}

#audio-player-wrapper .volume-level {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #9c27b0, #e91e63);
    border-radius: 2px;
    /* 重置可能被影响的属性 */
    display: block;
}

/* 优化最小化按钮样式 - 移除白框 */
#audio-player-wrapper .minimize-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: color 0.2s ease;
    /* 重置可能被影响的属性 */
    margin: 0;
    padding: 0;
    z-index: 10;
}

#audio-player-wrapper .minimize-btn:hover {
    color: rgba(255, 255, 255, 1);
    background: transparent;
}

#minimized-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(30, 30, 40, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    /* 重置可能被影响的属性 */
    margin: 0;
    padding: 0;
}

#minimized-player.show {
    display: flex;
}

#minimized-player i {
    color: #fff;
    font-size: 18px;
}