   
          body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 粒子波浪动画相关样式 */
#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* 确保页面内容在canvas上方 */
section, nav, footer {
    position: relative;
    z-index: 10;
}

/* 图片悬停效果 */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* 音频控件样式 */
audio {
    outline: none;
}

audio:focus {
    outline: none;
}

audio::-webkit-media-controls-panel {
    background-color: #f1f5f9;
    border-radius: 8px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-start-playback-button {
    color: #3b82f6;
}

/* 音频容器样式 */
.audio-container {
    background-color: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}
        