/* 外层容器 */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

/* 视频本体 */
.video-container video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
    border-radius: 8px;
}

/* 点击前的遮罩层 */
.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4) url("../images/start.png") no-repeat center center;
    background-size: 64px 64px; /* 播放按钮大小 */
    z-index: 2;
    transition: background 0.3s ease;
}
.video-mask:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* 剧集按钮容器 */
.episode-buttons {
    text-align: center;
    margin-top: 15px;
}

/* 单个剧集按钮 */
.episode-button {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.episode-button:hover {
    background: #0056b3;
}
.episode-button a {
    color: #fff;
    text-decoration: none;
    display: block;
}
