/* 密码验证容器样式 */
#password-verify {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 20px 0;
}

#password-verify input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

#password-verify button {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#password-verify button:hover {
    background: #45a049;
}

#password-verify #msg {
    color: red;
    margin-top: 10px;
}

/* 受保护内容样式 */
#protected-content {
    display: none;
}

#protected-content.show {
    display: block;
}

/* 视频容器样式 */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}