.live-stream-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}
.video-player {
    flex: 2;
}
.video-player iframe, .video-player video {
    width: 100%;
    height: 400px;
}
.live-progress {
    background: #f0f0f0;
    height: 5px;
    position: relative;
}
.live-progress-bar {
    background: #ff0000;
    height: 100%;
    width: 0;
    transition: width 1s linear;
}
.view-count {
    margin-top: 10px;
    font-weight: bold;
}
.comment-section {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}
.comment-form {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.comment-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    outline: none;
}
.comment-submit {
    padding: 10px 20px;
    border: none;
    background: #0073aa;
    color: white;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}
.comment {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.comment-author {
    font-weight: bold;
}
.comment-content {
    margin: 5px 0;
}
.comment-meta {
    font-size: 0.9em;
    color: #666;
}
.reply-count {
    margin-right: 10px;
    cursor: pointer;
}
.reply-toggle, .reply-button {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    margin-right: 10px;
}
.replies {
    margin-left: 20px;
    margin-top: 10px;
}
.reply {
    padding: 5px;
    border-left: 2px solid #0073aa;
    margin-bottom: 5px;
}
.timer {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}