* {
    box-sizing: border-box;
    
}

a {
    text-decoration: none;
    color: #fff;
}

body {
    font-family: Arial, sans-serif;
    background-color: #222;
    color: #fff;
    margin: 0;
    padding: 0;
    
    
    width: 100%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #5e4343;
}

.player-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;
 background-color: #000;
    border: 4px solid #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    
    
    
    
    
    
    
}

.video-player {
    width: 100%;
}

.controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.play-pause-btn, .next-video-btn, .mute-btn {
    background-color: #f80101;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    width: 100px;
    height: 30px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.play-pause-btn:hover, .next-video-btn:hover, .mute-btn:hover {
    transform: scale(1.1);
}

.volume-slider {
    -webkit-appearance: none;
    width: 100px;
    height: 4px;
    background-color: #fff;
    outline: none;
    opacity: 0.7;
    transition: 0.3s;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background-color: #fff;
    cursor: pointer;
}


video::-internal-media-controls-download-button {
    display: none;
}






/* 信息卡片样式 - 添加毛玻璃效果 */
    .info-card {
        margin-top: 20px;
        padding: 15px 15px;
        background-color: rgba(248, 249, 250, 0.8);
        border-radius: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 87%;
        max-width: 800px;
        border: 2px solid rgba(100, 100, 100, 0.3);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3),
                    inset 0 0 10px rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }

    /* 信息卡片内部div样式 */
    .info-card div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-width: 100px;
    }

    /* 信息卡片文字样式 */
    .info-card div span {
        font-size: 14px;
        color: #333;
    }

    /* 输入卡片样式 */
    .input-card {
        margin-top: 20px;
        padding: 15px 15px;
        border-radius: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 87%;
        max-width: 800px;
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }

/* 输入卡片内的按钮 */
    .input-card button {
        padding: 10px 15px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-left: 8px;
        white-space: nowrap;
    }
    .input-card button:hover {
        background-color: #0056b3;
    }


