        body {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 100%;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        .content-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 800px;
            justify-content: center; /* 垂直居中 */
            min-height: 100vh;
            text-align: center; /* 文本居中 */
            padding: 20px;
            box-sizing: border-box;
        }

        .header-section {
            text-align: center;
            margin-bottom: 20px;
            width: 100%;
        }

h1 {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    width: 100%;
}
        #playCountDisplay {
            color: #333;
            font-size: 1.2em;
            margin-bottom: 10px;
            text-align: center;
            width: 100%;
        }

        .video-container {
            position: relative;
            width: 100%;
            background-color: #000;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
}

video {
    width: 100%;
    border-radius: 8px;
}

        .video-source {
            position: absolute;
            top: 10px;
            right: 10px;
            color: white;
            text-shadow: 1px 1px 2px black;
            z-index: 1;
            font-size: 0.8em;
        }

        #broadcastDisplay {
            color: white;
            text-align: center;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 4px;
            margin-top: 10px;
        }

        /* Plyr播放器覆盖样式 */
        .plyr {
            border-radius: 8px;
            overflow: hidden;
        }
        .stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    width: 100%;
}