.bf-video-single {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bf-video-player-wrapper {
    background: #000;
    position: relative;
    width: 100%;
}

.bf-video-player {
    width: 100%;
    aspect-ratio: 16/9;
}

.bf-video-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.bf-video-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.4;
}

.bf-video-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.bf-video-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bf-video-author img {
    border-radius: 50%;
}

.bf-video-views i,
.bf-video-comments i {
    margin-right: 4px;
}

.bf-video-content {
    padding: 20px;
    line-height: 1.8;
    color: #333;
}

.bf-video-content p {
    margin-bottom: 15px;
}

.bf-video-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.bf-video-tags {
    padding: 0 20px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bf-video-tag-label {
    color: #888;
    font-size: 14px;
}

.bf-video-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.bf-video-tags a:hover {
    background: #dc3544;
    color: #fff;
}

.bf-video-actions {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bf-video-actions-left {
    display: flex;
    gap: 20px;
}

.bf-video-actions-right {
    display: flex;
    gap: 20px;
}

.bf-video-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: #666;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.bf-video-action-btn:hover {
    background: #dc3544;
    color: #fff;
}